From 4798bc61410fcb3ae725bab24f96f5c4684cea71 Mon Sep 17 00:00:00 2001 From: Andrew Hlynskyi Date: Sun, 27 Aug 2023 22:07:03 +0300 Subject: [PATCH] chore: generate --- src/grammar.json | 28 +- src/node-types.json | 24 + src/parser.c | 204822 +++++++++++++++++++++-------------------- 3 files changed, 103157 insertions(+), 101717 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index bb0a3e59..5d42bf0a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2919,6 +2919,10 @@ }, "named": true, "value": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "command_substitution" } ] }, @@ -4905,26 +4909,6 @@ ] } }, - "test_operator": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "PATTERN", - "value": "[a-zA-Z]+" - } - ] - } - } - }, "_c_terminator": { "type": "CHOICE", "members": [ @@ -5038,6 +5022,10 @@ "type": "SYMBOL", "name": "variable_name" }, + { + "type": "SYMBOL", + "name": "test_operator" + }, { "type": "SYMBOL", "name": "regex" diff --git a/src/node-types.json b/src/node-types.json index 44dcbd38..5fec7728 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -181,6 +181,10 @@ "type": "binary_expression", "named": true }, + { + "type": "command_substitution", + "named": true + }, { "type": "expansion", "named": true @@ -251,6 +255,10 @@ "type": "_expression", "named": true }, + { + "type": "command_substitution", + "named": true + }, { "type": "expansion", "named": true @@ -419,6 +427,10 @@ "type": "_expression", "named": true }, + { + "type": "command_substitution", + "named": true + }, { "type": "expansion", "named": true @@ -1798,6 +1810,10 @@ "type": "_expression", "named": true }, + { + "type": "command_substitution", + "named": true + }, { "type": "expansion", "named": true @@ -1828,6 +1844,10 @@ "type": "_expression", "named": true }, + { + "type": "command_substitution", + "named": true + }, { "type": "expansion", "named": true @@ -1858,6 +1878,10 @@ "type": "_expression", "named": true }, + { + "type": "command_substitution", + "named": true + }, { "type": "expansion", "named": true diff --git a/src/parser.c b/src/parser.c index 5152a62a..72a729f2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,12 +14,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4571 -#define LARGE_STATE_COUNT 408 +#define STATE_COUNT 4591 +#define LARGE_STATE_COUNT 414 #define SYMBOL_COUNT 265 #define ALIAS_COUNT 0 #define TOKEN_COUNT 169 -#define EXTERNAL_TOKEN_COUNT 24 +#define EXTERNAL_TOKEN_COUNT 25 #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 8 #define PRODUCTION_ID_COUNT 129 @@ -173,16 +173,16 @@ enum ts_symbol_identifiers { anon_sym_AT2 = 146, anon_sym_0 = 147, anon_sym__ = 148, - sym_test_operator = 149, - sym_heredoc_start = 150, - sym_simple_heredoc_body = 151, - sym__heredoc_body_beginning = 152, - sym__heredoc_body_middle = 153, - sym_heredoc_end = 154, - sym_file_descriptor = 155, - sym__empty_value = 156, - sym__concat = 157, - sym_variable_name = 158, + sym_heredoc_start = 149, + sym_simple_heredoc_body = 150, + sym__heredoc_body_beginning = 151, + sym__heredoc_body_middle = 152, + sym_heredoc_end = 153, + sym_file_descriptor = 154, + sym__empty_value = 155, + sym__concat = 156, + sym_variable_name = 157, + sym_test_operator = 158, sym_regex = 159, sym__regex_no_slash = 160, sym__regex_no_space = 161, @@ -441,7 +441,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_AT2] = "special_variable_name", [anon_sym_0] = "special_variable_name", [anon_sym__] = "special_variable_name", - [sym_test_operator] = "test_operator", [sym_heredoc_start] = "heredoc_start", [sym_simple_heredoc_body] = "heredoc_body", [sym__heredoc_body_beginning] = "_heredoc_body_beginning", @@ -451,6 +450,7 @@ static const char * const ts_symbol_names[] = { [sym__empty_value] = "_empty_value", [sym__concat] = "_concat", [sym_variable_name] = "variable_name", + [sym_test_operator] = "test_operator", [sym_regex] = "regex", [sym__regex_no_slash] = "regex", [sym__regex_no_space] = "regex", @@ -709,7 +709,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_AT2] = anon_sym_AT2, [anon_sym_0] = anon_sym_AT2, [anon_sym__] = anon_sym_AT2, - [sym_test_operator] = sym_test_operator, [sym_heredoc_start] = sym_heredoc_start, [sym_simple_heredoc_body] = sym_heredoc_body, [sym__heredoc_body_beginning] = sym__heredoc_body_beginning, @@ -719,6 +718,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__empty_value] = sym__empty_value, [sym__concat] = sym__concat, [sym_variable_name] = sym_variable_name, + [sym_test_operator] = sym_test_operator, [sym_regex] = sym_regex, [sym__regex_no_slash] = sym_regex, [sym__regex_no_space] = sym_regex, @@ -1424,10 +1424,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_test_operator] = { - .visible = true, - .named = true, - }, [sym_heredoc_start] = { .visible = true, .named = true, @@ -1464,6 +1460,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_test_operator] = { + .visible = true, + .named = true, + }, [sym_regex] = { .visible = true, .named = true, @@ -1955,10 +1955,10 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [19] = {.index = 20, .length = 2}, [20] = {.index = 22, .length = 2}, [21] = {.index = 22, .length = 2}, - [22] = {.index = 24, .length = 2}, - [23] = {.index = 26, .length = 1}, - [24] = {.index = 27, .length = 2}, - [25] = {.index = 29, .length = 2}, + [23] = {.index = 24, .length = 2}, + [24] = {.index = 26, .length = 1}, + [25] = {.index = 27, .length = 2}, + [26] = {.index = 29, .length = 2}, [27] = {.index = 31, .length = 1}, [28] = {.index = 31, .length = 1}, [29] = {.index = 10, .length = 1}, @@ -2022,16 +2022,16 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [87] = {.index = 132, .length = 2}, [88] = {.index = 134, .length = 3}, [89] = {.index = 137, .length = 3}, - [90] = {.index = 140, .length = 2}, - [91] = {.index = 142, .length = 2}, - [92] = {.index = 144, .length = 2}, - [93] = {.index = 140, .length = 2}, - [94] = {.index = 142, .length = 2}, - [95] = {.index = 144, .length = 2}, - [96] = {.index = 130, .length = 2}, - [97] = {.index = 132, .length = 2}, - [98] = {.index = 134, .length = 3}, - [99] = {.index = 137, .length = 3}, + [90] = {.index = 130, .length = 2}, + [91] = {.index = 132, .length = 2}, + [92] = {.index = 134, .length = 3}, + [93] = {.index = 137, .length = 3}, + [94] = {.index = 140, .length = 2}, + [95] = {.index = 142, .length = 2}, + [96] = {.index = 144, .length = 2}, + [97] = {.index = 140, .length = 2}, + [98] = {.index = 142, .length = 2}, + [99] = {.index = 144, .length = 2}, [100] = {.index = 146, .length = 3}, [101] = {.index = 146, .length = 3}, [102] = {.index = 149, .length = 2}, @@ -2043,16 +2043,16 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [108] = {.index = 171, .length = 4}, [109] = {.index = 175, .length = 3}, [110] = {.index = 178, .length = 3}, - [111] = {.index = 181, .length = 2}, - [112] = {.index = 183, .length = 2}, - [113] = {.index = 185, .length = 3}, - [114] = {.index = 188, .length = 3}, - [115] = {.index = 181, .length = 2}, - [116] = {.index = 183, .length = 2}, - [117] = {.index = 185, .length = 3}, - [118] = {.index = 188, .length = 3}, - [119] = {.index = 175, .length = 3}, - [120] = {.index = 178, .length = 3}, + [111] = {.index = 175, .length = 3}, + [112] = {.index = 178, .length = 3}, + [113] = {.index = 181, .length = 2}, + [114] = {.index = 183, .length = 2}, + [115] = {.index = 185, .length = 3}, + [116] = {.index = 188, .length = 3}, + [117] = {.index = 181, .length = 2}, + [118] = {.index = 183, .length = 2}, + [119] = {.index = 185, .length = 3}, + [120] = {.index = 188, .length = 3}, [121] = {.index = 191, .length = 5}, [122] = {.index = 196, .length = 5}, [123] = {.index = 201, .length = 5}, @@ -2379,7 +2379,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_word, }, - [8] = { + [7] = { [1] = sym_word, }, [9] = { @@ -2388,16 +2388,16 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [11] = { [0] = anon_sym_AT2, }, - [14] = { + [13] = { [0] = sym_word, }, - [19] = { + [18] = { [2] = sym_word, }, [21] = { [2] = sym_word, }, - [26] = { + [22] = { [1] = sym_word, }, [28] = { @@ -2406,13 +2406,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [29] = { [1] = anon_sym_AT2, }, - [33] = { + [32] = { [1] = sym_word, }, - [37] = { + [36] = { [2] = sym_word, }, - [42] = { + [41] = { [1] = sym_word, }, [44] = { @@ -2421,29 +2421,38 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [48] = { [1] = anon_sym_AT2, }, - [51] = { + [50] = { [2] = sym_word, }, [52] = { [0] = sym_variable_name, }, - [57] = { + [56] = { [0] = sym_word, }, - [73] = { + [69] = { [0] = sym_word, }, - [74] = { + [70] = { [0] = sym_word, }, - [75] = { + [71] = { [0] = sym_word, }, [77] = { [3] = sym_word, }, - [93] = { - [1] = sym_word, + [86] = { + [0] = sym_word, + }, + [87] = { + [0] = sym_word, + }, + [88] = { + [0] = sym_word, + }, + [89] = { + [0] = sym_word, }, [94] = { [1] = sym_word, @@ -2452,42 +2461,33 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = sym_word, }, [96] = { - [0] = sym_word, + [1] = sym_word, }, - [97] = { - [0] = sym_word, + [100] = { + [3] = sym_word, }, - [98] = { + [109] = { [0] = sym_word, }, - [99] = { + [110] = { [0] = sym_word, }, - [101] = { - [3] = sym_word, - }, - [115] = { + [113] = { [1] = sym_word, }, - [116] = { + [114] = { [1] = sym_word, }, - [117] = { + [115] = { [1] = sym_word, }, - [118] = { + [116] = { [1] = sym_word, }, - [119] = { - [0] = sym_word, - }, - [120] = { - [0] = sym_word, - }, - [126] = { + [124] = { [1] = sym_word, }, - [127] = { + [125] = { [1] = sym_word, }, }; @@ -2504,26 +2504,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 2, + [4] = 2, + [5] = 3, [6] = 3, [7] = 2, [8] = 8, - [9] = 8, - [10] = 10, - [11] = 8, - [12] = 10, + [9] = 9, + [10] = 8, + [11] = 9, + [12] = 8, [13] = 13, [14] = 13, - [15] = 10, + [15] = 9, [16] = 13, - [17] = 10, + [17] = 9, [18] = 18, - [19] = 19, - [20] = 19, + [19] = 18, + [20] = 20, [21] = 18, - [22] = 18, - [23] = 19, + [22] = 20, + [23] = 20, [24] = 24, [25] = 25, [26] = 26, @@ -2552,4525 +2552,4545 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [49] = 49, [50] = 50, [51] = 51, - [52] = 51, - [53] = 53, + [52] = 52, + [53] = 52, [54] = 51, [55] = 51, - [56] = 51, - [57] = 53, - [58] = 51, - [59] = 53, - [60] = 51, - [61] = 51, + [56] = 52, + [57] = 52, + [58] = 52, + [59] = 52, + [60] = 52, + [61] = 52, [62] = 62, [63] = 63, [64] = 64, - [65] = 65, - [66] = 66, - [67] = 63, - [68] = 68, - [69] = 62, - [70] = 65, - [71] = 66, - [72] = 63, - [73] = 62, - [74] = 63, + [65] = 62, + [66] = 31, + [67] = 31, + [68] = 63, + [69] = 69, + [70] = 62, + [71] = 62, + [72] = 72, + [73] = 73, + [74] = 64, [75] = 62, - [76] = 66, - [77] = 65, - [78] = 66, - [79] = 65, - [80] = 63, - [81] = 62, - [82] = 62, - [83] = 83, - [84] = 65, - [85] = 66, + [76] = 76, + [77] = 63, + [78] = 63, + [79] = 64, + [80] = 73, + [81] = 73, + [82] = 82, + [83] = 63, + [84] = 64, + [85] = 64, [86] = 63, - [87] = 62, - [88] = 65, - [89] = 89, - [90] = 66, - [91] = 63, - [92] = 62, - [93] = 65, - [94] = 66, - [95] = 63, - [96] = 62, - [97] = 97, - [98] = 98, - [99] = 65, - [100] = 66, - [101] = 63, - [102] = 62, - [103] = 65, - [104] = 66, + [87] = 73, + [88] = 64, + [89] = 62, + [90] = 63, + [91] = 73, + [92] = 64, + [93] = 62, + [94] = 63, + [95] = 62, + [96] = 73, + [97] = 64, + [98] = 62, + [99] = 64, + [100] = 63, + [101] = 73, + [102] = 64, + [103] = 73, + [104] = 62, [105] = 63, - [106] = 62, - [107] = 65, - [108] = 66, + [106] = 73, + [107] = 64, + [108] = 62, [109] = 63, - [110] = 62, - [111] = 65, - [112] = 66, - [113] = 63, - [114] = 63, - [115] = 66, - [116] = 62, - [117] = 65, - [118] = 66, - [119] = 63, - [120] = 65, - [121] = 62, + [110] = 64, + [111] = 64, + [112] = 73, + [113] = 62, + [114] = 64, + [115] = 62, + [116] = 63, + [117] = 73, + [118] = 73, + [119] = 64, + [120] = 62, + [121] = 63, [122] = 62, - [123] = 89, - [124] = 66, - [125] = 65, - [126] = 66, - [127] = 62, - [128] = 128, - [129] = 64, - [130] = 62, - [131] = 66, - [132] = 65, - [133] = 63, - [134] = 62, - [135] = 65, - [136] = 66, - [137] = 66, + [123] = 63, + [124] = 73, + [125] = 73, + [126] = 63, + [127] = 64, + [128] = 63, + [129] = 62, + [130] = 63, + [131] = 62, + [132] = 62, + [133] = 73, + [134] = 64, + [135] = 73, + [136] = 64, + [137] = 62, [138] = 63, - [139] = 65, - [140] = 63, + [139] = 64, + [140] = 64, [141] = 62, - [142] = 62, - [143] = 65, - [144] = 66, - [145] = 63, + [142] = 64, + [143] = 73, + [144] = 64, + [145] = 145, [146] = 62, - [147] = 65, - [148] = 66, + [147] = 73, + [148] = 148, [149] = 63, - [150] = 63, - [151] = 65, - [152] = 66, + [150] = 150, + [151] = 64, + [152] = 73, [153] = 62, - [154] = 65, - [155] = 63, + [154] = 145, + [155] = 64, [156] = 62, - [157] = 65, - [158] = 66, + [157] = 73, + [158] = 73, [159] = 63, - [160] = 62, - [161] = 65, - [162] = 66, - [163] = 63, - [164] = 62, - [165] = 65, - [166] = 66, - [167] = 63, - [168] = 62, - [169] = 65, - [170] = 66, - [171] = 63, - [172] = 62, - [173] = 65, - [174] = 66, - [175] = 63, - [176] = 62, - [177] = 65, - [178] = 66, + [160] = 64, + [161] = 161, + [162] = 73, + [163] = 62, + [164] = 82, + [165] = 76, + [166] = 63, + [167] = 73, + [168] = 73, + [169] = 63, + [170] = 73, + [171] = 64, + [172] = 64, + [173] = 62, + [174] = 174, + [175] = 62, + [176] = 73, + [177] = 63, + [178] = 64, [179] = 62, - [180] = 66, - [181] = 128, - [182] = 62, - [183] = 65, - [184] = 66, - [185] = 63, - [186] = 62, - [187] = 65, - [188] = 188, - [189] = 63, - [190] = 66, - [191] = 83, - [192] = 63, - [193] = 62, - [194] = 89, - [195] = 63, - [196] = 62, + [180] = 161, + [181] = 62, + [182] = 148, + [183] = 62, + [184] = 63, + [185] = 62, + [186] = 64, + [187] = 64, + [188] = 73, + [189] = 148, + [190] = 73, + [191] = 73, + [192] = 73, + [193] = 64, + [194] = 62, + [195] = 73, + [196] = 63, [197] = 63, - [198] = 66, - [199] = 65, - [200] = 128, - [201] = 68, - [202] = 65, - [203] = 66, - [204] = 66, - [205] = 62, - [206] = 65, - [207] = 65, - [208] = 65, - [209] = 63, - [210] = 63, - [211] = 66, - [212] = 62, - [213] = 65, - [214] = 66, - [215] = 63, - [216] = 65, - [217] = 66, - [218] = 188, + [198] = 76, + [199] = 64, + [200] = 62, + [201] = 150, + [202] = 73, + [203] = 64, + [204] = 161, + [205] = 63, + [206] = 64, + [207] = 73, + [208] = 62, + [209] = 64, + [210] = 73, + [211] = 73, + [212] = 73, + [213] = 82, + [214] = 63, + [215] = 145, + [216] = 64, + [217] = 62, + [218] = 63, [219] = 62, - [220] = 65, - [221] = 188, - [222] = 66, - [223] = 62, - [224] = 224, - [225] = 66, - [226] = 32, + [220] = 62, + [221] = 63, + [222] = 62, + [223] = 63, + [224] = 62, + [225] = 73, + [226] = 64, [227] = 62, - [228] = 65, - [229] = 63, + [228] = 63, + [229] = 73, [230] = 64, - [231] = 62, - [232] = 62, - [233] = 65, - [234] = 63, - [235] = 66, - [236] = 66, - [237] = 66, - [238] = 65, + [231] = 73, + [232] = 64, + [233] = 64, + [234] = 73, + [235] = 64, + [236] = 62, + [237] = 63, + [238] = 150, [239] = 62, - [240] = 65, - [241] = 63, - [242] = 63, - [243] = 62, - [244] = 32, - [245] = 65, - [246] = 62, - [247] = 65, - [248] = 66, - [249] = 66, - [250] = 62, - [251] = 83, - [252] = 63, + [240] = 73, + [241] = 64, + [242] = 73, + [243] = 64, + [244] = 62, + [245] = 63, + [246] = 73, + [247] = 64, + [248] = 62, + [249] = 63, + [250] = 73, + [251] = 62, + [252] = 64, [253] = 63, - [254] = 62, - [255] = 65, + [254] = 63, + [255] = 62, [256] = 63, - [257] = 66, - [258] = 68, - [259] = 65, - [260] = 66, - [261] = 65, - [262] = 62, - [263] = 66, - [264] = 65, - [265] = 66, - [266] = 65, - [267] = 62, - [268] = 66, - [269] = 62, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 270, - [275] = 271, - [276] = 271, - [277] = 271, - [278] = 273, - [279] = 271, + [257] = 73, + [258] = 64, + [259] = 73, + [260] = 73, + [261] = 62, + [262] = 64, + [263] = 73, + [264] = 62, + [265] = 62, + [266] = 64, + [267] = 63, + [268] = 73, + [269] = 63, + [270] = 64, + [271] = 73, + [272] = 62, + [273] = 62, + [274] = 64, + [275] = 63, + [276] = 276, + [277] = 277, + [278] = 277, + [279] = 277, [280] = 280, - [281] = 273, - [282] = 270, - [283] = 283, - [284] = 283, - [285] = 285, - [286] = 285, - [287] = 285, - [288] = 283, - [289] = 283, - [290] = 285, - [291] = 283, + [281] = 281, + [282] = 277, + [283] = 280, + [284] = 276, + [285] = 280, + [286] = 286, + [287] = 277, + [288] = 276, + [289] = 289, + [290] = 290, + [291] = 290, [292] = 292, - [293] = 285, - [294] = 285, - [295] = 283, - [296] = 283, - [297] = 285, - [298] = 298, - [299] = 283, - [300] = 285, - [301] = 301, - [302] = 301, - [303] = 301, - [304] = 292, - [305] = 292, - [306] = 301, + [293] = 290, + [294] = 290, + [295] = 289, + [296] = 290, + [297] = 297, + [298] = 289, + [299] = 289, + [300] = 290, + [301] = 289, + [302] = 290, + [303] = 289, + [304] = 289, + [305] = 289, + [306] = 290, [307] = 292, - [308] = 301, + [308] = 292, [309] = 292, - [310] = 292, - [311] = 292, - [312] = 292, - [313] = 313, - [314] = 314, - [315] = 313, - [316] = 314, - [317] = 313, - [318] = 314, + [310] = 310, + [311] = 310, + [312] = 310, + [313] = 310, + [314] = 292, + [315] = 292, + [316] = 292, + [317] = 310, + [318] = 292, [319] = 319, - [320] = 319, - [321] = 321, - [322] = 322, + [320] = 320, + [321] = 319, + [322] = 320, [323] = 323, - [324] = 324, - [325] = 325, - [326] = 323, - [327] = 319, - [328] = 328, - [329] = 329, + [324] = 323, + [325] = 319, + [326] = 320, + [327] = 327, + [328] = 327, + [329] = 323, [330] = 330, [331] = 331, [332] = 332, - [333] = 323, - [334] = 334, - [335] = 335, + [333] = 333, + [334] = 332, + [335] = 333, [336] = 336, [337] = 337, - [338] = 338, - [339] = 321, + [338] = 331, + [339] = 339, [340] = 340, - [341] = 341, + [341] = 327, [342] = 342, [343] = 343, [344] = 344, [345] = 345, - [346] = 325, - [347] = 324, - [348] = 348, - [349] = 322, + [346] = 346, + [347] = 347, + [348] = 330, + [349] = 349, [350] = 350, [351] = 351, - [352] = 341, - [353] = 340, - [354] = 344, - [355] = 343, - [356] = 334, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, [357] = 357, - [358] = 331, - [359] = 328, - [360] = 335, - [361] = 329, - [362] = 337, + [358] = 354, + [359] = 342, + [360] = 352, + [361] = 351, + [362] = 346, [363] = 350, - [364] = 336, - [365] = 338, - [366] = 330, - [367] = 348, - [368] = 357, - [369] = 342, - [370] = 351, - [371] = 345, - [372] = 332, - [373] = 373, - [374] = 374, + [364] = 364, + [365] = 356, + [366] = 349, + [367] = 355, + [368] = 347, + [369] = 340, + [370] = 370, + [371] = 364, + [372] = 345, + [373] = 337, + [374] = 339, [375] = 357, - [376] = 376, - [377] = 376, - [378] = 373, - [379] = 319, - [380] = 376, - [381] = 325, - [382] = 374, - [383] = 321, - [384] = 324, - [385] = 322, - [386] = 323, - [387] = 336, - [388] = 342, - [389] = 334, - [390] = 340, - [391] = 343, - [392] = 337, - [393] = 344, - [394] = 345, - [395] = 338, - [396] = 348, - [397] = 350, - [398] = 341, - [399] = 351, - [400] = 331, - [401] = 332, - [402] = 328, - [403] = 329, - [404] = 335, - [405] = 330, - [406] = 373, - [407] = 357, - [408] = 374, - [409] = 376, - [410] = 410, - [411] = 410, - [412] = 410, - [413] = 410, - [414] = 414, - [415] = 415, + [376] = 336, + [377] = 344, + [378] = 353, + [379] = 343, + [380] = 370, + [381] = 323, + [382] = 364, + [383] = 383, + [384] = 383, + [385] = 385, + [386] = 330, + [387] = 383, + [388] = 333, + [389] = 332, + [390] = 327, + [391] = 331, + [392] = 385, + [393] = 343, + [394] = 336, + [395] = 347, + [396] = 354, + [397] = 349, + [398] = 353, + [399] = 352, + [400] = 350, + [401] = 345, + [402] = 357, + [403] = 344, + [404] = 339, + [405] = 351, + [406] = 356, + [407] = 340, + [408] = 342, + [409] = 355, + [410] = 337, + [411] = 346, + [412] = 364, + [413] = 370, + [414] = 383, + [415] = 385, [416] = 416, - [417] = 417, - [418] = 418, - [419] = 415, - [420] = 416, + [417] = 416, + [418] = 416, + [419] = 416, + [420] = 420, [421] = 421, [422] = 422, [423] = 423, - [424] = 414, - [425] = 415, - [426] = 414, - [427] = 421, - [428] = 414, - [429] = 416, - [430] = 418, - [431] = 313, + [424] = 420, + [425] = 425, + [426] = 422, + [427] = 427, + [428] = 421, + [429] = 429, + [430] = 430, + [431] = 429, [432] = 423, - [433] = 417, - [434] = 415, - [435] = 416, + [433] = 422, + [434] = 425, + [435] = 420, [436] = 422, - [437] = 314, + [437] = 319, [438] = 421, - [439] = 439, - [440] = 417, - [441] = 313, - [442] = 418, - [443] = 314, + [439] = 420, + [440] = 320, + [441] = 427, + [442] = 421, + [443] = 430, [444] = 444, - [445] = 423, - [446] = 446, - [447] = 415, - [448] = 422, - [449] = 423, - [450] = 421, - [451] = 416, - [452] = 416, - [453] = 422, - [454] = 414, - [455] = 418, - [456] = 415, - [457] = 417, - [458] = 314, - [459] = 313, - [460] = 423, - [461] = 422, - [462] = 446, - [463] = 439, - [464] = 421, - [465] = 314, - [466] = 418, - [467] = 417, - [468] = 422, - [469] = 423, - [470] = 313, - [471] = 314, - [472] = 417, - [473] = 313, + [445] = 445, + [446] = 319, + [447] = 425, + [448] = 427, + [449] = 320, + [450] = 422, + [451] = 430, + [452] = 423, + [453] = 453, + [454] = 430, + [455] = 423, + [456] = 429, + [457] = 425, + [458] = 421, + [459] = 421, + [460] = 420, + [461] = 427, + [462] = 429, + [463] = 420, + [464] = 427, + [465] = 430, + [466] = 320, + [467] = 427, + [468] = 320, + [469] = 320, + [470] = 319, + [471] = 445, + [472] = 319, + [473] = 425, [474] = 444, - [475] = 313, - [476] = 314, - [477] = 421, - [478] = 314, - [479] = 313, - [480] = 313, - [481] = 314, - [482] = 444, - [483] = 439, - [484] = 313, - [485] = 439, - [486] = 313, - [487] = 314, - [488] = 314, - [489] = 489, - [490] = 444, - [491] = 446, - [492] = 446, - [493] = 493, - [494] = 314, - [495] = 314, - [496] = 313, - [497] = 313, - [498] = 314, - [499] = 313, - [500] = 314, - [501] = 313, - [502] = 416, - [503] = 314, - [504] = 493, - [505] = 505, - [506] = 414, - [507] = 505, - [508] = 444, - [509] = 415, - [510] = 444, - [511] = 439, - [512] = 313, - [513] = 446, - [514] = 439, - [515] = 421, - [516] = 415, - [517] = 422, - [518] = 313, - [519] = 519, - [520] = 519, - [521] = 519, - [522] = 314, - [523] = 519, - [524] = 519, - [525] = 416, - [526] = 519, - [527] = 417, - [528] = 314, - [529] = 418, - [530] = 313, - [531] = 313, - [532] = 519, - [533] = 314, - [534] = 414, - [535] = 314, - [536] = 519, - [537] = 423, - [538] = 313, - [539] = 539, - [540] = 417, - [541] = 314, - [542] = 313, - [543] = 422, - [544] = 544, - [545] = 545, - [546] = 313, + [475] = 319, + [476] = 320, + [477] = 429, + [478] = 453, + [479] = 423, + [480] = 425, + [481] = 429, + [482] = 430, + [483] = 319, + [484] = 484, + [485] = 320, + [486] = 319, + [487] = 320, + [488] = 445, + [489] = 319, + [490] = 453, + [491] = 444, + [492] = 445, + [493] = 319, + [494] = 320, + [495] = 319, + [496] = 444, + [497] = 320, + [498] = 453, + [499] = 319, + [500] = 320, + [501] = 453, + [502] = 320, + [503] = 503, + [504] = 319, + [505] = 421, + [506] = 320, + [507] = 319, + [508] = 319, + [509] = 420, + [510] = 320, + [511] = 444, + [512] = 503, + [513] = 445, + [514] = 514, + [515] = 319, + [516] = 445, + [517] = 320, + [518] = 444, + [519] = 422, + [520] = 514, + [521] = 521, + [522] = 521, + [523] = 320, + [524] = 319, + [525] = 319, + [526] = 320, + [527] = 420, + [528] = 320, + [529] = 422, + [530] = 429, + [531] = 425, + [532] = 427, + [533] = 521, + [534] = 430, + [535] = 521, + [536] = 521, + [537] = 320, + [538] = 421, + [539] = 319, + [540] = 423, + [541] = 521, + [542] = 319, + [543] = 521, + [544] = 521, + [545] = 430, + [546] = 429, [547] = 547, - [548] = 314, - [549] = 421, - [550] = 418, - [551] = 423, - [552] = 446, - [553] = 444, - [554] = 439, + [548] = 548, + [549] = 427, + [550] = 423, + [551] = 320, + [552] = 319, + [553] = 319, + [554] = 320, [555] = 555, - [556] = 313, - [557] = 314, - [558] = 544, - [559] = 493, - [560] = 505, - [561] = 545, - [562] = 489, - [563] = 489, - [564] = 539, - [565] = 547, - [566] = 547, - [567] = 314, - [568] = 547, - [569] = 544, - [570] = 545, - [571] = 322, - [572] = 539, - [573] = 314, - [574] = 313, - [575] = 314, - [576] = 313, - [577] = 313, - [578] = 314, - [579] = 493, - [580] = 321, - [581] = 314, - [582] = 313, - [583] = 446, - [584] = 584, - [585] = 325, - [586] = 324, - [587] = 544, - [588] = 313, + [556] = 425, + [557] = 557, + [558] = 555, + [559] = 547, + [560] = 320, + [561] = 319, + [562] = 514, + [563] = 444, + [564] = 548, + [565] = 453, + [566] = 484, + [567] = 484, + [568] = 568, + [569] = 557, + [570] = 503, + [571] = 445, + [572] = 320, + [573] = 320, + [574] = 332, + [575] = 319, + [576] = 331, + [577] = 547, + [578] = 555, + [579] = 557, + [580] = 319, + [581] = 320, + [582] = 503, + [583] = 548, + [584] = 453, + [585] = 568, + [586] = 586, + [587] = 587, + [588] = 588, [589] = 589, - [590] = 545, - [591] = 439, - [592] = 539, - [593] = 593, - [594] = 594, - [595] = 505, + [590] = 319, + [591] = 319, + [592] = 547, + [593] = 555, + [594] = 320, + [595] = 595, [596] = 596, - [597] = 444, - [598] = 598, + [597] = 514, + [598] = 319, [599] = 599, - [600] = 555, - [601] = 593, - [602] = 335, - [603] = 598, - [604] = 604, - [605] = 322, - [606] = 555, - [607] = 314, - [608] = 313, - [609] = 322, - [610] = 343, - [611] = 342, - [612] = 341, - [613] = 613, - [614] = 344, - [615] = 584, - [616] = 616, - [617] = 345, - [618] = 545, - [619] = 544, - [620] = 545, - [621] = 599, - [622] = 324, - [623] = 313, - [624] = 325, - [625] = 314, - [626] = 332, - [627] = 325, - [628] = 338, - [629] = 547, - [630] = 336, - [631] = 596, - [632] = 616, - [633] = 544, - [634] = 313, - [635] = 539, - [636] = 314, - [637] = 334, - [638] = 350, - [639] = 329, - [640] = 348, - [641] = 314, - [642] = 321, - [643] = 616, - [644] = 337, - [645] = 645, - [646] = 328, - [647] = 340, - [648] = 589, - [649] = 649, - [650] = 313, - [651] = 314, - [652] = 652, - [653] = 313, - [654] = 555, - [655] = 330, + [600] = 444, + [601] = 557, + [602] = 320, + [603] = 548, + [604] = 330, + [605] = 333, + [606] = 445, + [607] = 555, + [608] = 331, + [609] = 595, + [610] = 319, + [611] = 319, + [612] = 588, + [613] = 599, + [614] = 349, + [615] = 344, + [616] = 353, + [617] = 347, + [618] = 320, + [619] = 346, + [620] = 336, + [621] = 332, + [622] = 622, + [623] = 354, + [624] = 320, + [625] = 319, + [626] = 548, + [627] = 555, + [628] = 337, + [629] = 340, + [630] = 357, + [631] = 631, + [632] = 547, + [633] = 356, + [634] = 333, + [635] = 587, + [636] = 320, + [637] = 355, + [638] = 332, + [639] = 622, + [640] = 333, + [641] = 319, + [642] = 320, + [643] = 568, + [644] = 339, + [645] = 352, + [646] = 568, + [647] = 596, + [648] = 547, + [649] = 350, + [650] = 330, + [651] = 319, + [652] = 320, + [653] = 320, + [654] = 331, + [655] = 343, [656] = 351, - [657] = 331, - [658] = 314, - [659] = 313, - [660] = 313, - [661] = 314, - [662] = 313, - [663] = 314, - [664] = 321, - [665] = 324, - [666] = 584, - [667] = 649, - [668] = 668, - [669] = 555, - [670] = 329, - [671] = 335, - [672] = 322, - [673] = 336, - [674] = 334, - [675] = 338, - [676] = 332, - [677] = 328, - [678] = 678, + [657] = 657, + [658] = 319, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 342, + [663] = 319, + [664] = 330, + [665] = 320, + [666] = 319, + [667] = 320, + [668] = 622, + [669] = 345, + [670] = 586, + [671] = 557, + [672] = 345, + [673] = 346, + [674] = 332, + [675] = 660, + [676] = 676, + [677] = 677, + [678] = 320, [679] = 351, - [680] = 322, - [681] = 345, - [682] = 351, - [683] = 344, - [684] = 684, - [685] = 340, - [686] = 649, - [687] = 652, - [688] = 321, - [689] = 322, - [690] = 314, - [691] = 325, - [692] = 373, - [693] = 313, - [694] = 325, - [695] = 340, - [696] = 324, - [697] = 330, - [698] = 337, - [699] = 328, - [700] = 350, - [701] = 341, - [702] = 702, - [703] = 344, - [704] = 345, - [705] = 342, - [706] = 329, - [707] = 324, - [708] = 584, - [709] = 589, - [710] = 335, - [711] = 341, - [712] = 342, - [713] = 343, + [680] = 319, + [681] = 681, + [682] = 682, + [683] = 657, + [684] = 333, + [685] = 344, + [686] = 333, + [687] = 342, + [688] = 331, + [689] = 330, + [690] = 333, + [691] = 342, + [692] = 588, + [693] = 595, + [694] = 340, + [695] = 330, + [696] = 339, + [697] = 697, + [698] = 661, + [699] = 331, + [700] = 587, + [701] = 596, + [702] = 349, + [703] = 357, + [704] = 659, + [705] = 354, + [706] = 355, + [707] = 707, + [708] = 331, + [709] = 350, + [710] = 337, + [711] = 333, + [712] = 347, + [713] = 599, [714] = 331, - [715] = 604, - [716] = 598, - [717] = 343, - [718] = 596, - [719] = 599, - [720] = 336, - [721] = 321, - [722] = 593, - [723] = 613, - [724] = 325, - [725] = 593, - [726] = 596, - [727] = 324, - [728] = 325, - [729] = 324, - [730] = 348, + [715] = 330, + [716] = 344, + [717] = 332, + [718] = 586, + [719] = 336, + [720] = 586, + [721] = 330, + [722] = 346, + [723] = 337, + [724] = 331, + [725] = 343, + [726] = 568, + [727] = 347, + [728] = 728, + [729] = 345, + [730] = 730, [731] = 332, - [732] = 350, - [733] = 324, - [734] = 325, - [735] = 338, - [736] = 334, - [737] = 331, - [738] = 599, - [739] = 739, - [740] = 598, - [741] = 555, - [742] = 322, - [743] = 743, - [744] = 744, - [745] = 313, - [746] = 314, - [747] = 321, - [748] = 321, - [749] = 749, - [750] = 750, - [751] = 589, - [752] = 652, - [753] = 330, - [754] = 321, - [755] = 322, - [756] = 348, - [757] = 337, - [758] = 341, - [759] = 613, - [760] = 324, - [761] = 337, - [762] = 604, - [763] = 613, - [764] = 325, - [765] = 331, - [766] = 337, - [767] = 343, - [768] = 749, - [769] = 322, - [770] = 344, - [771] = 345, - [772] = 342, - [773] = 341, - [774] = 324, - [775] = 328, - [776] = 340, - [777] = 329, - [778] = 335, - [779] = 341, - [780] = 343, - [781] = 342, - [782] = 342, - [783] = 343, - [784] = 345, - [785] = 744, - [786] = 750, - [787] = 324, - [788] = 331, - [789] = 348, - [790] = 329, - [791] = 325, - [792] = 348, - [793] = 321, - [794] = 330, - [795] = 739, - [796] = 350, - [797] = 604, - [798] = 589, - [799] = 329, - [800] = 330, - [801] = 322, - [802] = 337, - [803] = 335, - [804] = 684, - [805] = 324, - [806] = 322, - [807] = 373, - [808] = 598, - [809] = 329, - [810] = 338, - [811] = 344, - [812] = 324, - [813] = 336, - [814] = 325, - [815] = 345, - [816] = 652, - [817] = 817, - [818] = 335, - [819] = 649, - [820] = 599, - [821] = 821, - [822] = 336, - [823] = 652, - [824] = 332, - [825] = 331, - [826] = 826, - [827] = 668, - [828] = 332, - [829] = 345, - [830] = 649, - [831] = 344, - [832] = 350, - [833] = 331, - [834] = 330, - [835] = 743, - [836] = 340, - [837] = 351, - [838] = 351, - [839] = 321, - [840] = 336, - [841] = 821, - [842] = 332, - [843] = 821, - [844] = 351, - [845] = 350, - [846] = 593, - [847] = 341, - [848] = 334, - [849] = 340, - [850] = 336, - [851] = 334, - [852] = 334, - [853] = 328, - [854] = 821, - [855] = 342, - [856] = 321, - [857] = 857, - [858] = 373, - [859] = 330, - [860] = 584, - [861] = 343, - [862] = 328, - [863] = 328, - [864] = 330, - [865] = 337, - [866] = 821, - [867] = 351, - [868] = 649, - [869] = 652, - [870] = 322, - [871] = 350, - [872] = 332, - [873] = 341, - [874] = 331, - [875] = 342, - [876] = 334, - [877] = 332, - [878] = 821, - [879] = 334, - [880] = 328, - [881] = 374, - [882] = 702, - [883] = 335, - [884] = 335, - [885] = 821, - [886] = 329, - [887] = 596, - [888] = 350, - [889] = 338, - [890] = 325, - [891] = 351, - [892] = 321, - [893] = 893, - [894] = 338, + [732] = 354, + [733] = 351, + [734] = 353, + [735] = 332, + [736] = 319, + [737] = 320, + [738] = 350, + [739] = 588, + [740] = 356, + [741] = 356, + [742] = 659, + [743] = 332, + [744] = 352, + [745] = 357, + [746] = 349, + [747] = 599, + [748] = 330, + [749] = 340, + [750] = 343, + [751] = 352, + [752] = 596, + [753] = 595, + [754] = 754, + [755] = 339, + [756] = 353, + [757] = 370, + [758] = 355, + [759] = 587, + [760] = 661, + [761] = 568, + [762] = 336, + [763] = 333, + [764] = 357, + [765] = 330, + [766] = 342, + [767] = 336, + [768] = 344, + [769] = 345, + [770] = 385, + [771] = 660, + [772] = 657, + [773] = 657, + [774] = 660, + [775] = 352, + [776] = 339, + [777] = 353, + [778] = 340, + [779] = 337, + [780] = 337, + [781] = 331, + [782] = 354, + [783] = 330, + [784] = 346, + [785] = 352, + [786] = 347, + [787] = 331, + [788] = 357, + [789] = 330, + [790] = 347, + [791] = 351, + [792] = 343, + [793] = 330, + [794] = 356, + [795] = 354, + [796] = 677, + [797] = 347, + [798] = 345, + [799] = 344, + [800] = 332, + [801] = 340, + [802] = 599, + [803] = 332, + [804] = 340, + [805] = 357, + [806] = 659, + [807] = 350, + [808] = 808, + [809] = 586, + [810] = 697, + [811] = 355, + [812] = 336, + [813] = 355, + [814] = 808, + [815] = 331, + [816] = 596, + [817] = 353, + [818] = 349, + [819] = 343, + [820] = 587, + [821] = 357, + [822] = 351, + [823] = 339, + [824] = 370, + [825] = 661, + [826] = 342, + [827] = 332, + [828] = 342, + [829] = 707, + [830] = 830, + [831] = 351, + [832] = 357, + [833] = 808, + [834] = 340, + [835] = 354, + [836] = 353, + [837] = 808, + [838] = 339, + [839] = 349, + [840] = 356, + [841] = 333, + [842] = 595, + [843] = 333, + [844] = 339, + [845] = 355, + [846] = 350, + [847] = 331, + [848] = 350, + [849] = 849, + [850] = 350, + [851] = 354, + [852] = 852, + [853] = 353, + [854] = 353, + [855] = 344, + [856] = 345, + [857] = 345, + [858] = 352, + [859] = 352, + [860] = 676, + [861] = 344, + [862] = 349, + [863] = 356, + [864] = 343, + [865] = 808, + [866] = 588, + [867] = 354, + [868] = 337, + [869] = 346, + [870] = 331, + [871] = 342, + [872] = 336, + [873] = 336, + [874] = 332, + [875] = 346, + [876] = 876, + [877] = 808, + [878] = 351, + [879] = 337, + [880] = 332, + [881] = 356, + [882] = 659, + [883] = 343, + [884] = 345, + [885] = 355, + [886] = 661, + [887] = 350, + [888] = 682, + [889] = 349, + [890] = 681, + [891] = 356, + [892] = 340, + [893] = 339, + [894] = 344, [895] = 337, - [896] = 343, - [897] = 348, - [898] = 340, - [899] = 344, + [896] = 346, + [897] = 808, + [898] = 343, + [899] = 808, [900] = 336, - [901] = 338, - [902] = 344, - [903] = 348, - [904] = 904, - [905] = 348, - [906] = 678, - [907] = 340, - [908] = 821, - [909] = 325, - [910] = 345, - [911] = 322, - [912] = 338, - [913] = 338, - [914] = 325, - [915] = 338, - [916] = 350, - [917] = 373, - [918] = 544, - [919] = 545, - [920] = 348, - [921] = 348, - [922] = 345, - [923] = 344, - [924] = 343, - [925] = 342, - [926] = 341, - [927] = 338, - [928] = 336, - [929] = 929, - [930] = 332, - [931] = 329, - [932] = 330, - [933] = 335, - [934] = 332, - [935] = 348, - [936] = 324, - [937] = 345, - [938] = 826, - [939] = 904, - [940] = 344, - [941] = 336, - [942] = 322, - [943] = 321, - [944] = 350, - [945] = 945, - [946] = 743, - [947] = 739, - [948] = 340, - [949] = 325, - [950] = 324, - [951] = 335, - [952] = 329, - [953] = 945, - [954] = 334, - [955] = 857, - [956] = 334, - [957] = 374, - [958] = 337, - [959] = 331, - [960] = 331, - [961] = 945, - [962] = 945, - [963] = 337, - [964] = 340, - [965] = 343, - [966] = 328, - [967] = 321, - [968] = 337, - [969] = 702, - [970] = 945, - [971] = 342, - [972] = 749, - [973] = 341, - [974] = 328, - [975] = 329, - [976] = 945, - [977] = 335, - [978] = 330, - [979] = 331, - [980] = 649, - [981] = 322, - [982] = 652, - [983] = 330, - [984] = 322, - [985] = 374, - [986] = 321, - [987] = 945, - [988] = 649, - [989] = 652, - [990] = 340, - [991] = 604, + [901] = 347, + [902] = 355, + [903] = 347, + [904] = 349, + [905] = 370, + [906] = 333, + [907] = 351, + [908] = 754, + [909] = 728, + [910] = 910, + [911] = 730, + [912] = 352, + [913] = 346, + [914] = 661, + [915] = 659, + [916] = 342, + [917] = 333, + [918] = 330, + [919] = 682, + [920] = 677, + [921] = 332, + [922] = 347, + [923] = 346, + [924] = 337, + [925] = 340, + [926] = 333, + [927] = 339, + [928] = 330, + [929] = 331, + [930] = 707, + [931] = 343, + [932] = 356, + [933] = 332, + [934] = 344, + [935] = 345, + [936] = 357, + [937] = 331, + [938] = 355, + [939] = 330, + [940] = 940, + [941] = 339, + [942] = 354, + [943] = 352, + [944] = 351, + [945] = 353, + [946] = 332, + [947] = 357, + [948] = 350, + [949] = 349, + [950] = 336, + [951] = 354, + [952] = 353, + [953] = 676, + [954] = 677, + [955] = 955, + [956] = 342, + [957] = 336, + [958] = 849, + [959] = 555, + [960] = 547, + [961] = 961, + [962] = 333, + [963] = 682, + [964] = 681, + [965] = 697, + [966] = 370, + [967] = 728, + [968] = 730, + [969] = 969, + [970] = 659, + [971] = 661, + [972] = 336, + [973] = 353, + [974] = 385, + [975] = 354, + [976] = 910, + [977] = 349, + [978] = 961, + [979] = 961, + [980] = 357, + [981] = 351, + [982] = 339, + [983] = 370, + [984] = 754, + [985] = 336, + [986] = 370, + [987] = 876, + [988] = 342, + [989] = 370, + [990] = 349, + [991] = 852, [992] = 992, - [993] = 373, - [994] = 324, - [995] = 325, - [996] = 351, - [997] = 324, - [998] = 325, - [999] = 350, - [1000] = 322, - [1001] = 340, + [993] = 350, + [994] = 351, + [995] = 352, + [996] = 830, + [997] = 961, + [998] = 353, + [999] = 370, + [1000] = 354, + [1001] = 357, [1002] = 1002, - [1003] = 351, - [1004] = 343, - [1005] = 1005, - [1006] = 337, - [1007] = 342, - [1008] = 341, - [1009] = 649, - [1010] = 329, - [1011] = 652, - [1012] = 335, - [1013] = 345, - [1014] = 750, - [1015] = 1015, - [1016] = 744, - [1017] = 344, - [1018] = 613, - [1019] = 945, - [1020] = 373, - [1021] = 678, - [1022] = 826, - [1023] = 351, - [1024] = 350, - [1025] = 817, - [1026] = 348, - [1027] = 325, - [1028] = 324, - [1029] = 332, - [1030] = 668, - [1031] = 684, - [1032] = 750, - [1033] = 332, - [1034] = 744, - [1035] = 336, - [1036] = 373, - [1037] = 684, - [1038] = 893, - [1039] = 668, - [1040] = 343, - [1041] = 342, - [1042] = 341, - [1043] = 345, - [1044] = 344, - [1045] = 743, - [1046] = 739, - [1047] = 749, - [1048] = 334, - [1049] = 1049, - [1050] = 328, - [1051] = 338, - [1052] = 702, - [1053] = 351, - [1054] = 336, - [1055] = 322, - [1056] = 334, - [1057] = 331, - [1058] = 328, - [1059] = 1059, - [1060] = 330, - [1061] = 678, - [1062] = 373, - [1063] = 321, - [1064] = 348, - [1065] = 341, - [1066] = 331, - [1067] = 351, - [1068] = 929, - [1069] = 1005, - [1070] = 893, - [1071] = 328, - [1072] = 1072, - [1073] = 544, - [1074] = 350, - [1075] = 340, - [1076] = 330, - [1077] = 1002, - [1078] = 1078, - [1079] = 337, - [1080] = 992, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 545, - [1085] = 329, - [1086] = 335, - [1087] = 334, - [1088] = 1015, - [1089] = 373, - [1090] = 1049, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 328, - [1095] = 1082, - [1096] = 1072, - [1097] = 1083, - [1098] = 336, - [1099] = 332, - [1100] = 332, - [1101] = 1081, - [1102] = 338, + [1003] = 1003, + [1004] = 754, + [1005] = 339, + [1006] = 330, + [1007] = 331, + [1008] = 342, + [1009] = 332, + [1010] = 355, + [1011] = 342, + [1012] = 356, + [1013] = 350, + [1014] = 961, + [1015] = 331, + [1016] = 333, + [1017] = 349, + [1018] = 352, + [1019] = 350, + [1020] = 345, + [1021] = 344, + [1022] = 961, + [1023] = 961, + [1024] = 351, + [1025] = 352, + [1026] = 330, + [1027] = 661, + [1028] = 659, + [1029] = 961, + [1030] = 849, + [1031] = 347, + [1032] = 346, + [1033] = 337, + [1034] = 660, + [1035] = 657, + [1036] = 355, + [1037] = 356, + [1038] = 1038, + [1039] = 343, + [1040] = 340, + [1041] = 345, + [1042] = 344, + [1043] = 330, + [1044] = 707, + [1045] = 331, + [1046] = 337, + [1047] = 333, + [1048] = 346, + [1049] = 355, + [1050] = 676, + [1051] = 385, + [1052] = 347, + [1053] = 340, + [1054] = 340, + [1055] = 343, + [1056] = 697, + [1057] = 661, + [1058] = 659, + [1059] = 344, + [1060] = 681, + [1061] = 332, + [1062] = 347, + [1063] = 346, + [1064] = 337, + [1065] = 345, + [1066] = 730, + [1067] = 356, + [1068] = 728, + [1069] = 343, + [1070] = 353, + [1071] = 330, + [1072] = 354, + [1073] = 337, + [1074] = 353, + [1075] = 849, + [1076] = 357, + [1077] = 1077, + [1078] = 385, + [1079] = 339, + [1080] = 852, + [1081] = 340, + [1082] = 1038, + [1083] = 343, + [1084] = 1084, + [1085] = 343, + [1086] = 356, + [1087] = 876, + [1088] = 332, + [1089] = 344, + [1090] = 345, + [1091] = 344, + [1092] = 342, + [1093] = 336, + [1094] = 1084, + [1095] = 342, + [1096] = 852, + [1097] = 1077, + [1098] = 345, + [1099] = 1077, + [1100] = 340, + [1101] = 1101, + [1102] = 356, [1103] = 1103, - [1104] = 374, - [1105] = 1078, - [1106] = 374, - [1107] = 826, - [1108] = 335, - [1109] = 350, - [1110] = 348, - [1111] = 1091, - [1112] = 348, - [1113] = 1083, - [1114] = 1081, - [1115] = 338, - [1116] = 345, - [1117] = 344, - [1118] = 338, - [1119] = 345, - [1120] = 336, - [1121] = 344, - [1122] = 329, - [1123] = 340, - [1124] = 341, - [1125] = 342, - [1126] = 343, - [1127] = 337, - [1128] = 1128, - [1129] = 649, - [1130] = 652, - [1131] = 750, - [1132] = 744, - [1133] = 334, - [1134] = 340, - [1135] = 1083, - [1136] = 344, - [1137] = 331, - [1138] = 1093, - [1139] = 337, - [1140] = 343, - [1141] = 345, - [1142] = 1093, - [1143] = 351, - [1144] = 342, - [1145] = 341, - [1146] = 1091, - [1147] = 1072, - [1148] = 328, - [1149] = 348, - [1150] = 1049, - [1151] = 330, - [1152] = 329, - [1153] = 1083, - [1154] = 336, - [1155] = 350, - [1156] = 350, - [1157] = 1157, - [1158] = 1081, - [1159] = 331, - [1160] = 335, - [1161] = 330, - [1162] = 334, - [1163] = 555, - [1164] = 1072, - [1165] = 1081, - [1166] = 1005, - [1167] = 1078, - [1168] = 1002, - [1169] = 336, - [1170] = 338, - [1171] = 1171, - [1172] = 1083, - [1173] = 1082, - [1174] = 1081, - [1175] = 342, - [1176] = 343, - [1177] = 351, - [1178] = 344, - [1179] = 332, - [1180] = 345, - [1181] = 1091, - [1182] = 340, - [1183] = 1082, - [1184] = 893, - [1185] = 322, - [1186] = 334, - [1187] = 325, - [1188] = 826, - [1189] = 324, - [1190] = 331, - [1191] = 1082, - [1192] = 1091, - [1193] = 1091, - [1194] = 1082, - [1195] = 1078, - [1196] = 1091, - [1197] = 743, - [1198] = 739, - [1199] = 817, - [1200] = 1083, - [1201] = 1081, - [1202] = 857, - [1203] = 1093, - [1204] = 337, - [1205] = 1083, - [1206] = 1081, - [1207] = 826, - [1208] = 343, - [1209] = 342, - [1210] = 341, - [1211] = 328, - [1212] = 325, - [1213] = 373, - [1214] = 329, - [1215] = 324, - [1216] = 335, - [1217] = 1091, - [1218] = 1171, - [1219] = 330, - [1220] = 322, - [1221] = 668, - [1222] = 684, - [1223] = 374, - [1224] = 904, - [1225] = 351, - [1226] = 1093, - [1227] = 332, - [1228] = 1072, - [1229] = 1078, - [1230] = 1093, - [1231] = 1093, - [1232] = 1171, - [1233] = 373, - [1234] = 1082, - [1235] = 374, - [1236] = 904, - [1237] = 374, - [1238] = 857, - [1239] = 373, - [1240] = 817, - [1241] = 1082, - [1242] = 1242, - [1243] = 1128, - [1244] = 374, - [1245] = 1002, - [1246] = 992, - [1247] = 321, - [1248] = 374, - [1249] = 599, - [1250] = 929, - [1251] = 598, - [1252] = 1242, - [1253] = 1005, - [1254] = 373, - [1255] = 1015, - [1256] = 1015, - [1257] = 826, - [1258] = 374, - [1259] = 1049, - [1260] = 1049, - [1261] = 322, - [1262] = 992, - [1263] = 322, - [1264] = 826, - [1265] = 929, - [1266] = 593, - [1267] = 596, - [1268] = 373, - [1269] = 1002, - [1270] = 1005, - [1271] = 555, - [1272] = 1005, - [1273] = 1002, - [1274] = 1049, - [1275] = 324, - [1276] = 325, - [1277] = 373, - [1278] = 373, - [1279] = 1092, - [1280] = 1103, - [1281] = 374, - [1282] = 589, - [1283] = 584, - [1284] = 1284, - [1285] = 340, - [1286] = 324, - [1287] = 322, - [1288] = 325, - [1289] = 322, - [1290] = 1002, - [1291] = 321, - [1292] = 325, - [1293] = 324, - [1294] = 322, - [1295] = 1103, - [1296] = 1284, - [1297] = 322, - [1298] = 1284, - [1299] = 1002, - [1300] = 1284, - [1301] = 1284, - [1302] = 1284, - [1303] = 1284, - [1304] = 1128, - [1305] = 1284, - [1306] = 1284, - [1307] = 1284, - [1308] = 598, - [1309] = 599, - [1310] = 322, - [1311] = 1005, - [1312] = 1284, - [1313] = 322, - [1314] = 649, - [1315] = 1242, - [1316] = 1284, - [1317] = 589, - [1318] = 584, - [1319] = 652, - [1320] = 374, - [1321] = 1284, - [1322] = 1284, - [1323] = 596, - [1324] = 593, - [1325] = 613, - [1326] = 1049, - [1327] = 1284, - [1328] = 604, - [1329] = 1049, - [1330] = 1092, - [1331] = 374, - [1332] = 1284, - [1333] = 1284, - [1334] = 1128, - [1335] = 1092, - [1336] = 1103, - [1337] = 1284, - [1338] = 1284, - [1339] = 1242, - [1340] = 1284, - [1341] = 1284, - [1342] = 1284, - [1343] = 1284, - [1344] = 374, - [1345] = 1284, - [1346] = 325, - [1347] = 324, - [1348] = 1284, - [1349] = 1284, - [1350] = 1284, - [1351] = 1284, - [1352] = 1284, - [1353] = 1284, - [1354] = 1284, - [1355] = 1284, - [1356] = 322, - [1357] = 1284, - [1358] = 1284, - [1359] = 1284, - [1360] = 322, - [1361] = 1284, - [1362] = 1284, - [1363] = 1284, - [1364] = 1284, - [1365] = 374, - [1366] = 1284, - [1367] = 321, - [1368] = 1284, - [1369] = 1284, - [1370] = 332, - [1371] = 1284, - [1372] = 351, - [1373] = 350, - [1374] = 1284, - [1375] = 1284, - [1376] = 1005, - [1377] = 1284, - [1378] = 1284, - [1379] = 348, - [1380] = 338, - [1381] = 345, - [1382] = 344, - [1383] = 336, - [1384] = 334, - [1385] = 341, - [1386] = 342, - [1387] = 1387, - [1388] = 343, - [1389] = 337, - [1390] = 330, - [1391] = 335, - [1392] = 329, - [1393] = 1284, - [1394] = 331, - [1395] = 328, - [1396] = 325, - [1397] = 325, - [1398] = 331, - [1399] = 330, - [1400] = 343, - [1401] = 684, - [1402] = 351, - [1403] = 338, - [1404] = 342, - [1405] = 668, - [1406] = 336, - [1407] = 332, - [1408] = 344, - [1409] = 340, - [1410] = 345, - [1411] = 348, - [1412] = 337, - [1413] = 322, - [1414] = 350, - [1415] = 328, - [1416] = 324, - [1417] = 334, - [1418] = 1418, - [1419] = 329, - [1420] = 335, - [1421] = 325, - [1422] = 1387, - [1423] = 739, - [1424] = 1424, - [1425] = 332, - [1426] = 328, - [1427] = 351, - [1428] = 1387, - [1429] = 325, - [1430] = 325, - [1431] = 373, + [1104] = 1104, + [1105] = 1084, + [1106] = 337, + [1107] = 955, + [1108] = 355, + [1109] = 346, + [1110] = 1003, + [1111] = 355, + [1112] = 1112, + [1113] = 1002, + [1114] = 1114, + [1115] = 347, + [1116] = 346, + [1117] = 337, + [1118] = 1118, + [1119] = 339, + [1120] = 1103, + [1121] = 568, + [1122] = 1122, + [1123] = 1101, + [1124] = 352, + [1125] = 351, + [1126] = 1126, + [1127] = 876, + [1128] = 347, + [1129] = 370, + [1130] = 385, + [1131] = 370, + [1132] = 1077, + [1133] = 385, + [1134] = 830, + [1135] = 1103, + [1136] = 385, + [1137] = 357, + [1138] = 331, + [1139] = 1139, + [1140] = 1103, + [1141] = 555, + [1142] = 1122, + [1143] = 352, + [1144] = 354, + [1145] = 339, + [1146] = 351, + [1147] = 347, + [1148] = 350, + [1149] = 353, + [1150] = 349, + [1151] = 350, + [1152] = 1101, + [1153] = 1126, + [1154] = 1084, + [1155] = 1002, + [1156] = 370, + [1157] = 1077, + [1158] = 349, + [1159] = 830, + [1160] = 351, + [1161] = 1114, + [1162] = 1126, + [1163] = 1101, + [1164] = 354, + [1165] = 1122, + [1166] = 547, + [1167] = 1103, + [1168] = 353, + [1169] = 347, + [1170] = 340, + [1171] = 350, + [1172] = 349, + [1173] = 1077, + [1174] = 346, + [1175] = 337, + [1176] = 682, + [1177] = 681, + [1178] = 340, + [1179] = 910, + [1180] = 1180, + [1181] = 385, + [1182] = 349, + [1183] = 1118, + [1184] = 346, + [1185] = 969, + [1186] = 345, + [1187] = 331, + [1188] = 332, + [1189] = 969, + [1190] = 1103, + [1191] = 344, + [1192] = 343, + [1193] = 370, + [1194] = 1084, + [1195] = 330, + [1196] = 336, + [1197] = 849, + [1198] = 342, + [1199] = 344, + [1200] = 345, + [1201] = 1084, + [1202] = 339, + [1203] = 1077, + [1204] = 1118, + [1205] = 1118, + [1206] = 352, + [1207] = 1122, + [1208] = 1118, + [1209] = 661, + [1210] = 1103, + [1211] = 1118, + [1212] = 659, + [1213] = 342, + [1214] = 1003, + [1215] = 336, + [1216] = 357, + [1217] = 1077, + [1218] = 730, + [1219] = 1114, + [1220] = 728, + [1221] = 1118, + [1222] = 1126, + [1223] = 354, + [1224] = 677, + [1225] = 1126, + [1226] = 1101, + [1227] = 1122, + [1228] = 1228, + [1229] = 350, + [1230] = 676, + [1231] = 357, + [1232] = 1118, + [1233] = 849, + [1234] = 356, + [1235] = 1122, + [1236] = 355, + [1237] = 1122, + [1238] = 910, + [1239] = 343, + [1240] = 356, + [1241] = 1084, + [1242] = 1084, + [1243] = 351, + [1244] = 336, + [1245] = 1103, + [1246] = 352, + [1247] = 940, + [1248] = 355, + [1249] = 595, + [1250] = 849, + [1251] = 1228, + [1252] = 568, + [1253] = 370, + [1254] = 331, + [1255] = 969, + [1256] = 1002, + [1257] = 330, + [1258] = 969, + [1259] = 370, + [1260] = 332, + [1261] = 330, + [1262] = 588, + [1263] = 940, + [1264] = 385, + [1265] = 1139, + [1266] = 333, + [1267] = 969, + [1268] = 1002, + [1269] = 385, + [1270] = 955, + [1271] = 1003, + [1272] = 385, + [1273] = 1003, + [1274] = 1002, + [1275] = 1104, + [1276] = 385, + [1277] = 599, + [1278] = 586, + [1279] = 1003, + [1280] = 940, + [1281] = 1180, + [1282] = 596, + [1283] = 587, + [1284] = 1038, + [1285] = 1038, + [1286] = 370, + [1287] = 955, + [1288] = 370, + [1289] = 849, + [1290] = 1290, + [1291] = 1290, + [1292] = 1290, + [1293] = 1003, + [1294] = 587, + [1295] = 1290, + [1296] = 340, + [1297] = 1290, + [1298] = 1290, + [1299] = 1290, + [1300] = 385, + [1301] = 385, + [1302] = 1290, + [1303] = 333, + [1304] = 337, + [1305] = 330, + [1306] = 596, + [1307] = 346, + [1308] = 1228, + [1309] = 347, + [1310] = 330, + [1311] = 1290, + [1312] = 385, + [1313] = 661, + [1314] = 330, + [1315] = 659, + [1316] = 1290, + [1317] = 1290, + [1318] = 1290, + [1319] = 1002, + [1320] = 1290, + [1321] = 1290, + [1322] = 343, + [1323] = 1290, + [1324] = 356, + [1325] = 385, + [1326] = 660, + [1327] = 1003, + [1328] = 657, + [1329] = 1290, + [1330] = 586, + [1331] = 330, + [1332] = 1290, + [1333] = 1290, + [1334] = 344, + [1335] = 1290, + [1336] = 1290, + [1337] = 1290, + [1338] = 1002, + [1339] = 599, + [1340] = 345, + [1341] = 333, + [1342] = 332, + [1343] = 1290, + [1344] = 1290, + [1345] = 332, + [1346] = 331, + [1347] = 1347, + [1348] = 1290, + [1349] = 332, + [1350] = 1290, + [1351] = 1290, + [1352] = 330, + [1353] = 355, + [1354] = 1290, + [1355] = 1290, + [1356] = 1290, + [1357] = 1290, + [1358] = 339, + [1359] = 1290, + [1360] = 1290, + [1361] = 1290, + [1362] = 969, + [1363] = 1290, + [1364] = 1290, + [1365] = 1180, + [1366] = 352, + [1367] = 330, + [1368] = 351, + [1369] = 1290, + [1370] = 1290, + [1371] = 1104, + [1372] = 331, + [1373] = 1290, + [1374] = 1139, + [1375] = 1290, + [1376] = 1290, + [1377] = 1290, + [1378] = 595, + [1379] = 1139, + [1380] = 330, + [1381] = 1290, + [1382] = 336, + [1383] = 342, + [1384] = 588, + [1385] = 1228, + [1386] = 357, + [1387] = 1290, + [1388] = 330, + [1389] = 1290, + [1390] = 1290, + [1391] = 1104, + [1392] = 1290, + [1393] = 331, + [1394] = 1290, + [1395] = 350, + [1396] = 1290, + [1397] = 1290, + [1398] = 1290, + [1399] = 349, + [1400] = 1180, + [1401] = 353, + [1402] = 354, + [1403] = 969, + [1404] = 331, + [1405] = 1405, + [1406] = 1347, + [1407] = 1407, + [1408] = 1408, + [1409] = 728, + [1410] = 730, + [1411] = 659, + [1412] = 677, + [1413] = 676, + [1414] = 332, + [1415] = 661, + [1416] = 1347, + [1417] = 1417, + [1418] = 331, + [1419] = 1347, + [1420] = 1420, + [1421] = 657, + [1422] = 660, + [1423] = 1423, + [1424] = 1405, + [1425] = 1417, + [1426] = 370, + [1427] = 1427, + [1428] = 1428, + [1429] = 370, + [1430] = 1405, + [1431] = 330, [1432] = 1432, - [1433] = 1432, - [1434] = 613, - [1435] = 604, - [1436] = 1387, - [1437] = 331, - [1438] = 334, - [1439] = 1439, - [1440] = 324, - [1441] = 1387, - [1442] = 325, - [1443] = 1443, - [1444] = 1432, - [1445] = 1445, - [1446] = 1387, - [1447] = 325, - [1448] = 324, - [1449] = 330, - [1450] = 1450, - [1451] = 324, - [1452] = 1452, - [1453] = 1432, - [1454] = 1443, - [1455] = 341, - [1456] = 335, - [1457] = 1443, - [1458] = 324, - [1459] = 325, - [1460] = 1452, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 322, - [1465] = 750, - [1466] = 744, - [1467] = 350, - [1468] = 329, - [1469] = 322, - [1470] = 373, - [1471] = 744, - [1472] = 1462, - [1473] = 321, - [1474] = 324, - [1475] = 1475, - [1476] = 322, - [1477] = 325, - [1478] = 1463, - [1479] = 324, - [1480] = 652, - [1481] = 649, - [1482] = 1463, - [1483] = 336, - [1484] = 322, - [1485] = 1439, - [1486] = 348, - [1487] = 1432, - [1488] = 1439, - [1489] = 338, - [1490] = 743, - [1491] = 1387, - [1492] = 324, - [1493] = 341, - [1494] = 1128, - [1495] = 342, - [1496] = 343, - [1497] = 743, - [1498] = 337, - [1499] = 649, - [1500] = 1242, - [1501] = 1461, - [1502] = 652, - [1503] = 321, - [1504] = 321, - [1505] = 340, - [1506] = 1443, - [1507] = 1461, - [1508] = 750, - [1509] = 313, - [1510] = 324, - [1511] = 324, - [1512] = 739, - [1513] = 325, - [1514] = 344, - [1515] = 314, - [1516] = 1452, - [1517] = 373, - [1518] = 345, - [1519] = 1462, - [1520] = 1443, - [1521] = 337, - [1522] = 374, - [1523] = 351, + [1433] = 1433, + [1434] = 1433, + [1435] = 354, + [1436] = 1408, + [1437] = 330, + [1438] = 1432, + [1439] = 1347, + [1440] = 1417, + [1441] = 1417, + [1442] = 1407, + [1443] = 331, + [1444] = 336, + [1445] = 332, + [1446] = 353, + [1447] = 1408, + [1448] = 1407, + [1449] = 354, + [1450] = 357, + [1451] = 347, + [1452] = 339, + [1453] = 346, + [1454] = 1405, + [1455] = 337, + [1456] = 352, + [1457] = 351, + [1458] = 1420, + [1459] = 349, + [1460] = 1417, + [1461] = 351, + [1462] = 330, + [1463] = 332, + [1464] = 355, + [1465] = 331, + [1466] = 350, + [1467] = 349, + [1468] = 332, + [1469] = 331, + [1470] = 340, + [1471] = 342, + [1472] = 681, + [1473] = 1405, + [1474] = 682, + [1475] = 1433, + [1476] = 1476, + [1477] = 339, + [1478] = 343, + [1479] = 347, + [1480] = 346, + [1481] = 342, + [1482] = 350, + [1483] = 337, + [1484] = 357, + [1485] = 330, + [1486] = 353, + [1487] = 730, + [1488] = 356, + [1489] = 728, + [1490] = 332, + [1491] = 659, + [1492] = 661, + [1493] = 331, + [1494] = 352, + [1495] = 340, + [1496] = 336, + [1497] = 345, + [1498] = 1420, + [1499] = 1347, + [1500] = 1104, + [1501] = 344, + [1502] = 355, + [1503] = 677, + [1504] = 676, + [1505] = 356, + [1506] = 1139, + [1507] = 343, + [1508] = 332, + [1509] = 1432, + [1510] = 331, + [1511] = 345, + [1512] = 332, + [1513] = 333, + [1514] = 319, + [1515] = 331, + [1516] = 320, + [1517] = 330, + [1518] = 344, + [1519] = 333, + [1520] = 1520, + [1521] = 1347, + [1522] = 332, + [1523] = 331, [1524] = 332, - [1525] = 1525, - [1526] = 340, - [1527] = 335, - [1528] = 329, - [1529] = 1529, - [1530] = 1530, - [1531] = 328, - [1532] = 351, - [1533] = 330, - [1534] = 329, - [1535] = 328, - [1536] = 331, - [1537] = 337, - [1538] = 335, - [1539] = 334, - [1540] = 332, - [1541] = 334, - [1542] = 335, - [1543] = 329, - [1544] = 340, - [1545] = 332, - [1546] = 336, - [1547] = 350, - [1548] = 1387, - [1549] = 374, - [1550] = 337, - [1551] = 1551, - [1552] = 340, - [1553] = 324, - [1554] = 322, - [1555] = 325, - [1556] = 336, - [1557] = 338, - [1558] = 702, - [1559] = 348, - [1560] = 324, - [1561] = 351, - [1562] = 321, - [1563] = 325, - [1564] = 338, - [1565] = 330, - [1566] = 321, - [1567] = 328, - [1568] = 345, - [1569] = 330, - [1570] = 341, - [1571] = 342, - [1572] = 343, - [1573] = 331, - [1574] = 1574, - [1575] = 684, - [1576] = 668, - [1577] = 750, - [1578] = 678, - [1579] = 374, - [1580] = 744, - [1581] = 334, - [1582] = 331, - [1583] = 344, - [1584] = 652, - [1585] = 373, - [1586] = 649, - [1587] = 1439, - [1588] = 345, - [1589] = 348, - [1590] = 373, - [1591] = 743, - [1592] = 739, - [1593] = 322, - [1594] = 344, - [1595] = 345, - [1596] = 1439, + [1525] = 331, + [1526] = 332, + [1527] = 333, + [1528] = 370, + [1529] = 353, + [1530] = 331, + [1531] = 336, + [1532] = 342, + [1533] = 385, + [1534] = 336, + [1535] = 337, + [1536] = 346, + [1537] = 355, + [1538] = 353, + [1539] = 354, + [1540] = 370, + [1541] = 1347, + [1542] = 350, + [1543] = 347, + [1544] = 353, + [1545] = 1545, + [1546] = 354, + [1547] = 707, + [1548] = 357, + [1549] = 357, + [1550] = 1420, + [1551] = 340, + [1552] = 352, + [1553] = 339, + [1554] = 340, + [1555] = 339, + [1556] = 342, + [1557] = 355, + [1558] = 682, + [1559] = 681, + [1560] = 385, + [1561] = 332, + [1562] = 331, + [1563] = 343, + [1564] = 343, + [1565] = 349, + [1566] = 350, + [1567] = 344, + [1568] = 356, + [1569] = 344, + [1570] = 345, + [1571] = 1420, + [1572] = 345, + [1573] = 351, + [1574] = 332, + [1575] = 730, + [1576] = 728, + [1577] = 330, + [1578] = 352, + [1579] = 677, + [1580] = 676, + [1581] = 347, + [1582] = 346, + [1583] = 330, + [1584] = 349, + [1585] = 1585, + [1586] = 1586, + [1587] = 337, + [1588] = 697, + [1589] = 352, + [1590] = 351, + [1591] = 333, + [1592] = 336, + [1593] = 754, + [1594] = 351, + [1595] = 347, + [1596] = 1596, [1597] = 350, - [1598] = 324, - [1599] = 344, - [1600] = 325, - [1601] = 348, - [1602] = 749, - [1603] = 336, - [1604] = 341, - [1605] = 350, - [1606] = 341, - [1607] = 342, - [1608] = 343, - [1609] = 342, - [1610] = 343, - [1611] = 338, - [1612] = 373, - [1613] = 1613, - [1614] = 1613, - [1615] = 344, - [1616] = 1475, - [1617] = 345, - [1618] = 348, - [1619] = 338, - [1620] = 1613, - [1621] = 348, - [1622] = 1613, - [1623] = 345, - [1624] = 1613, - [1625] = 1625, - [1626] = 344, - [1627] = 343, - [1628] = 342, - [1629] = 341, - [1630] = 1630, + [1598] = 346, + [1599] = 349, + [1600] = 354, + [1601] = 333, + [1602] = 337, + [1603] = 357, + [1604] = 1604, + [1605] = 659, + [1606] = 345, + [1607] = 344, + [1608] = 356, + [1609] = 385, + [1610] = 370, + [1611] = 661, + [1612] = 343, + [1613] = 370, + [1614] = 332, + [1615] = 342, + [1616] = 340, + [1617] = 339, + [1618] = 355, + [1619] = 331, + [1620] = 356, + [1621] = 337, + [1622] = 342, + [1623] = 1623, + [1624] = 349, + [1625] = 351, + [1626] = 385, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 1623, [1631] = 1631, - [1632] = 1632, - [1633] = 338, + [1632] = 385, + [1633] = 1633, [1634] = 1634, - [1635] = 374, - [1636] = 1613, - [1637] = 1637, - [1638] = 1613, - [1639] = 817, - [1640] = 336, - [1641] = 1641, - [1642] = 1613, - [1643] = 1613, - [1644] = 1613, - [1645] = 334, - [1646] = 1646, - [1647] = 331, - [1648] = 1641, - [1649] = 1649, - [1650] = 1637, - [1651] = 1445, - [1652] = 341, - [1653] = 1613, - [1654] = 1654, - [1655] = 373, - [1656] = 1656, - [1657] = 1613, - [1658] = 314, - [1659] = 1613, - [1660] = 342, - [1661] = 334, - [1662] = 343, - [1663] = 313, - [1664] = 350, - [1665] = 328, - [1666] = 826, - [1667] = 350, + [1635] = 1623, + [1636] = 1636, + [1637] = 336, + [1638] = 1623, + [1639] = 342, + [1640] = 370, + [1641] = 353, + [1642] = 1623, + [1643] = 1623, + [1644] = 1644, + [1645] = 355, + [1646] = 354, + [1647] = 1644, + [1648] = 350, + [1649] = 1644, + [1650] = 1428, + [1651] = 1427, + [1652] = 1652, + [1653] = 1423, + [1654] = 1623, + [1655] = 339, + [1656] = 1623, + [1657] = 357, + [1658] = 1623, + [1659] = 357, + [1660] = 1623, + [1661] = 347, + [1662] = 1623, + [1663] = 910, + [1664] = 346, + [1665] = 1623, + [1666] = 352, + [1667] = 354, [1668] = 1668, - [1669] = 1613, - [1670] = 344, - [1671] = 336, - [1672] = 351, - [1673] = 1613, - [1674] = 345, - [1675] = 328, - [1676] = 1613, - [1677] = 348, - [1678] = 330, - [1679] = 1679, - [1680] = 374, - [1681] = 331, - [1682] = 1613, - [1683] = 350, - [1684] = 1684, - [1685] = 330, - [1686] = 1450, - [1687] = 1613, - [1688] = 351, - [1689] = 1649, - [1690] = 1690, - [1691] = 1613, - [1692] = 904, - [1693] = 374, - [1694] = 1613, - [1695] = 1695, - [1696] = 1656, - [1697] = 1697, - [1698] = 992, - [1699] = 893, - [1700] = 1700, - [1701] = 1613, - [1702] = 1613, - [1703] = 340, - [1704] = 1613, - [1705] = 336, - [1706] = 1418, - [1707] = 1613, - [1708] = 1613, - [1709] = 1613, - [1710] = 340, - [1711] = 1613, - [1712] = 1613, - [1713] = 337, - [1714] = 1015, - [1715] = 1656, - [1716] = 337, - [1717] = 329, - [1718] = 335, - [1719] = 1613, - [1720] = 1720, - [1721] = 338, - [1722] = 332, - [1723] = 1613, - [1724] = 857, - [1725] = 1613, - [1726] = 1613, - [1727] = 1613, - [1728] = 1613, - [1729] = 332, - [1730] = 1656, - [1731] = 1613, - [1732] = 1613, - [1733] = 373, - [1734] = 1613, - [1735] = 1613, - [1736] = 1613, - [1737] = 1613, - [1738] = 1654, - [1739] = 1613, - [1740] = 1613, - [1741] = 1656, - [1742] = 329, - [1743] = 335, - [1744] = 1613, - [1745] = 1654, - [1746] = 1746, - [1747] = 1529, - [1748] = 1574, - [1749] = 1749, - [1750] = 373, - [1751] = 1002, - [1752] = 1752, - [1753] = 1424, - [1754] = 374, - [1755] = 1418, - [1756] = 1637, - [1757] = 1746, - [1758] = 1005, - [1759] = 1749, - [1760] = 1641, - [1761] = 1746, - [1762] = 1649, - [1763] = 1242, - [1764] = 1764, - [1765] = 1637, + [1669] = 353, + [1670] = 1644, + [1671] = 1671, + [1672] = 876, + [1673] = 337, + [1674] = 347, + [1675] = 1623, + [1676] = 1631, + [1677] = 1633, + [1678] = 355, + [1679] = 339, + [1680] = 346, + [1681] = 1623, + [1682] = 1623, + [1683] = 1623, + [1684] = 1623, + [1685] = 1623, + [1686] = 340, + [1687] = 336, + [1688] = 1633, + [1689] = 1623, + [1690] = 1623, + [1691] = 1634, + [1692] = 356, + [1693] = 1623, + [1694] = 1636, + [1695] = 1623, + [1696] = 370, + [1697] = 349, + [1698] = 1698, + [1699] = 343, + [1700] = 350, + [1701] = 1623, + [1702] = 340, + [1703] = 320, + [1704] = 355, + [1705] = 319, + [1706] = 1623, + [1707] = 849, + [1708] = 1623, + [1709] = 1709, + [1710] = 347, + [1711] = 346, + [1712] = 337, + [1713] = 1713, + [1714] = 852, + [1715] = 1520, + [1716] = 1623, + [1717] = 1717, + [1718] = 1718, + [1719] = 1719, + [1720] = 345, + [1721] = 1623, + [1722] = 1623, + [1723] = 356, + [1724] = 1623, + [1725] = 1623, + [1726] = 344, + [1727] = 356, + [1728] = 1623, + [1729] = 955, + [1730] = 1730, + [1731] = 1623, + [1732] = 343, + [1733] = 1623, + [1734] = 1623, + [1735] = 1623, + [1736] = 345, + [1737] = 1737, + [1738] = 1623, + [1739] = 1644, + [1740] = 1623, + [1741] = 351, + [1742] = 352, + [1743] = 1623, + [1744] = 385, + [1745] = 344, + [1746] = 343, + [1747] = 1623, + [1748] = 340, + [1749] = 830, + [1750] = 940, + [1751] = 1623, + [1752] = 1623, + [1753] = 1623, + [1754] = 345, + [1755] = 344, + [1756] = 1623, + [1757] = 1631, + [1758] = 940, + [1759] = 1139, + [1760] = 319, + [1761] = 1002, + [1762] = 1228, + [1763] = 1520, + [1764] = 1003, + [1765] = 969, [1766] = 1766, - [1767] = 1637, - [1768] = 1637, - [1769] = 1749, - [1770] = 1766, - [1771] = 1475, - [1772] = 1764, - [1773] = 1475, - [1774] = 1015, - [1775] = 1752, - [1776] = 1649, - [1777] = 1641, - [1778] = 1766, - [1779] = 1103, - [1780] = 1637, - [1781] = 1445, - [1782] = 1649, - [1783] = 1752, - [1784] = 929, - [1785] = 1525, - [1786] = 1530, - [1787] = 1424, - [1788] = 1641, - [1789] = 992, - [1790] = 1641, - [1791] = 1746, - [1792] = 313, - [1793] = 314, - [1794] = 1649, - [1795] = 1418, - [1796] = 1764, - [1797] = 1450, - [1798] = 1746, - [1799] = 826, - [1800] = 1049, - [1801] = 1641, - [1802] = 1649, - [1803] = 374, - [1804] = 313, - [1805] = 314, - [1806] = 1450, - [1807] = 1749, - [1808] = 373, - [1809] = 1551, - [1810] = 1746, - [1811] = 1445, - [1812] = 1746, - [1813] = 1749, - [1814] = 1746, - [1815] = 1815, - [1816] = 1092, - [1817] = 1700, - [1818] = 313, - [1819] = 1632, - [1820] = 1646, - [1821] = 314, - [1822] = 1822, - [1823] = 1631, - [1824] = 1824, - [1825] = 1679, - [1826] = 1630, - [1827] = 1005, - [1828] = 314, - [1829] = 1829, - [1830] = 1830, - [1831] = 313, - [1832] = 1832, + [1767] = 320, + [1768] = 370, + [1769] = 1769, + [1770] = 370, + [1771] = 1631, + [1772] = 1180, + [1773] = 1520, + [1774] = 1631, + [1775] = 1636, + [1776] = 1634, + [1777] = 1777, + [1778] = 319, + [1779] = 320, + [1780] = 1766, + [1781] = 955, + [1782] = 1634, + [1783] = 1636, + [1784] = 1631, + [1785] = 1785, + [1786] = 1634, + [1787] = 1476, + [1788] = 1423, + [1789] = 1769, + [1790] = 1427, + [1791] = 1777, + [1792] = 1792, + [1793] = 1428, + [1794] = 1585, + [1795] = 1586, + [1796] = 385, + [1797] = 1427, + [1798] = 1423, + [1799] = 1636, + [1800] = 1769, + [1801] = 1634, + [1802] = 1604, + [1803] = 1785, + [1804] = 1766, + [1805] = 1777, + [1806] = 1766, + [1807] = 1596, + [1808] = 1038, + [1809] = 1792, + [1810] = 385, + [1811] = 1766, + [1812] = 1631, + [1813] = 1636, + [1814] = 1785, + [1815] = 849, + [1816] = 1816, + [1817] = 1792, + [1818] = 1428, + [1819] = 1636, + [1820] = 1785, + [1821] = 1634, + [1822] = 1766, + [1823] = 1766, + [1824] = 1476, + [1825] = 1766, + [1826] = 1545, + [1827] = 1785, + [1828] = 1828, + [1829] = 356, + [1830] = 1730, + [1831] = 1831, + [1832] = 319, [1833] = 1833, - [1834] = 1830, - [1835] = 1833, - [1836] = 336, - [1837] = 1690, - [1838] = 1830, - [1839] = 1695, - [1840] = 1829, - [1841] = 1829, - [1842] = 1833, - [1843] = 374, - [1844] = 1637, - [1845] = 1832, - [1846] = 338, - [1847] = 1697, - [1848] = 1824, - [1849] = 1832, - [1850] = 1634, - [1851] = 313, - [1852] = 374, - [1853] = 314, - [1854] = 313, - [1855] = 1649, - [1856] = 1822, - [1857] = 344, - [1858] = 345, - [1859] = 1092, - [1860] = 1103, - [1861] = 1128, - [1862] = 1720, - [1863] = 1641, - [1864] = 1002, - [1865] = 350, - [1866] = 1866, - [1867] = 1242, - [1868] = 1668, - [1869] = 314, - [1870] = 1684, - [1871] = 1625, - [1872] = 348, - [1873] = 1049, - [1874] = 1874, - [1875] = 1875, - [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1879, - [1881] = 1879, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 313, - [1886] = 313, - [1887] = 314, - [1888] = 313, - [1889] = 314, - [1890] = 1875, - [1891] = 313, - [1892] = 1878, - [1893] = 1876, - [1894] = 314, - [1895] = 314, - [1896] = 1874, - [1897] = 1883, - [1898] = 1874, - [1899] = 1875, - [1900] = 1882, - [1901] = 1878, - [1902] = 1902, - [1903] = 1882, - [1904] = 1883, - [1905] = 1876, - [1906] = 328, - [1907] = 1907, + [1834] = 969, + [1835] = 1835, + [1836] = 320, + [1837] = 355, + [1838] = 1139, + [1839] = 1719, + [1840] = 1831, + [1841] = 319, + [1842] = 1718, + [1843] = 1843, + [1844] = 1003, + [1845] = 1845, + [1846] = 1845, + [1847] = 1634, + [1848] = 1636, + [1849] = 1833, + [1850] = 1833, + [1851] = 1713, + [1852] = 1709, + [1853] = 1835, + [1854] = 1843, + [1855] = 1652, + [1856] = 1671, + [1857] = 1668, + [1858] = 1002, + [1859] = 1828, + [1860] = 1860, + [1861] = 1831, + [1862] = 1698, + [1863] = 345, + [1864] = 344, + [1865] = 343, + [1866] = 1228, + [1867] = 1835, + [1868] = 1180, + [1869] = 340, + [1870] = 1104, + [1871] = 1631, + [1872] = 320, + [1873] = 1737, + [1874] = 385, + [1875] = 319, + [1876] = 1629, + [1877] = 385, + [1878] = 1628, + [1879] = 1627, + [1880] = 1828, + [1881] = 337, + [1882] = 346, + [1883] = 347, + [1884] = 1717, + [1885] = 319, + [1886] = 320, + [1887] = 320, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1890, + [1893] = 1893, + [1894] = 320, + [1895] = 319, + [1896] = 1889, + [1897] = 1891, + [1898] = 319, + [1899] = 1888, + [1900] = 1900, + [1901] = 1901, + [1902] = 320, + [1903] = 1900, + [1904] = 320, + [1905] = 1901, + [1906] = 1906, + [1907] = 319, [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 338, - [1912] = 1909, - [1913] = 1909, - [1914] = 1914, - [1915] = 1915, - [1916] = 1909, - [1917] = 1917, - [1918] = 1918, - [1919] = 1909, - [1920] = 1920, - [1921] = 1909, - [1922] = 1922, - [1923] = 1923, - [1924] = 336, - [1925] = 1909, - [1926] = 313, - [1927] = 1909, - [1928] = 314, - [1929] = 334, - [1930] = 314, - [1931] = 1931, - [1932] = 1932, - [1933] = 1909, - [1934] = 313, - [1935] = 348, - [1936] = 1909, + [1909] = 1893, + [1910] = 320, + [1911] = 1888, + [1912] = 1912, + [1913] = 1891, + [1914] = 1890, + [1915] = 1901, + [1916] = 1893, + [1917] = 319, + [1918] = 1889, + [1919] = 1900, + [1920] = 352, + [1921] = 1921, + [1922] = 319, + [1923] = 356, + [1924] = 1924, + [1925] = 1925, + [1926] = 1921, + [1927] = 1921, + [1928] = 1928, + [1929] = 1921, + [1930] = 1921, + [1931] = 345, + [1932] = 344, + [1933] = 1921, + [1934] = 1921, + [1935] = 1935, + [1936] = 343, [1937] = 1937, - [1938] = 1909, - [1939] = 1909, - [1940] = 1909, - [1941] = 343, - [1942] = 342, - [1943] = 1909, - [1944] = 1909, - [1945] = 1909, - [1946] = 1909, - [1947] = 341, - [1948] = 350, - [1949] = 1949, - [1950] = 1909, - [1951] = 1909, - [1952] = 1909, - [1953] = 1909, - [1954] = 1909, - [1955] = 351, - [1956] = 345, - [1957] = 1909, - [1958] = 344, - [1959] = 1959, - [1960] = 1902, - [1961] = 1902, - [1962] = 1915, + [1938] = 1921, + [1939] = 1921, + [1940] = 1921, + [1941] = 1921, + [1942] = 1921, + [1943] = 1921, + [1944] = 1944, + [1945] = 1921, + [1946] = 320, + [1947] = 355, + [1948] = 319, + [1949] = 1921, + [1950] = 1921, + [1951] = 1951, + [1952] = 320, + [1953] = 1921, + [1954] = 350, + [1955] = 1921, + [1956] = 1956, + [1957] = 337, + [1958] = 1958, + [1959] = 1921, + [1960] = 1921, + [1961] = 346, + [1962] = 347, [1963] = 1963, - [1964] = 744, - [1965] = 328, + [1964] = 342, + [1965] = 340, [1966] = 1966, - [1967] = 1966, - [1968] = 1923, - [1969] = 1963, - [1970] = 334, - [1971] = 1963, - [1972] = 1963, - [1973] = 1908, - [1974] = 1966, - [1975] = 336, - [1976] = 1908, - [1977] = 348, - [1978] = 338, - [1979] = 1966, - [1980] = 1966, - [1981] = 1917, - [1982] = 341, - [1983] = 1963, - [1984] = 351, - [1985] = 342, - [1986] = 343, - [1987] = 314, - [1988] = 313, - [1989] = 1918, - [1990] = 1920, - [1991] = 1963, - [1992] = 1963, - [1993] = 1966, - [1994] = 1966, - [1995] = 328, - [1996] = 1963, - [1997] = 1966, - [1998] = 1932, - [1999] = 344, - [2000] = 1915, - [2001] = 1966, - [2002] = 345, - [2003] = 1966, - [2004] = 334, - [2005] = 1917, - [2006] = 351, - [2007] = 350, - [2008] = 1963, - [2009] = 1937, - [2010] = 1918, - [2011] = 1877, - [2012] = 321, - [2013] = 1966, - [2014] = 1920, - [2015] = 348, - [2016] = 1932, - [2017] = 1907, - [2018] = 739, - [2019] = 1907, - [2020] = 345, - [2021] = 743, - [2022] = 652, - [2023] = 649, - [2024] = 325, - [2025] = 344, - [2026] = 1923, - [2027] = 1937, - [2028] = 1963, - [2029] = 750, - [2030] = 324, - [2031] = 343, - [2032] = 342, - [2033] = 341, - [2034] = 1966, - [2035] = 1963, - [2036] = 1966, - [2037] = 336, - [2038] = 1963, - [2039] = 322, - [2040] = 1963, - [2041] = 1963, - [2042] = 338, - [2043] = 1966, - [2044] = 1963, - [2045] = 350, - [2046] = 2046, - [2047] = 1966, - [2048] = 2048, - [2049] = 330, - [2050] = 350, + [1967] = 1967, + [1968] = 1968, + [1969] = 1921, + [1970] = 1921, + [1971] = 1921, + [1972] = 1972, + [1973] = 1973, + [1974] = 1906, + [1975] = 1906, + [1976] = 352, + [1977] = 1977, + [1978] = 1978, + [1979] = 1978, + [1980] = 1925, + [1981] = 345, + [1982] = 344, + [1983] = 1928, + [1984] = 1968, + [1985] = 728, + [1986] = 1924, + [1987] = 1977, + [1988] = 1924, + [1989] = 1925, + [1990] = 1978, + [1991] = 333, + [1992] = 1967, + [1993] = 1944, + [1994] = 1978, + [1995] = 342, + [1996] = 1968, + [1997] = 661, + [1998] = 332, + [1999] = 340, + [2000] = 659, + [2001] = 1912, + [2002] = 343, + [2003] = 331, + [2004] = 319, + [2005] = 1966, + [2006] = 350, + [2007] = 320, + [2008] = 330, + [2009] = 1977, + [2010] = 1978, + [2011] = 1978, + [2012] = 1928, + [2013] = 343, + [2014] = 676, + [2015] = 352, + [2016] = 677, + [2017] = 1978, + [2018] = 1977, + [2019] = 340, + [2020] = 337, + [2021] = 346, + [2022] = 347, + [2023] = 1967, + [2024] = 1977, + [2025] = 1978, + [2026] = 1977, + [2027] = 1977, + [2028] = 356, + [2029] = 344, + [2030] = 1966, + [2031] = 1977, + [2032] = 1978, + [2033] = 355, + [2034] = 345, + [2035] = 1978, + [2036] = 1944, + [2037] = 1972, + [2038] = 347, + [2039] = 1977, + [2040] = 346, + [2041] = 1977, + [2042] = 1978, + [2043] = 342, + [2044] = 1972, + [2045] = 1977, + [2046] = 1978, + [2047] = 1963, + [2048] = 355, + [2049] = 1978, + [2050] = 1963, [2051] = 2051, - [2052] = 2048, - [2053] = 2053, - [2054] = 348, - [2055] = 345, - [2056] = 313, - [2057] = 344, - [2058] = 314, - [2059] = 343, - [2060] = 332, - [2061] = 342, - [2062] = 2062, - [2063] = 314, - [2064] = 313, - [2065] = 341, + [2052] = 1977, + [2053] = 350, + [2054] = 356, + [2055] = 1977, + [2056] = 1978, + [2057] = 337, + [2058] = 1978, + [2059] = 1977, + [2060] = 730, + [2061] = 1977, + [2062] = 319, + [2063] = 319, + [2064] = 355, + [2065] = 320, [2066] = 2066, - [2067] = 338, - [2068] = 336, - [2069] = 2048, - [2070] = 2048, - [2071] = 313, - [2072] = 314, - [2073] = 2048, - [2074] = 335, - [2075] = 2066, - [2076] = 329, - [2077] = 2048, - [2078] = 2078, - [2079] = 340, - [2080] = 314, - [2081] = 2066, - [2082] = 331, - [2083] = 328, - [2084] = 337, - [2085] = 334, - [2086] = 313, - [2087] = 2048, - [2088] = 351, - [2089] = 2089, + [2067] = 2067, + [2068] = 319, + [2069] = 2066, + [2070] = 339, + [2071] = 2071, + [2072] = 2066, + [2073] = 352, + [2074] = 351, + [2075] = 340, + [2076] = 2076, + [2077] = 350, + [2078] = 320, + [2079] = 349, + [2080] = 336, + [2081] = 320, + [2082] = 2067, + [2083] = 2083, + [2084] = 356, + [2085] = 353, + [2086] = 354, + [2087] = 357, + [2088] = 2066, + [2089] = 2067, [2090] = 2090, - [2091] = 2089, - [2092] = 2092, - [2093] = 2090, - [2094] = 2089, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2095, - [2099] = 2090, - [2100] = 2092, - [2101] = 2090, - [2102] = 2089, - [2103] = 2095, - [2104] = 2090, - [2105] = 2089, - [2106] = 2090, - [2107] = 2096, - [2108] = 314, - [2109] = 2090, - [2110] = 2092, - [2111] = 2092, - [2112] = 2095, - [2113] = 2089, - [2114] = 2114, + [2091] = 2066, + [2092] = 2066, + [2093] = 345, + [2094] = 343, + [2095] = 319, + [2096] = 344, + [2097] = 342, + [2098] = 320, + [2099] = 347, + [2100] = 346, + [2101] = 337, + [2102] = 2066, + [2103] = 2103, + [2104] = 2104, + [2105] = 2105, + [2106] = 2106, + [2107] = 2107, + [2108] = 2108, + [2109] = 2104, + [2110] = 2103, + [2111] = 2104, + [2112] = 2103, + [2113] = 2106, + [2114] = 2107, [2115] = 2115, - [2116] = 2095, - [2117] = 313, - [2118] = 2115, - [2119] = 2089, - [2120] = 2097, - [2121] = 2096, - [2122] = 2114, - [2123] = 2090, - [2124] = 2089, - [2125] = 2090, - [2126] = 2096, - [2127] = 2095, - [2128] = 2090, - [2129] = 2095, - [2130] = 373, - [2131] = 2089, - [2132] = 2090, - [2133] = 2089, - [2134] = 826, - [2135] = 2089, - [2136] = 2090, - [2137] = 2090, - [2138] = 2089, - [2139] = 2114, - [2140] = 1015, - [2141] = 2090, - [2142] = 2092, - [2143] = 992, - [2144] = 2097, - [2145] = 2092, - [2146] = 2095, - [2147] = 2097, - [2148] = 2089, - [2149] = 2089, - [2150] = 2097, - [2151] = 2095, - [2152] = 2152, - [2153] = 2089, - [2154] = 2092, - [2155] = 2090, - [2156] = 2089, - [2157] = 2089, - [2158] = 2090, - [2159] = 2089, - [2160] = 2092, - [2161] = 2115, - [2162] = 2092, - [2163] = 2090, - [2164] = 2090, - [2165] = 2089, - [2166] = 2090, - [2167] = 2096, - [2168] = 2168, - [2169] = 2168, - [2170] = 2170, - [2171] = 2168, - [2172] = 2168, - [2173] = 2173, - [2174] = 2170, - [2175] = 2170, - [2176] = 2170, - [2177] = 2170, - [2178] = 2173, - [2179] = 2168, - [2180] = 2168, - [2181] = 322, - [2182] = 2170, - [2183] = 2173, - [2184] = 2168, - [2185] = 2173, - [2186] = 2170, - [2187] = 2173, - [2188] = 2170, - [2189] = 2170, - [2190] = 2170, - [2191] = 2168, - [2192] = 2168, - [2193] = 2170, - [2194] = 2168, - [2195] = 2168, - [2196] = 2168, - [2197] = 2170, - [2198] = 2170, - [2199] = 2170, - [2200] = 2168, - [2201] = 2168, - [2202] = 2170, - [2203] = 2173, + [2116] = 2104, + [2117] = 2107, + [2118] = 2118, + [2119] = 2106, + [2120] = 2106, + [2121] = 2103, + [2122] = 2107, + [2123] = 2123, + [2124] = 2106, + [2125] = 2104, + [2126] = 2103, + [2127] = 849, + [2128] = 2115, + [2129] = 2108, + [2130] = 2104, + [2131] = 2105, + [2132] = 2118, + [2133] = 2106, + [2134] = 2107, + [2135] = 2118, + [2136] = 2105, + [2137] = 2107, + [2138] = 2106, + [2139] = 2105, + [2140] = 2118, + [2141] = 2104, + [2142] = 2107, + [2143] = 2103, + [2144] = 2115, + [2145] = 2108, + [2146] = 2103, + [2147] = 2105, + [2148] = 2118, + [2149] = 2107, + [2150] = 2106, + [2151] = 2107, + [2152] = 2106, + [2153] = 2104, + [2154] = 2104, + [2155] = 2107, + [2156] = 2106, + [2157] = 370, + [2158] = 2107, + [2159] = 2106, + [2160] = 2103, + [2161] = 319, + [2162] = 320, + [2163] = 2107, + [2164] = 2106, + [2165] = 2107, + [2166] = 2106, + [2167] = 2107, + [2168] = 2106, + [2169] = 2107, + [2170] = 2106, + [2171] = 2107, + [2172] = 2107, + [2173] = 2106, + [2174] = 2103, + [2175] = 940, + [2176] = 2107, + [2177] = 2107, + [2178] = 2106, + [2179] = 2106, + [2180] = 955, + [2181] = 2106, + [2182] = 2182, + [2183] = 2183, + [2184] = 2182, + [2185] = 2185, + [2186] = 2185, + [2187] = 2187, + [2188] = 2182, + [2189] = 2185, + [2190] = 2187, + [2191] = 2185, + [2192] = 2182, + [2193] = 2193, + [2194] = 2194, + [2195] = 1180, + [2196] = 2187, + [2197] = 2187, + [2198] = 2182, + [2199] = 2187, + [2200] = 2185, + [2201] = 2185, + [2202] = 2183, + [2203] = 2203, [2204] = 2204, - [2205] = 2173, - [2206] = 2173, - [2207] = 2170, - [2208] = 2173, - [2209] = 2168, - [2210] = 2170, - [2211] = 2170, - [2212] = 2168, - [2213] = 2170, - [2214] = 2168, - [2215] = 2168, - [2216] = 2170, - [2217] = 2170, - [2218] = 2168, - [2219] = 2173, - [2220] = 2168, - [2221] = 2168, - [2222] = 2173, - [2223] = 2173, - [2224] = 2170, - [2225] = 2170, - [2226] = 2173, - [2227] = 2168, - [2228] = 2170, - [2229] = 2168, - [2230] = 2170, - [2231] = 2173, - [2232] = 2168, - [2233] = 2168, - [2234] = 2168, - [2235] = 2173, - [2236] = 2173, - [2237] = 2170, - [2238] = 2168, - [2239] = 2170, - [2240] = 2170, - [2241] = 2170, - [2242] = 2173, - [2243] = 2168, - [2244] = 2170, - [2245] = 2168, - [2246] = 2168, - [2247] = 2173, - [2248] = 2173, - [2249] = 2168, - [2250] = 2173, - [2251] = 2173, - [2252] = 2168, - [2253] = 2173, - [2254] = 2173, - [2255] = 2170, - [2256] = 2256, - [2257] = 2173, - [2258] = 2168, - [2259] = 2168, - [2260] = 2170, - [2261] = 2173, - [2262] = 2170, - [2263] = 2168, - [2264] = 2170, - [2265] = 2173, - [2266] = 2170, - [2267] = 2173, - [2268] = 2168, - [2269] = 2170, - [2270] = 2173, - [2271] = 2168, - [2272] = 2168, - [2273] = 2170, - [2274] = 2173, - [2275] = 2170, - [2276] = 2168, - [2277] = 2170, - [2278] = 2173, - [2279] = 2170, - [2280] = 2168, - [2281] = 2168, - [2282] = 2170, - [2283] = 2170, - [2284] = 2173, - [2285] = 2168, - [2286] = 2170, - [2287] = 2170, - [2288] = 2170, - [2289] = 2168, - [2290] = 2173, - [2291] = 2168, - [2292] = 2173, - [2293] = 2173, - [2294] = 2170, - [2295] = 2168, - [2296] = 1092, - [2297] = 2170, - [2298] = 2168, - [2299] = 2170, - [2300] = 2168, - [2301] = 2173, - [2302] = 2168, - [2303] = 1002, - [2304] = 1005, - [2305] = 2168, - [2306] = 2170, - [2307] = 2170, - [2308] = 2173, - [2309] = 2170, - [2310] = 2168, - [2311] = 2168, - [2312] = 2168, - [2313] = 2170, - [2314] = 2170, - [2315] = 2168, - [2316] = 2316, - [2317] = 2170, - [2318] = 2168, - [2319] = 2170, - [2320] = 2168, - [2321] = 2173, - [2322] = 2173, - [2323] = 2170, - [2324] = 2168, - [2325] = 2170, - [2326] = 2326, - [2327] = 2168, - [2328] = 2170, - [2329] = 2168, - [2330] = 2168, - [2331] = 2170, - [2332] = 2170, - [2333] = 2173, - [2334] = 2168, - [2335] = 2168, - [2336] = 2173, - [2337] = 2170, - [2338] = 1103, - [2339] = 1049, - [2340] = 2170, - [2341] = 2173, - [2342] = 2168, - [2343] = 374, - [2344] = 2170, - [2345] = 2170, - [2346] = 2168, - [2347] = 2168, - [2348] = 321, - [2349] = 322, - [2350] = 1574, - [2351] = 1551, - [2352] = 2352, - [2353] = 1530, - [2354] = 1525, - [2355] = 2355, - [2356] = 322, - [2357] = 2357, - [2358] = 652, - [2359] = 2359, - [2360] = 649, - [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 324, - [2365] = 2365, - [2366] = 321, - [2367] = 325, - [2368] = 337, - [2369] = 342, - [2370] = 2352, - [2371] = 2371, - [2372] = 2372, - [2373] = 2362, - [2374] = 2355, - [2375] = 2365, - [2376] = 332, - [2377] = 328, - [2378] = 739, - [2379] = 334, - [2380] = 350, - [2381] = 332, - [2382] = 335, - [2383] = 329, - [2384] = 348, - [2385] = 337, - [2386] = 373, - [2387] = 335, - [2388] = 329, - [2389] = 340, - [2390] = 826, - [2391] = 325, - [2392] = 2357, - [2393] = 322, - [2394] = 324, - [2395] = 345, - [2396] = 344, - [2397] = 325, - [2398] = 340, - [2399] = 2359, - [2400] = 2363, - [2401] = 1697, - [2402] = 1695, - [2403] = 343, - [2404] = 826, - [2405] = 351, - [2406] = 341, - [2407] = 336, - [2408] = 2408, + [2205] = 2182, + [2206] = 2185, + [2207] = 2187, + [2208] = 2182, + [2209] = 2182, + [2210] = 2185, + [2211] = 2185, + [2212] = 2185, + [2213] = 2183, + [2214] = 2185, + [2215] = 2182, + [2216] = 2185, + [2217] = 2182, + [2218] = 2187, + [2219] = 2182, + [2220] = 2185, + [2221] = 2182, + [2222] = 2182, + [2223] = 2185, + [2224] = 2187, + [2225] = 2183, + [2226] = 2182, + [2227] = 2187, + [2228] = 2182, + [2229] = 2182, + [2230] = 2185, + [2231] = 2187, + [2232] = 2185, + [2233] = 2182, + [2234] = 2185, + [2235] = 2182, + [2236] = 2187, + [2237] = 2185, + [2238] = 2187, + [2239] = 2185, + [2240] = 2183, + [2241] = 2182, + [2242] = 2182, + [2243] = 2185, + [2244] = 2185, + [2245] = 2185, + [2246] = 2182, + [2247] = 2182, + [2248] = 2183, + [2249] = 2185, + [2250] = 2182, + [2251] = 2185, + [2252] = 2185, + [2253] = 2183, + [2254] = 2183, + [2255] = 2183, + [2256] = 2182, + [2257] = 2183, + [2258] = 2185, + [2259] = 2183, + [2260] = 2187, + [2261] = 2187, + [2262] = 2185, + [2263] = 2182, + [2264] = 2183, + [2265] = 2183, + [2266] = 2185, + [2267] = 2183, + [2268] = 2183, + [2269] = 2183, + [2270] = 2182, + [2271] = 2182, + [2272] = 2183, + [2273] = 2185, + [2274] = 2183, + [2275] = 2185, + [2276] = 2183, + [2277] = 2183, + [2278] = 2187, + [2279] = 2187, + [2280] = 2183, + [2281] = 2185, + [2282] = 2182, + [2283] = 2185, + [2284] = 2183, + [2285] = 2187, + [2286] = 2182, + [2287] = 2183, + [2288] = 2185, + [2289] = 2183, + [2290] = 2185, + [2291] = 2183, + [2292] = 2292, + [2293] = 2187, + [2294] = 2183, + [2295] = 2295, + [2296] = 2183, + [2297] = 2182, + [2298] = 385, + [2299] = 2183, + [2300] = 2187, + [2301] = 2185, + [2302] = 2183, + [2303] = 2183, + [2304] = 2183, + [2305] = 2183, + [2306] = 2183, + [2307] = 2183, + [2308] = 2183, + [2309] = 1228, + [2310] = 2187, + [2311] = 2311, + [2312] = 2183, + [2313] = 2182, + [2314] = 2185, + [2315] = 2187, + [2316] = 2182, + [2317] = 2183, + [2318] = 2182, + [2319] = 2187, + [2320] = 2185, + [2321] = 2182, + [2322] = 2182, + [2323] = 2182, + [2324] = 2185, + [2325] = 2183, + [2326] = 2187, + [2327] = 2185, + [2328] = 2183, + [2329] = 2187, + [2330] = 2182, + [2331] = 2182, + [2332] = 2185, + [2333] = 2187, + [2334] = 2183, + [2335] = 2185, + [2336] = 2182, + [2337] = 2337, + [2338] = 2183, + [2339] = 2187, + [2340] = 2183, + [2341] = 2182, + [2342] = 2185, + [2343] = 2182, + [2344] = 2187, + [2345] = 2182, + [2346] = 2185, + [2347] = 2182, + [2348] = 2187, + [2349] = 2185, + [2350] = 2182, + [2351] = 2185, + [2352] = 2182, + [2353] = 2185, + [2354] = 2187, + [2355] = 2182, + [2356] = 2182, + [2357] = 2185, + [2358] = 2185, + [2359] = 2185, + [2360] = 2182, + [2361] = 2182, + [2362] = 2182, + [2363] = 2182, + [2364] = 2182, + [2365] = 2204, + [2366] = 2187, + [2367] = 2311, + [2368] = 2368, + [2369] = 2182, + [2370] = 2182, + [2371] = 2185, + [2372] = 2182, + [2373] = 2373, + [2374] = 2185, + [2375] = 2185, + [2376] = 2182, + [2377] = 2185, + [2378] = 2185, + [2379] = 2187, + [2380] = 2185, + [2381] = 2187, + [2382] = 2187, + [2383] = 2185, + [2384] = 2292, + [2385] = 2185, + [2386] = 2182, + [2387] = 2185, + [2388] = 969, + [2389] = 2187, + [2390] = 2203, + [2391] = 2185, + [2392] = 2182, + [2393] = 2187, + [2394] = 2187, + [2395] = 2182, + [2396] = 330, + [2397] = 2194, + [2398] = 2182, + [2399] = 2183, + [2400] = 2187, + [2401] = 2185, + [2402] = 2187, + [2403] = 2185, + [2404] = 2182, + [2405] = 1002, + [2406] = 1003, + [2407] = 2185, + [2408] = 2182, [2409] = 2409, - [2410] = 330, - [2411] = 338, - [2412] = 338, - [2413] = 2361, - [2414] = 321, - [2415] = 652, - [2416] = 336, - [2417] = 334, - [2418] = 344, - [2419] = 345, - [2420] = 1646, - [2421] = 328, - [2422] = 649, - [2423] = 322, - [2424] = 341, - [2425] = 322, - [2426] = 342, - [2427] = 330, - [2428] = 343, - [2429] = 1630, - [2430] = 331, - [2431] = 324, - [2432] = 351, - [2433] = 322, - [2434] = 348, - [2435] = 331, - [2436] = 321, - [2437] = 750, - [2438] = 350, - [2439] = 373, - [2440] = 743, - [2441] = 744, - [2442] = 2442, - [2443] = 2442, - [2444] = 2444, - [2445] = 351, - [2446] = 2442, - [2447] = 373, - [2448] = 2448, - [2449] = 2442, - [2450] = 334, - [2451] = 2451, - [2452] = 2442, - [2453] = 2442, - [2454] = 322, - [2455] = 2442, - [2456] = 2361, - [2457] = 2442, - [2458] = 328, - [2459] = 2442, - [2460] = 331, - [2461] = 2442, - [2462] = 322, - [2463] = 374, - [2464] = 325, - [2465] = 330, - [2466] = 324, - [2467] = 2442, - [2468] = 324, - [2469] = 325, - [2470] = 325, - [2471] = 324, - [2472] = 2442, - [2473] = 2442, - [2474] = 322, - [2475] = 2475, + [2410] = 2193, + [2411] = 2182, + [2412] = 2187, + [2413] = 2185, + [2414] = 2185, + [2415] = 2182, + [2416] = 2187, + [2417] = 2187, + [2418] = 330, + [2419] = 333, + [2420] = 332, + [2421] = 331, + [2422] = 2422, + [2423] = 659, + [2424] = 661, + [2425] = 2425, + [2426] = 2426, + [2427] = 2427, + [2428] = 1596, + [2429] = 1604, + [2430] = 1586, + [2431] = 1585, + [2432] = 333, + [2433] = 2433, + [2434] = 2434, + [2435] = 330, + [2436] = 2436, + [2437] = 2437, + [2438] = 346, + [2439] = 343, + [2440] = 330, + [2441] = 2422, + [2442] = 676, + [2443] = 677, + [2444] = 728, + [2445] = 730, + [2446] = 849, + [2447] = 333, + [2448] = 849, + [2449] = 2434, + [2450] = 2436, + [2451] = 339, + [2452] = 349, + [2453] = 2426, + [2454] = 2454, + [2455] = 2437, + [2456] = 330, + [2457] = 2433, + [2458] = 332, + [2459] = 331, + [2460] = 351, + [2461] = 2427, + [2462] = 2425, + [2463] = 357, + [2464] = 330, + [2465] = 354, + [2466] = 353, + [2467] = 336, + [2468] = 336, + [2469] = 353, + [2470] = 354, + [2471] = 659, + [2472] = 661, + [2473] = 357, + [2474] = 339, + [2475] = 370, [2476] = 2476, - [2477] = 340, - [2478] = 2442, - [2479] = 337, - [2480] = 2480, - [2481] = 336, - [2482] = 2482, - [2483] = 329, - [2484] = 335, - [2485] = 2442, - [2486] = 2442, - [2487] = 332, - [2488] = 338, - [2489] = 2442, - [2490] = 2490, - [2491] = 2442, - [2492] = 2442, - [2493] = 2442, - [2494] = 2494, - [2495] = 2495, - [2496] = 2442, - [2497] = 2497, - [2498] = 2498, - [2499] = 2363, - [2500] = 2500, - [2501] = 2442, - [2502] = 2498, - [2503] = 2442, - [2504] = 992, - [2505] = 2505, - [2506] = 2442, - [2507] = 2363, - [2508] = 1015, - [2509] = 344, + [2477] = 2477, + [2478] = 2478, + [2479] = 349, + [2480] = 351, + [2481] = 330, + [2482] = 370, + [2483] = 342, + [2484] = 347, + [2485] = 346, + [2486] = 337, + [2487] = 1713, + [2488] = 1709, + [2489] = 350, + [2490] = 340, + [2491] = 343, + [2492] = 352, + [2493] = 333, + [2494] = 355, + [2495] = 356, + [2496] = 1698, + [2497] = 342, + [2498] = 332, + [2499] = 352, + [2500] = 347, + [2501] = 337, + [2502] = 340, + [2503] = 1652, + [2504] = 331, + [2505] = 344, + [2506] = 355, + [2507] = 350, + [2508] = 356, + [2509] = 345, [2510] = 345, - [2511] = 652, - [2512] = 649, - [2513] = 2442, - [2514] = 2442, - [2515] = 2515, - [2516] = 2355, - [2517] = 2359, - [2518] = 2500, - [2519] = 341, - [2520] = 342, - [2521] = 343, - [2522] = 2357, - [2523] = 2363, - [2524] = 2362, - [2525] = 2365, - [2526] = 2357, - [2527] = 2359, - [2528] = 2355, - [2529] = 2442, - [2530] = 2442, - [2531] = 2442, - [2532] = 348, - [2533] = 2442, - [2534] = 2442, - [2535] = 649, - [2536] = 652, - [2537] = 350, - [2538] = 2361, - [2539] = 2442, - [2540] = 2442, - [2541] = 2442, - [2542] = 2442, - [2543] = 2442, - [2544] = 2442, - [2545] = 992, - [2546] = 2442, - [2547] = 2442, - [2548] = 1015, - [2549] = 2352, - [2550] = 2442, - [2551] = 2372, - [2552] = 335, - [2553] = 329, - [2554] = 337, - [2555] = 2442, - [2556] = 340, - [2557] = 332, - [2558] = 351, - [2559] = 330, - [2560] = 328, - [2561] = 331, - [2562] = 334, - [2563] = 322, - [2564] = 324, - [2565] = 2355, - [2566] = 325, - [2567] = 373, - [2568] = 321, - [2569] = 336, - [2570] = 2371, - [2571] = 2408, - [2572] = 2409, - [2573] = 652, - [2574] = 2359, - [2575] = 649, - [2576] = 374, - [2577] = 739, - [2578] = 743, - [2579] = 744, - [2580] = 750, - [2581] = 2361, - [2582] = 2365, - [2583] = 2357, - [2584] = 2442, - [2585] = 2442, - [2586] = 2442, - [2587] = 338, - [2588] = 2362, - [2589] = 341, - [2590] = 342, - [2591] = 343, - [2592] = 2352, - [2593] = 322, - [2594] = 344, - [2595] = 2365, - [2596] = 2362, - [2597] = 345, - [2598] = 348, - [2599] = 2442, - [2600] = 2442, - [2601] = 350, - [2602] = 325, - [2603] = 324, - [2604] = 2352, - [2605] = 2442, - [2606] = 2442, - [2607] = 2442, - [2608] = 649, - [2609] = 743, - [2610] = 2610, - [2611] = 2611, - [2612] = 350, - [2613] = 374, - [2614] = 2614, - [2615] = 2615, - [2616] = 2615, - [2617] = 2617, - [2618] = 348, - [2619] = 2615, - [2620] = 744, - [2621] = 750, - [2622] = 1049, - [2623] = 345, - [2624] = 344, + [2511] = 344, + [2512] = 2512, + [2513] = 351, + [2514] = 2514, + [2515] = 356, + [2516] = 2514, + [2517] = 336, + [2518] = 2514, + [2519] = 2519, + [2520] = 2520, + [2521] = 2514, + [2522] = 2522, + [2523] = 2523, + [2524] = 2514, + [2525] = 661, + [2526] = 659, + [2527] = 2527, + [2528] = 2528, + [2529] = 345, + [2530] = 344, + [2531] = 342, + [2532] = 2532, + [2533] = 2514, + [2534] = 940, + [2535] = 2514, + [2536] = 2514, + [2537] = 2514, + [2538] = 2538, + [2539] = 2514, + [2540] = 2514, + [2541] = 955, + [2542] = 2542, + [2543] = 2422, + [2544] = 2433, + [2545] = 2514, + [2546] = 343, + [2547] = 2547, + [2548] = 2425, + [2549] = 370, + [2550] = 336, + [2551] = 340, + [2552] = 2514, + [2553] = 2514, + [2554] = 353, + [2555] = 2514, + [2556] = 2434, + [2557] = 354, + [2558] = 331, + [2559] = 339, + [2560] = 330, + [2561] = 2437, + [2562] = 2427, + [2563] = 342, + [2564] = 337, + [2565] = 346, + [2566] = 347, + [2567] = 2567, + [2568] = 330, + [2569] = 349, + [2570] = 350, + [2571] = 357, + [2572] = 352, + [2573] = 330, + [2574] = 354, + [2575] = 355, + [2576] = 331, + [2577] = 2514, + [2578] = 2426, + [2579] = 2436, + [2580] = 2514, + [2581] = 2514, + [2582] = 2514, + [2583] = 353, + [2584] = 332, + [2585] = 2514, + [2586] = 2514, + [2587] = 370, + [2588] = 333, + [2589] = 2589, + [2590] = 661, + [2591] = 357, + [2592] = 2514, + [2593] = 2514, + [2594] = 355, + [2595] = 2433, + [2596] = 2514, + [2597] = 2425, + [2598] = 332, + [2599] = 356, + [2600] = 659, + [2601] = 2434, + [2602] = 2514, + [2603] = 2514, + [2604] = 955, + [2605] = 330, + [2606] = 345, + [2607] = 344, + [2608] = 2514, + [2609] = 2514, + [2610] = 385, + [2611] = 343, + [2612] = 2514, + [2613] = 2422, + [2614] = 350, + [2615] = 340, + [2616] = 2514, + [2617] = 339, + [2618] = 2514, + [2619] = 2427, + [2620] = 2437, + [2621] = 2621, + [2622] = 2436, + [2623] = 2427, + [2624] = 2514, [2625] = 2625, - [2626] = 2610, - [2627] = 343, - [2628] = 342, - [2629] = 341, - [2630] = 2615, - [2631] = 652, - [2632] = 338, - [2633] = 336, - [2634] = 2615, - [2635] = 2635, - [2636] = 2636, - [2637] = 2615, - [2638] = 2615, - [2639] = 2615, - [2640] = 2640, - [2641] = 2615, - [2642] = 2642, - [2643] = 2614, - [2644] = 743, - [2645] = 739, - [2646] = 2625, - [2647] = 2371, - [2648] = 2372, - [2649] = 322, - [2650] = 2615, - [2651] = 2615, - [2652] = 324, - [2653] = 325, - [2654] = 2615, - [2655] = 2615, - [2656] = 1005, - [2657] = 2657, - [2658] = 2615, - [2659] = 2615, - [2660] = 2615, - [2661] = 334, - [2662] = 2615, - [2663] = 2663, - [2664] = 2372, - [2665] = 324, - [2666] = 325, - [2667] = 2371, - [2668] = 2636, - [2669] = 2635, - [2670] = 328, - [2671] = 2615, - [2672] = 2615, - [2673] = 2615, - [2674] = 2615, - [2675] = 2408, - [2676] = 2409, - [2677] = 2615, + [2626] = 2434, + [2627] = 2425, + [2628] = 2514, + [2629] = 2514, + [2630] = 2514, + [2631] = 2433, + [2632] = 2514, + [2633] = 2514, + [2634] = 940, + [2635] = 351, + [2636] = 2437, + [2637] = 2514, + [2638] = 2514, + [2639] = 2514, + [2640] = 2514, + [2641] = 2422, + [2642] = 2514, + [2643] = 2426, + [2644] = 2512, + [2645] = 2514, + [2646] = 2514, + [2647] = 2436, + [2648] = 2547, + [2649] = 330, + [2650] = 331, + [2651] = 385, + [2652] = 2514, + [2653] = 2514, + [2654] = 730, + [2655] = 332, + [2656] = 728, + [2657] = 677, + [2658] = 676, + [2659] = 2514, + [2660] = 2426, + [2661] = 661, + [2662] = 2514, + [2663] = 659, + [2664] = 332, + [2665] = 331, + [2666] = 2514, + [2667] = 331, + [2668] = 347, + [2669] = 346, + [2670] = 337, + [2671] = 2476, + [2672] = 2477, + [2673] = 349, + [2674] = 2478, + [2675] = 2454, + [2676] = 332, + [2677] = 352, [2678] = 2678, - [2679] = 351, - [2680] = 750, - [2681] = 2363, - [2682] = 2615, - [2683] = 2615, - [2684] = 744, - [2685] = 2615, - [2686] = 2686, - [2687] = 331, - [2688] = 2657, - [2689] = 2408, - [2690] = 2409, - [2691] = 325, - [2692] = 2355, - [2693] = 2359, - [2694] = 2615, - [2695] = 324, - [2696] = 2615, - [2697] = 2615, - [2698] = 2357, - [2699] = 739, - [2700] = 2615, - [2701] = 2615, - [2702] = 2365, - [2703] = 330, - [2704] = 2615, - [2705] = 2362, - [2706] = 2617, - [2707] = 1002, - [2708] = 2615, - [2709] = 2615, - [2710] = 2640, - [2711] = 2611, - [2712] = 2615, - [2713] = 2494, - [2714] = 2615, - [2715] = 2614, - [2716] = 2716, - [2717] = 2372, - [2718] = 2615, - [2719] = 2615, - [2720] = 2371, - [2721] = 2678, - [2722] = 2615, - [2723] = 2625, - [2724] = 750, - [2725] = 744, - [2726] = 2505, - [2727] = 743, - [2728] = 739, - [2729] = 1049, + [2679] = 2478, + [2680] = 730, + [2681] = 344, + [2682] = 343, + [2683] = 728, + [2684] = 345, + [2685] = 2685, + [2686] = 331, + [2687] = 356, + [2688] = 730, + [2689] = 332, + [2690] = 677, + [2691] = 2691, + [2692] = 355, + [2693] = 728, + [2694] = 676, + [2695] = 2621, + [2696] = 2696, + [2697] = 2437, + [2698] = 677, + [2699] = 676, + [2700] = 2476, + [2701] = 2477, + [2702] = 2478, + [2703] = 2427, + [2704] = 2476, + [2705] = 340, + [2706] = 2477, + [2707] = 969, + [2708] = 1003, + [2709] = 1002, + [2710] = 2454, + [2711] = 332, + [2712] = 331, + [2713] = 1003, + [2714] = 2625, + [2715] = 2685, + [2716] = 332, + [2717] = 1002, + [2718] = 331, + [2719] = 661, + [2720] = 2720, + [2721] = 659, + [2722] = 2691, + [2723] = 332, + [2724] = 676, + [2725] = 2725, + [2726] = 677, + [2727] = 2422, + [2728] = 331, + [2729] = 2434, [2730] = 2730, - [2731] = 2409, - [2732] = 2408, - [2733] = 1002, - [2734] = 340, - [2735] = 2615, - [2736] = 1005, - [2737] = 337, - [2738] = 2615, - [2739] = 324, - [2740] = 329, - [2741] = 335, - [2742] = 325, - [2743] = 2615, - [2744] = 374, - [2745] = 2615, - [2746] = 2636, - [2747] = 2635, - [2748] = 332, - [2749] = 2615, - [2750] = 2750, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 2756, - [2757] = 2757, - [2758] = 2758, - [2759] = 2759, - [2760] = 2760, - [2761] = 314, - [2762] = 2762, - [2763] = 2763, - [2764] = 2759, - [2765] = 2753, + [2731] = 2476, + [2732] = 352, + [2733] = 2477, + [2734] = 2685, + [2735] = 2425, + [2736] = 2433, + [2737] = 2478, + [2738] = 2454, + [2739] = 330, + [2740] = 2740, + [2741] = 336, + [2742] = 337, + [2743] = 346, + [2744] = 2720, + [2745] = 2730, + [2746] = 347, + [2747] = 385, + [2748] = 350, + [2749] = 353, + [2750] = 354, + [2751] = 728, + [2752] = 2730, + [2753] = 730, + [2754] = 342, + [2755] = 2720, + [2756] = 357, + [2757] = 385, + [2758] = 969, + [2759] = 2691, + [2760] = 351, + [2761] = 339, + [2762] = 349, + [2763] = 2454, + [2764] = 2764, + [2765] = 2765, [2766] = 2766, [2767] = 2767, [2768] = 2768, - [2769] = 2767, - [2770] = 2770, + [2769] = 2769, + [2770] = 2764, [2771] = 2771, [2772] = 2772, - [2773] = 2772, - [2774] = 2750, - [2775] = 2762, - [2776] = 2763, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, + [2776] = 2776, [2777] = 2777, - [2778] = 313, + [2778] = 2778, [2779] = 2779, - [2780] = 1092, + [2780] = 2780, [2781] = 2781, - [2782] = 2777, - [2783] = 2783, - [2784] = 1103, + [2782] = 370, + [2783] = 676, + [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, [2788] = 2788, - [2789] = 1092, - [2790] = 2505, - [2791] = 2730, - [2792] = 2783, - [2793] = 2793, - [2794] = 2786, - [2795] = 2686, - [2796] = 2663, - [2797] = 2779, + [2789] = 2781, + [2790] = 677, + [2791] = 2625, + [2792] = 2792, + [2793] = 2621, + [2794] = 331, + [2795] = 728, + [2796] = 332, + [2797] = 2476, [2798] = 2798, - [2799] = 2799, + [2799] = 2477, [2800] = 2800, - [2801] = 2494, - [2802] = 2802, - [2803] = 2758, - [2804] = 2804, - [2805] = 2756, - [2806] = 2806, - [2807] = 2807, - [2808] = 2787, - [2809] = 2804, - [2810] = 750, - [2811] = 2372, + [2801] = 2478, + [2802] = 2454, + [2803] = 2803, + [2804] = 2784, + [2805] = 730, + [2806] = 2768, + [2807] = 2725, + [2808] = 2778, + [2809] = 1228, + [2810] = 2810, + [2811] = 2811, [2812] = 2812, - [2813] = 2371, + [2813] = 2813, [2814] = 2814, - [2815] = 2408, - [2816] = 2816, - [2817] = 2505, - [2818] = 2760, - [2819] = 744, - [2820] = 2820, - [2821] = 2821, + [2815] = 319, + [2816] = 2696, + [2817] = 2740, + [2818] = 2621, + [2819] = 2625, + [2820] = 2621, + [2821] = 1180, [2822] = 2822, - [2823] = 2814, - [2824] = 2755, - [2825] = 2409, - [2826] = 2754, - [2827] = 2768, - [2828] = 2822, - [2829] = 2829, - [2830] = 2812, - [2831] = 2806, - [2832] = 2770, - [2833] = 743, - [2834] = 373, - [2835] = 2771, - [2836] = 324, - [2837] = 2798, - [2838] = 2793, - [2839] = 2807, - [2840] = 2829, - [2841] = 325, - [2842] = 2821, - [2843] = 2766, - [2844] = 2799, - [2845] = 2788, - [2846] = 1103, - [2847] = 2505, - [2848] = 2848, - [2849] = 2849, - [2850] = 2785, - [2851] = 2781, - [2852] = 2820, - [2853] = 2802, - [2854] = 2494, - [2855] = 2752, - [2856] = 2848, - [2857] = 2800, - [2858] = 2849, - [2859] = 2859, - [2860] = 2816, - [2861] = 2859, - [2862] = 2494, - [2863] = 2751, - [2864] = 739, - [2865] = 2686, - [2866] = 2866, - [2867] = 2866, - [2868] = 2868, - [2869] = 2490, - [2870] = 2686, - [2871] = 374, - [2872] = 2686, - [2873] = 2730, - [2874] = 2663, - [2875] = 322, - [2876] = 2444, - [2877] = 2663, - [2878] = 2663, - [2879] = 2868, - [2880] = 2494, - [2881] = 2866, - [2882] = 2505, - [2883] = 2730, - [2884] = 322, - [2885] = 324, - [2886] = 2730, - [2887] = 325, - [2888] = 321, - [2889] = 2868, - [2890] = 340, - [2891] = 344, - [2892] = 324, - [2893] = 2686, - [2894] = 2894, - [2895] = 325, - [2896] = 2663, - [2897] = 2897, - [2898] = 2898, - [2899] = 322, - [2900] = 336, - [2901] = 322, - [2902] = 338, - [2903] = 2903, - [2904] = 2904, - [2905] = 2359, - [2906] = 334, - [2907] = 331, - [2908] = 328, + [2823] = 2823, + [2824] = 320, + [2825] = 2773, + [2826] = 2826, + [2827] = 2625, + [2828] = 2810, + [2829] = 2779, + [2830] = 2786, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2792, + [2837] = 2769, + [2838] = 2811, + [2839] = 2839, + [2840] = 2840, + [2841] = 2834, + [2842] = 2840, + [2843] = 2843, + [2844] = 1180, + [2845] = 2845, + [2846] = 2826, + [2847] = 2835, + [2848] = 2765, + [2849] = 2833, + [2850] = 2787, + [2851] = 2800, + [2852] = 1228, + [2853] = 2798, + [2854] = 2832, + [2855] = 2788, + [2856] = 2845, + [2857] = 2785, + [2858] = 2780, + [2859] = 2823, + [2860] = 2822, + [2861] = 2861, + [2862] = 2776, + [2863] = 2775, + [2864] = 2774, + [2865] = 2767, + [2866] = 2772, + [2867] = 2771, + [2868] = 2839, + [2869] = 2803, + [2870] = 2777, + [2871] = 2843, + [2872] = 2831, + [2873] = 2861, + [2874] = 2814, + [2875] = 2766, + [2876] = 2813, + [2877] = 2877, + [2878] = 2812, + [2879] = 2625, + [2880] = 332, + [2881] = 2740, + [2882] = 330, + [2883] = 2725, + [2884] = 2696, + [2885] = 2885, + [2886] = 2740, + [2887] = 2696, + [2888] = 330, + [2889] = 2522, + [2890] = 2519, + [2891] = 2725, + [2892] = 333, + [2893] = 385, + [2894] = 2725, + [2895] = 2740, + [2896] = 2896, + [2897] = 2885, + [2898] = 2885, + [2899] = 2896, + [2900] = 2896, + [2901] = 331, + [2902] = 2621, + [2903] = 2696, + [2904] = 353, + [2905] = 2905, + [2906] = 2425, + [2907] = 330, + [2908] = 2725, [2909] = 2909, [2910] = 2910, - [2911] = 2911, - [2912] = 330, + [2911] = 2427, + [2912] = 2912, [2913] = 2913, - [2914] = 350, - [2915] = 341, - [2916] = 351, + [2914] = 2437, + [2915] = 2915, + [2916] = 2916, [2917] = 2917, - [2918] = 322, + [2918] = 2918, [2919] = 2919, - [2920] = 337, - [2921] = 2357, - [2922] = 329, + [2920] = 2434, + [2921] = 2921, + [2922] = 2922, [2923] = 2923, - [2924] = 2924, - [2925] = 2925, - [2926] = 335, - [2927] = 342, - [2928] = 2365, - [2929] = 343, - [2930] = 2362, + [2924] = 336, + [2925] = 347, + [2926] = 355, + [2927] = 354, + [2928] = 345, + [2929] = 330, + [2930] = 337, [2931] = 2931, - [2932] = 2932, - [2933] = 2933, - [2934] = 2934, - [2935] = 2362, - [2936] = 2359, - [2937] = 2363, - [2938] = 348, - [2939] = 2939, - [2940] = 2939, - [2941] = 332, - [2942] = 2730, - [2943] = 2943, - [2944] = 2939, - [2945] = 2355, - [2946] = 2946, - [2947] = 2947, - [2948] = 2948, - [2949] = 649, + [2932] = 2696, + [2933] = 343, + [2934] = 344, + [2935] = 2935, + [2936] = 2740, + [2937] = 331, + [2938] = 2938, + [2939] = 356, + [2940] = 2433, + [2941] = 2941, + [2942] = 2427, + [2943] = 351, + [2944] = 2944, + [2945] = 659, + [2946] = 2921, + [2947] = 357, + [2948] = 340, + [2949] = 339, [2950] = 2950, - [2951] = 345, - [2952] = 2952, - [2953] = 652, - [2954] = 2954, - [2955] = 750, - [2956] = 2956, + [2951] = 352, + [2952] = 661, + [2953] = 2425, + [2954] = 346, + [2955] = 2921, + [2956] = 332, [2957] = 2957, - [2958] = 2958, - [2959] = 2362, - [2960] = 2365, + [2958] = 2422, + [2959] = 342, + [2960] = 349, [2961] = 2961, [2962] = 2962, [2963] = 2963, - [2964] = 652, - [2965] = 649, - [2966] = 2966, + [2964] = 2964, + [2965] = 2965, + [2966] = 330, [2967] = 2967, - [2968] = 2968, + [2968] = 350, [2969] = 2969, - [2970] = 2970, + [2970] = 331, [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2974, + [2972] = 2477, + [2973] = 677, + [2974] = 676, [2975] = 2975, [2976] = 2976, - [2977] = 744, - [2978] = 2408, - [2979] = 2409, + [2977] = 2478, + [2978] = 2454, + [2979] = 2979, [2980] = 2980, - [2981] = 2371, - [2982] = 325, - [2983] = 2355, + [2981] = 2437, + [2982] = 2982, + [2983] = 2983, [2984] = 2984, [2985] = 2985, [2986] = 2986, [2987] = 2987, [2988] = 2988, - [2989] = 2989, + [2989] = 370, [2990] = 2990, [2991] = 2991, - [2992] = 2992, + [2992] = 661, [2993] = 2993, [2994] = 2994, - [2995] = 2995, + [2995] = 659, [2996] = 2996, [2997] = 2997, - [2998] = 2998, + [2998] = 331, [2999] = 2999, - [3000] = 3000, + [3000] = 2425, [3001] = 3001, [3002] = 3002, - [3003] = 321, - [3004] = 324, + [3003] = 3003, + [3004] = 3004, [3005] = 3005, - [3006] = 743, + [3006] = 3006, [3007] = 3007, [3008] = 3008, [3009] = 3009, - [3010] = 2372, - [3011] = 739, + [3010] = 2434, + [3011] = 332, [3012] = 3012, - [3013] = 2359, - [3014] = 3014, - [3015] = 3015, - [3016] = 2372, - [3017] = 3017, - [3018] = 2357, - [3019] = 2371, - [3020] = 3020, + [3013] = 3013, + [3014] = 730, + [3015] = 333, + [3016] = 2422, + [3017] = 728, + [3018] = 2478, + [3019] = 330, + [3020] = 2476, [3021] = 3021, - [3022] = 3022, - [3023] = 324, - [3024] = 3024, - [3025] = 744, - [3026] = 750, + [3022] = 728, + [3023] = 2477, + [3024] = 730, + [3025] = 677, + [3026] = 2476, [3027] = 3027, - [3028] = 3028, - [3029] = 2409, - [3030] = 322, + [3028] = 2877, + [3029] = 2427, + [3030] = 2454, [3031] = 3031, - [3032] = 2408, - [3033] = 324, - [3034] = 739, - [3035] = 2363, + [3032] = 3032, + [3033] = 331, + [3034] = 3034, + [3035] = 3035, [3036] = 3036, - [3037] = 325, - [3038] = 325, - [3039] = 3039, + [3037] = 3037, + [3038] = 3038, + [3039] = 332, [3040] = 3040, [3041] = 3041, - [3042] = 743, + [3042] = 3042, [3043] = 3043, - [3044] = 373, + [3044] = 3044, [3045] = 3045, [3046] = 3046, [3047] = 3047, [3048] = 3048, - [3049] = 2757, + [3049] = 3049, [3050] = 3050, [3051] = 3051, - [3052] = 3052, - [3053] = 321, + [3052] = 332, + [3053] = 333, [3054] = 3054, - [3055] = 343, - [3056] = 1015, - [3057] = 2409, - [3058] = 2408, - [3059] = 373, - [3060] = 329, - [3061] = 335, - [3062] = 374, - [3063] = 334, - [3064] = 328, - [3065] = 336, - [3066] = 992, - [3067] = 336, - [3068] = 341, - [3069] = 350, - [3070] = 338, - [3071] = 342, - [3072] = 330, - [3073] = 341, - [3074] = 351, - [3075] = 340, - [3076] = 348, - [3077] = 338, - [3078] = 334, - [3079] = 332, - [3080] = 331, - [3081] = 331, - [3082] = 337, - [3083] = 342, - [3084] = 330, - [3085] = 340, - [3086] = 337, - [3087] = 328, - [3088] = 329, - [3089] = 351, - [3090] = 2505, - [3091] = 344, - [3092] = 345, - [3093] = 2494, - [3094] = 324, - [3095] = 2371, - [3096] = 325, - [3097] = 348, - [3098] = 3098, - [3099] = 2372, - [3100] = 335, - [3101] = 373, - [3102] = 739, - [3103] = 2498, - [3104] = 743, - [3105] = 2505, - [3106] = 744, - [3107] = 321, - [3108] = 350, - [3109] = 750, - [3110] = 332, - [3111] = 826, - [3112] = 2494, - [3113] = 343, - [3114] = 344, - [3115] = 2500, - [3116] = 345, - [3117] = 331, - [3118] = 332, - [3119] = 313, - [3120] = 314, - [3121] = 1015, - [3122] = 338, - [3123] = 2686, - [3124] = 337, - [3125] = 330, - [3126] = 992, - [3127] = 329, - [3128] = 335, - [3129] = 374, - [3130] = 374, - [3131] = 2494, - [3132] = 334, - [3133] = 373, - [3134] = 328, - [3135] = 2730, - [3136] = 345, - [3137] = 2663, - [3138] = 348, - [3139] = 2500, - [3140] = 336, - [3141] = 344, - [3142] = 2498, - [3143] = 341, - [3144] = 2505, - [3145] = 343, - [3146] = 351, - [3147] = 350, - [3148] = 342, - [3149] = 340, - [3150] = 1005, - [3151] = 2793, - [3152] = 2806, - [3153] = 2812, - [3154] = 1092, - [3155] = 2798, - [3156] = 1103, - [3157] = 2686, - [3158] = 1049, - [3159] = 2822, - [3160] = 2800, - [3161] = 2663, - [3162] = 2768, - [3163] = 2814, - [3164] = 2802, - [3165] = 2730, - [3166] = 1002, - [3167] = 374, - [3168] = 2816, - [3169] = 2802, - [3170] = 2859, - [3171] = 1092, - [3172] = 2820, - [3173] = 2754, - [3174] = 2756, - [3175] = 2758, - [3176] = 1103, - [3177] = 2781, - [3178] = 2829, - [3179] = 2766, - [3180] = 2759, - [3181] = 2763, - [3182] = 2767, - [3183] = 2785, - [3184] = 2788, - [3185] = 2821, - [3186] = 2799, - [3187] = 2814, - [3188] = 3188, - [3189] = 2755, - [3190] = 2760, - [3191] = 2762, - [3192] = 2800, - [3193] = 2848, - [3194] = 2786, - [3195] = 2849, - [3196] = 2777, - [3197] = 2783, - [3198] = 2816, - [3199] = 2751, - [3200] = 2793, - [3201] = 2753, - [3202] = 2752, - [3203] = 2779, - [3204] = 2798, - [3205] = 2806, - [3206] = 2812, - [3207] = 2822, - [3208] = 2804, - [3209] = 2772, - [3210] = 2750, - [3211] = 2807, - [3212] = 2768, - [3213] = 2787, - [3214] = 3214, - [3215] = 2771, - [3216] = 2770, - [3217] = 313, - [3218] = 314, - [3219] = 3219, - [3220] = 313, - [3221] = 3221, - [3222] = 3221, - [3223] = 3221, - [3224] = 314, - [3225] = 3219, - [3226] = 3221, - [3227] = 3219, - [3228] = 3219, - [3229] = 3229, - [3230] = 3229, - [3231] = 3231, - [3232] = 3231, - [3233] = 3229, - [3234] = 3231, - [3235] = 3229, - [3236] = 3231, - [3237] = 3229, - [3238] = 3231, - [3239] = 3231, - [3240] = 3231, - [3241] = 3231, - [3242] = 3229, - [3243] = 3229, - [3244] = 3231, - [3245] = 3229, - [3246] = 3231, - [3247] = 3231, - [3248] = 3229, - [3249] = 3229, - [3250] = 3229, - [3251] = 3229, - [3252] = 3229, - [3253] = 3229, - [3254] = 3231, - [3255] = 3231, - [3256] = 3231, - [3257] = 3231, - [3258] = 3229, - [3259] = 3231, - [3260] = 3231, - [3261] = 3231, - [3262] = 3231, - [3263] = 3229, - [3264] = 3229, - [3265] = 3229, - [3266] = 3229, - [3267] = 322, - [3268] = 3229, - [3269] = 3229, - [3270] = 3231, - [3271] = 3231, - [3272] = 3231, - [3273] = 3229, - [3274] = 3229, - [3275] = 3231, - [3276] = 3229, - [3277] = 3229, - [3278] = 3231, - [3279] = 3229, - [3280] = 3231, - [3281] = 3231, - [3282] = 3229, - [3283] = 3229, - [3284] = 3229, - [3285] = 3229, - [3286] = 3231, - [3287] = 3231, - [3288] = 3231, - [3289] = 3229, - [3290] = 3231, - [3291] = 3231, - [3292] = 3231, - [3293] = 3229, - [3294] = 3229, - [3295] = 3231, - [3296] = 3229, - [3297] = 3231, - [3298] = 3231, - [3299] = 3229, - [3300] = 3229, - [3301] = 3231, - [3302] = 3231, - [3303] = 3229, - [3304] = 3231, - [3305] = 3229, - [3306] = 3229, - [3307] = 3229, - [3308] = 3231, - [3309] = 3229, - [3310] = 3231, - [3311] = 3229, - [3312] = 3231, - [3313] = 3231, - [3314] = 3229, - [3315] = 3229, - [3316] = 3231, - [3317] = 3231, - [3318] = 3318, - [3319] = 3229, - [3320] = 3231, - [3321] = 3321, - [3322] = 3321, - [3323] = 3323, - [3324] = 3324, - [3325] = 3324, - [3326] = 3324, - [3327] = 3324, - [3328] = 3323, - [3329] = 3321, - [3330] = 3321, - [3331] = 3324, - [3332] = 3321, - [3333] = 3323, - [3334] = 3323, - [3335] = 3323, - [3336] = 739, - [3337] = 743, - [3338] = 3323, - [3339] = 3324, - [3340] = 3323, - [3341] = 3324, - [3342] = 3321, - [3343] = 744, - [3344] = 750, - [3345] = 3324, - [3346] = 3321, - [3347] = 3321, - [3348] = 3321, - [3349] = 3323, - [3350] = 3323, - [3351] = 3324, - [3352] = 3323, - [3353] = 3323, - [3354] = 3323, - [3355] = 3324, - [3356] = 3321, - [3357] = 3321, - [3358] = 3324, - [3359] = 3321, - [3360] = 3324, - [3361] = 3321, - [3362] = 3324, - [3363] = 3321, - [3364] = 3321, - [3365] = 3321, - [3366] = 3324, - [3367] = 3321, - [3368] = 3321, - [3369] = 3323, - [3370] = 3323, - [3371] = 3323, - [3372] = 3323, - [3373] = 3321, - [3374] = 3324, - [3375] = 3324, - [3376] = 3324, - [3377] = 3324, - [3378] = 3323, - [3379] = 3321, - [3380] = 3321, - [3381] = 3324, - [3382] = 3324, - [3383] = 3324, - [3384] = 3323, - [3385] = 3324, - [3386] = 3321, - [3387] = 3321, - [3388] = 3321, - [3389] = 3323, - [3390] = 3321, - [3391] = 3321, - [3392] = 3323, - [3393] = 3321, - [3394] = 3324, - [3395] = 3323, - [3396] = 3323, - [3397] = 3324, - [3398] = 3324, - [3399] = 3324, - [3400] = 3324, - [3401] = 3321, - [3402] = 3321, - [3403] = 3321, - [3404] = 3323, - [3405] = 3321, - [3406] = 3323, - [3407] = 3323, - [3408] = 3324, - [3409] = 3323, - [3410] = 3323, - [3411] = 3324, - [3412] = 3324, - [3413] = 3324, - [3414] = 3321, - [3415] = 3321, - [3416] = 3321, - [3417] = 3324, - [3418] = 3323, - [3419] = 3321, - [3420] = 3321, - [3421] = 3323, - [3422] = 3324, - [3423] = 3323, - [3424] = 3323, - [3425] = 3324, - [3426] = 3324, - [3427] = 3321, - [3428] = 3324, - [3429] = 3321, - [3430] = 3321, - [3431] = 3323, - [3432] = 3324, - [3433] = 3321, - [3434] = 3323, - [3435] = 3324, - [3436] = 3324, - [3437] = 3321, - [3438] = 3324, - [3439] = 3323, - [3440] = 3323, - [3441] = 3324, - [3442] = 3323, - [3443] = 3323, - [3444] = 321, - [3445] = 3324, - [3446] = 3321, - [3447] = 3323, - [3448] = 3323, - [3449] = 3324, - [3450] = 3321, - [3451] = 3324, - [3452] = 3323, - [3453] = 3324, - [3454] = 3321, - [3455] = 324, - [3456] = 325, - [3457] = 3323, - [3458] = 3321, - [3459] = 3459, - [3460] = 340, - [3461] = 332, - [3462] = 2505, - [3463] = 3463, - [3464] = 341, - [3465] = 350, - [3466] = 348, - [3467] = 1015, - [3468] = 3463, - [3469] = 345, - [3470] = 344, - [3471] = 3463, - [3472] = 3472, - [3473] = 337, - [3474] = 343, - [3475] = 342, - [3476] = 992, - [3477] = 330, - [3478] = 331, - [3479] = 3479, - [3480] = 338, - [3481] = 3463, - [3482] = 336, - [3483] = 3459, - [3484] = 3459, - [3485] = 334, - [3486] = 328, - [3487] = 335, - [3488] = 329, - [3489] = 351, - [3490] = 373, - [3491] = 3459, - [3492] = 3492, - [3493] = 3493, - [3494] = 374, - [3495] = 3492, - [3496] = 3492, - [3497] = 3493, - [3498] = 3492, - [3499] = 3493, - [3500] = 3500, - [3501] = 3501, - [3502] = 3493, - [3503] = 3492, - [3504] = 3504, - [3505] = 3493, - [3506] = 3492, + [3055] = 3055, + [3056] = 676, + [3057] = 3057, + [3058] = 3058, + [3059] = 3059, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 3065, + [3066] = 3066, + [3067] = 2433, + [3068] = 3068, + [3069] = 353, + [3070] = 349, + [3071] = 2625, + [3072] = 345, + [3073] = 350, + [3074] = 676, + [3075] = 354, + [3076] = 353, + [3077] = 2547, + [3078] = 2621, + [3079] = 342, + [3080] = 356, + [3081] = 339, + [3082] = 336, + [3083] = 351, + [3084] = 955, + [3085] = 349, + [3086] = 355, + [3087] = 339, + [3088] = 352, + [3089] = 370, + [3090] = 2512, + [3091] = 357, + [3092] = 2477, + [3093] = 343, + [3094] = 728, + [3095] = 730, + [3096] = 2476, + [3097] = 352, + [3098] = 354, + [3099] = 357, + [3100] = 677, + [3101] = 940, + [3102] = 355, + [3103] = 342, + [3104] = 340, + [3105] = 336, + [3106] = 347, + [3107] = 370, + [3108] = 3108, + [3109] = 356, + [3110] = 337, + [3111] = 346, + [3112] = 346, + [3113] = 337, + [3114] = 849, + [3115] = 2621, + [3116] = 385, + [3117] = 344, + [3118] = 340, + [3119] = 333, + [3120] = 347, + [3121] = 2478, + [3122] = 2454, + [3123] = 350, + [3124] = 331, + [3125] = 351, + [3126] = 345, + [3127] = 2625, + [3128] = 344, + [3129] = 343, + [3130] = 332, + [3131] = 342, + [3132] = 357, + [3133] = 2547, + [3134] = 340, + [3135] = 337, + [3136] = 349, + [3137] = 2725, + [3138] = 346, + [3139] = 336, + [3140] = 343, + [3141] = 347, + [3142] = 2512, + [3143] = 385, + [3144] = 385, + [3145] = 2625, + [3146] = 955, + [3147] = 370, + [3148] = 940, + [3149] = 353, + [3150] = 354, + [3151] = 351, + [3152] = 344, + [3153] = 345, + [3154] = 352, + [3155] = 2740, + [3156] = 350, + [3157] = 2621, + [3158] = 339, + [3159] = 319, + [3160] = 320, + [3161] = 2696, + [3162] = 355, + [3163] = 356, + [3164] = 2696, + [3165] = 1228, + [3166] = 1180, + [3167] = 385, + [3168] = 1002, + [3169] = 2779, + [3170] = 2769, + [3171] = 1003, + [3172] = 2811, + [3173] = 2725, + [3174] = 2803, + [3175] = 2740, + [3176] = 969, + [3177] = 2845, + [3178] = 2786, + [3179] = 2839, + [3180] = 2831, + [3181] = 2843, + [3182] = 2777, + [3183] = 2779, + [3184] = 2831, + [3185] = 2835, + [3186] = 2773, + [3187] = 2784, + [3188] = 2764, + [3189] = 2861, + [3190] = 2792, + [3191] = 2771, + [3192] = 2786, + [3193] = 2766, + [3194] = 2772, + [3195] = 2774, + [3196] = 2778, + [3197] = 2781, + [3198] = 2775, + [3199] = 2768, + [3200] = 2776, + [3201] = 2780, + [3202] = 3202, + [3203] = 2826, + [3204] = 3204, + [3205] = 2785, + [3206] = 2845, + [3207] = 2788, + [3208] = 2810, + [3209] = 2767, + [3210] = 2811, + [3211] = 2787, + [3212] = 2843, + [3213] = 2798, + [3214] = 2800, + [3215] = 1180, + [3216] = 2765, + [3217] = 1228, + [3218] = 2814, + [3219] = 2813, + [3220] = 2839, + [3221] = 2803, + [3222] = 2834, + [3223] = 2840, + [3224] = 2777, + [3225] = 2832, + [3226] = 2812, + [3227] = 2769, + [3228] = 2823, + [3229] = 2833, + [3230] = 2822, + [3231] = 319, + [3232] = 319, + [3233] = 3233, + [3234] = 3233, + [3235] = 3235, + [3236] = 320, + [3237] = 3233, + [3238] = 3235, + [3239] = 3235, + [3240] = 3233, + [3241] = 320, + [3242] = 3235, + [3243] = 3243, + [3244] = 3244, + [3245] = 3243, + [3246] = 3244, + [3247] = 3244, + [3248] = 3243, + [3249] = 3244, + [3250] = 3244, + [3251] = 3243, + [3252] = 3243, + [3253] = 3243, + [3254] = 3244, + [3255] = 3243, + [3256] = 3244, + [3257] = 3244, + [3258] = 3244, + [3259] = 3243, + [3260] = 3243, + [3261] = 3244, + [3262] = 3243, + [3263] = 3243, + [3264] = 3244, + [3265] = 3243, + [3266] = 3244, + [3267] = 3243, + [3268] = 3243, + [3269] = 3243, + [3270] = 3244, + [3271] = 3271, + [3272] = 3244, + [3273] = 3243, + [3274] = 3244, + [3275] = 3244, + [3276] = 3243, + [3277] = 3244, + [3278] = 3243, + [3279] = 3244, + [3280] = 3244, + [3281] = 3244, + [3282] = 3243, + [3283] = 3243, + [3284] = 3243, + [3285] = 3243, + [3286] = 3243, + [3287] = 3244, + [3288] = 3244, + [3289] = 3244, + [3290] = 3244, + [3291] = 3244, + [3292] = 3243, + [3293] = 3244, + [3294] = 3243, + [3295] = 3243, + [3296] = 3244, + [3297] = 3244, + [3298] = 3243, + [3299] = 3244, + [3300] = 3244, + [3301] = 330, + [3302] = 3244, + [3303] = 3243, + [3304] = 3243, + [3305] = 3243, + [3306] = 3243, + [3307] = 3243, + [3308] = 3244, + [3309] = 3243, + [3310] = 3244, + [3311] = 3244, + [3312] = 3243, + [3313] = 3244, + [3314] = 3244, + [3315] = 3244, + [3316] = 3243, + [3317] = 3243, + [3318] = 3243, + [3319] = 3244, + [3320] = 3244, + [3321] = 3244, + [3322] = 3243, + [3323] = 3243, + [3324] = 3243, + [3325] = 3244, + [3326] = 3243, + [3327] = 3244, + [3328] = 3244, + [3329] = 3243, + [3330] = 3244, + [3331] = 3244, + [3332] = 3243, + [3333] = 3243, + [3334] = 3243, + [3335] = 3335, + [3336] = 3336, + [3337] = 3337, + [3338] = 3336, + [3339] = 3337, + [3340] = 3336, + [3341] = 3335, + [3342] = 3337, + [3343] = 3336, + [3344] = 3335, + [3345] = 3336, + [3346] = 3335, + [3347] = 3336, + [3348] = 3336, + [3349] = 3337, + [3350] = 3336, + [3351] = 3337, + [3352] = 3337, + [3353] = 3336, + [3354] = 3337, + [3355] = 3336, + [3356] = 3336, + [3357] = 3337, + [3358] = 3335, + [3359] = 3335, + [3360] = 3335, + [3361] = 3335, + [3362] = 3337, + [3363] = 3336, + [3364] = 3336, + [3365] = 3337, + [3366] = 3335, + [3367] = 3335, + [3368] = 3336, + [3369] = 3335, + [3370] = 3337, + [3371] = 3337, + [3372] = 3336, + [3373] = 3337, + [3374] = 3336, + [3375] = 3335, + [3376] = 3337, + [3377] = 3337, + [3378] = 3335, + [3379] = 3336, + [3380] = 3336, + [3381] = 3337, + [3382] = 3335, + [3383] = 3336, + [3384] = 730, + [3385] = 3335, + [3386] = 3335, + [3387] = 3337, + [3388] = 728, + [3389] = 3337, + [3390] = 3336, + [3391] = 3337, + [3392] = 3337, + [3393] = 3335, + [3394] = 3336, + [3395] = 3335, + [3396] = 3336, + [3397] = 677, + [3398] = 3336, + [3399] = 3337, + [3400] = 3336, + [3401] = 676, + [3402] = 3335, + [3403] = 3337, + [3404] = 3337, + [3405] = 3337, + [3406] = 3336, + [3407] = 3336, + [3408] = 3335, + [3409] = 3337, + [3410] = 3335, + [3411] = 3337, + [3412] = 3335, + [3413] = 3336, + [3414] = 3337, + [3415] = 333, + [3416] = 3335, + [3417] = 3336, + [3418] = 3335, + [3419] = 3337, + [3420] = 332, + [3421] = 3337, + [3422] = 331, + [3423] = 3335, + [3424] = 3336, + [3425] = 3337, + [3426] = 3337, + [3427] = 3336, + [3428] = 3337, + [3429] = 3335, + [3430] = 3336, + [3431] = 3335, + [3432] = 3335, + [3433] = 3335, + [3434] = 3336, + [3435] = 3336, + [3436] = 3337, + [3437] = 3336, + [3438] = 3337, + [3439] = 3336, + [3440] = 3337, + [3441] = 3335, + [3442] = 3337, + [3443] = 3337, + [3444] = 3335, + [3445] = 3336, + [3446] = 3335, + [3447] = 3335, + [3448] = 3335, + [3449] = 3336, + [3450] = 3337, + [3451] = 3336, + [3452] = 3336, + [3453] = 3337, + [3454] = 3336, + [3455] = 3335, + [3456] = 3336, + [3457] = 3335, + [3458] = 3335, + [3459] = 3337, + [3460] = 3337, + [3461] = 3337, + [3462] = 3336, + [3463] = 3335, + [3464] = 3337, + [3465] = 3335, + [3466] = 3335, + [3467] = 3336, + [3468] = 3336, + [3469] = 3335, + [3470] = 3337, + [3471] = 3337, + [3472] = 3336, + [3473] = 342, + [3474] = 3474, + [3475] = 3475, + [3476] = 2621, + [3477] = 347, + [3478] = 352, + [3479] = 350, + [3480] = 370, + [3481] = 3475, + [3482] = 346, + [3483] = 3483, + [3484] = 3484, + [3485] = 940, + [3486] = 337, + [3487] = 340, + [3488] = 955, + [3489] = 343, + [3490] = 355, + [3491] = 356, + [3492] = 3484, + [3493] = 336, + [3494] = 353, + [3495] = 354, + [3496] = 3484, + [3497] = 357, + [3498] = 351, + [3499] = 344, + [3500] = 349, + [3501] = 3475, + [3502] = 345, + [3503] = 3475, + [3504] = 339, + [3505] = 3484, + [3506] = 3506, [3507] = 3507, - [3508] = 3492, - [3509] = 3493, - [3510] = 3493, - [3511] = 3493, - [3512] = 3493, - [3513] = 345, - [3514] = 3514, - [3515] = 3515, - [3516] = 3516, - [3517] = 331, - [3518] = 1092, - [3519] = 350, - [3520] = 348, - [3521] = 1103, - [3522] = 3522, - [3523] = 330, - [3524] = 344, - [3525] = 343, - [3526] = 342, - [3527] = 341, + [3508] = 3506, + [3509] = 3509, + [3510] = 3506, + [3511] = 3511, + [3512] = 3506, + [3513] = 3513, + [3514] = 3511, + [3515] = 3511, + [3516] = 3506, + [3517] = 3511, + [3518] = 3511, + [3519] = 3506, + [3520] = 385, + [3521] = 3521, + [3522] = 3506, + [3523] = 3511, + [3524] = 3506, + [3525] = 3506, + [3526] = 3511, + [3527] = 337, [3528] = 3528, - [3529] = 3529, - [3530] = 3530, - [3531] = 322, - [3532] = 324, + [3529] = 347, + [3530] = 1180, + [3531] = 351, + [3532] = 345, [3533] = 3533, - [3534] = 3534, - [3535] = 3533, - [3536] = 3536, - [3537] = 3536, - [3538] = 3533, - [3539] = 3534, - [3540] = 3534, - [3541] = 325, - [3542] = 3534, - [3543] = 3534, - [3544] = 3534, - [3545] = 3534, - [3546] = 3534, - [3547] = 3534, - [3548] = 3534, - [3549] = 3534, - [3550] = 3534, - [3551] = 3534, - [3552] = 3534, - [3553] = 3534, - [3554] = 3534, - [3555] = 321, - [3556] = 3534, - [3557] = 3534, - [3558] = 3534, - [3559] = 3536, - [3560] = 351, - [3561] = 3561, - [3562] = 348, - [3563] = 3561, - [3564] = 3564, - [3565] = 3565, - [3566] = 3566, - [3567] = 3561, - [3568] = 3565, - [3569] = 3564, - [3570] = 3566, - [3571] = 342, - [3572] = 3561, - [3573] = 3565, - [3574] = 3566, - [3575] = 343, - [3576] = 345, - [3577] = 3561, - [3578] = 3565, - [3579] = 3566, - [3580] = 344, - [3581] = 350, - [3582] = 341, - [3583] = 373, - [3584] = 330, - [3585] = 335, - [3586] = 329, - [3587] = 341, - [3588] = 328, - [3589] = 344, - [3590] = 342, - [3591] = 343, - [3592] = 337, - [3593] = 331, - [3594] = 334, - [3595] = 3564, - [3596] = 3566, - [3597] = 340, - [3598] = 3566, - [3599] = 336, - [3600] = 332, - [3601] = 3561, - [3602] = 3565, - [3603] = 345, - [3604] = 348, - [3605] = 350, - [3606] = 3565, - [3607] = 3561, - [3608] = 3565, - [3609] = 3566, - [3610] = 3565, - [3611] = 3566, - [3612] = 3561, - [3613] = 338, - [3614] = 322, - [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3618, - [3619] = 3619, - [3620] = 3620, - [3621] = 3615, - [3622] = 374, - [3623] = 3615, - [3624] = 3624, - [3625] = 3625, - [3626] = 3626, - [3627] = 322, + [3534] = 1228, + [3535] = 344, + [3536] = 343, + [3537] = 346, + [3538] = 3538, + [3539] = 3539, + [3540] = 340, + [3541] = 349, + [3542] = 3542, + [3543] = 3543, + [3544] = 330, + [3545] = 3545, + [3546] = 3546, + [3547] = 3546, + [3548] = 3546, + [3549] = 3549, + [3550] = 3546, + [3551] = 3546, + [3552] = 3546, + [3553] = 3546, + [3554] = 3546, + [3555] = 3549, + [3556] = 3546, + [3557] = 3546, + [3558] = 3546, + [3559] = 3546, + [3560] = 3560, + [3561] = 3546, + [3562] = 3560, + [3563] = 3546, + [3564] = 3560, + [3565] = 3546, + [3566] = 3546, + [3567] = 3546, + [3568] = 3546, + [3569] = 3549, + [3570] = 332, + [3571] = 331, + [3572] = 3546, + [3573] = 333, + [3574] = 3574, + [3575] = 350, + [3576] = 356, + [3577] = 343, + [3578] = 3578, + [3579] = 3579, + [3580] = 3574, + [3581] = 3574, + [3582] = 3578, + [3583] = 340, + [3584] = 337, + [3585] = 3579, + [3586] = 344, + [3587] = 3574, + [3588] = 3578, + [3589] = 3579, + [3590] = 345, + [3591] = 345, + [3592] = 340, + [3593] = 3574, + [3594] = 3578, + [3595] = 3579, + [3596] = 370, + [3597] = 337, + [3598] = 3578, + [3599] = 3599, + [3600] = 3574, + [3601] = 346, + [3602] = 346, + [3603] = 3574, + [3604] = 347, + [3605] = 347, + [3606] = 355, + [3607] = 3599, + [3608] = 353, + [3609] = 3579, + [3610] = 354, + [3611] = 342, + [3612] = 349, + [3613] = 344, + [3614] = 357, + [3615] = 343, + [3616] = 3599, + [3617] = 3579, + [3618] = 336, + [3619] = 3579, + [3620] = 3578, + [3621] = 3574, + [3622] = 3578, + [3623] = 3578, + [3624] = 351, + [3625] = 339, + [3626] = 3579, + [3627] = 352, [3628] = 3628, [3629] = 3629, [3630] = 3630, [3631] = 3631, - [3632] = 3632, + [3632] = 330, [3633] = 3633, - [3634] = 3618, + [3634] = 3634, [3635] = 3635, [3636] = 3636, [3637] = 3637, - [3638] = 3638, - [3639] = 3618, + [3638] = 330, + [3639] = 3630, [3640] = 3640, - [3641] = 324, + [3641] = 3641, [3642] = 3642, - [3643] = 3643, + [3643] = 3637, [3644] = 3644, - [3645] = 3645, + [3645] = 3637, [3646] = 3646, [3647] = 3647, [3648] = 3648, [3649] = 3649, - [3650] = 3650, - [3651] = 3651, + [3650] = 3630, + [3651] = 385, [3652] = 3652, [3653] = 3653, - [3654] = 3644, + [3654] = 3654, [3655] = 3655, - [3656] = 3653, + [3656] = 3656, [3657] = 3657, - [3658] = 1551, - [3659] = 3647, - [3660] = 1574, - [3661] = 3655, - [3662] = 1530, - [3663] = 321, - [3664] = 1525, - [3665] = 321, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3661, + [3662] = 3662, + [3663] = 3661, + [3664] = 3664, + [3665] = 3665, [3666] = 3666, - [3667] = 3667, + [3667] = 3654, [3668] = 3668, - [3669] = 3644, - [3670] = 325, - [3671] = 3653, + [3669] = 333, + [3670] = 332, + [3671] = 3671, [3672] = 3672, - [3673] = 3655, - [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3652, - [3678] = 3643, - [3679] = 3647, - [3680] = 3651, + [3673] = 331, + [3674] = 3671, + [3675] = 1585, + [3676] = 1586, + [3677] = 3659, + [3678] = 3678, + [3679] = 1604, + [3680] = 1596, [3681] = 3681, - [3682] = 3652, - [3683] = 3653, - [3684] = 3644, - [3685] = 3685, - [3686] = 3651, + [3682] = 3662, + [3683] = 3683, + [3684] = 3659, + [3685] = 3657, + [3686] = 3668, [3687] = 3687, - [3688] = 3647, - [3689] = 3689, + [3688] = 331, + [3689] = 3660, [3690] = 3690, - [3691] = 3667, - [3692] = 3652, - [3693] = 3651, - [3694] = 3694, - [3695] = 3643, - [3696] = 324, + [3691] = 3691, + [3692] = 3658, + [3693] = 332, + [3694] = 3661, + [3695] = 333, + [3696] = 3696, [3697] = 3697, - [3698] = 3694, - [3699] = 3694, - [3700] = 325, - [3701] = 3667, + [3698] = 3654, + [3699] = 3668, + [3700] = 3671, + [3701] = 3701, [3702] = 3702, - [3703] = 3643, - [3704] = 3704, - [3705] = 3705, - [3706] = 1697, - [3707] = 343, - [3708] = 3708, - [3709] = 336, - [3710] = 3710, - [3711] = 341, - [3712] = 344, - [3713] = 338, - [3714] = 3714, - [3715] = 342, + [3703] = 3703, + [3704] = 3658, + [3705] = 3654, + [3706] = 3661, + [3707] = 3660, + [3708] = 3657, + [3709] = 3709, + [3710] = 3662, + [3711] = 3659, + [3712] = 3712, + [3713] = 3713, + [3714] = 3662, + [3715] = 3715, [3716] = 3716, - [3717] = 341, - [3718] = 373, - [3719] = 345, - [3720] = 342, - [3721] = 343, + [3717] = 3717, + [3718] = 3657, + [3719] = 3660, + [3720] = 3720, + [3721] = 3721, [3722] = 3722, - [3723] = 338, - [3724] = 348, - [3725] = 350, - [3726] = 329, - [3727] = 328, - [3728] = 334, - [3729] = 328, - [3730] = 351, - [3731] = 344, - [3732] = 331, - [3733] = 345, - [3734] = 332, + [3723] = 3723, + [3724] = 3724, + [3725] = 3725, + [3726] = 3726, + [3727] = 3727, + [3728] = 3728, + [3729] = 3729, + [3730] = 3730, + [3731] = 3731, + [3732] = 3732, + [3733] = 337, + [3734] = 346, [3735] = 3735, - [3736] = 3736, - [3737] = 330, - [3738] = 3738, - [3739] = 3739, - [3740] = 340, - [3741] = 3741, + [3736] = 347, + [3737] = 356, + [3738] = 1713, + [3739] = 355, + [3740] = 1709, + [3741] = 1652, [3742] = 337, - [3743] = 336, - [3744] = 373, - [3745] = 335, - [3746] = 331, - [3747] = 329, - [3748] = 1630, - [3749] = 3749, - [3750] = 3750, - [3751] = 1646, - [3752] = 1695, - [3753] = 3714, - [3754] = 3754, - [3755] = 341, - [3756] = 342, - [3757] = 337, - [3758] = 340, - [3759] = 343, - [3760] = 332, - [3761] = 3761, - [3762] = 3762, - [3763] = 348, - [3764] = 334, - [3765] = 3765, - [3766] = 350, - [3767] = 3767, - [3768] = 3768, - [3769] = 330, + [3743] = 370, + [3744] = 1698, + [3745] = 3727, + [3746] = 3746, + [3747] = 351, + [3748] = 3748, + [3749] = 349, + [3750] = 340, + [3751] = 346, + [3752] = 343, + [3753] = 339, + [3754] = 357, + [3755] = 347, + [3756] = 354, + [3757] = 3757, + [3758] = 353, + [3759] = 336, + [3760] = 353, + [3761] = 336, + [3762] = 354, + [3763] = 357, + [3764] = 339, + [3765] = 349, + [3766] = 3766, + [3767] = 350, + [3768] = 344, + [3769] = 351, [3770] = 3770, - [3771] = 3714, - [3772] = 351, - [3773] = 335, + [3771] = 355, + [3772] = 3772, + [3773] = 340, [3774] = 3774, - [3775] = 3775, - [3776] = 3776, - [3777] = 3777, - [3778] = 3778, - [3779] = 3779, - [3780] = 3779, - [3781] = 3781, - [3782] = 3782, - [3783] = 3783, - [3784] = 3779, - [3785] = 3779, - [3786] = 3779, - [3787] = 3781, - [3788] = 3781, - [3789] = 3789, - [3790] = 3781, - [3791] = 374, - [3792] = 3792, + [3775] = 345, + [3776] = 356, + [3777] = 352, + [3778] = 370, + [3779] = 352, + [3780] = 3727, + [3781] = 347, + [3782] = 346, + [3783] = 343, + [3784] = 337, + [3785] = 350, + [3786] = 342, + [3787] = 344, + [3788] = 345, + [3789] = 342, + [3790] = 3790, + [3791] = 3791, + [3792] = 3791, [3793] = 3793, - [3794] = 3781, - [3795] = 3795, - [3796] = 3779, - [3797] = 3781, - [3798] = 3781, - [3799] = 3779, - [3800] = 3800, - [3801] = 3781, + [3794] = 3794, + [3795] = 3791, + [3796] = 3796, + [3797] = 3797, + [3798] = 3791, + [3799] = 3799, + [3800] = 3797, + [3801] = 3801, [3802] = 3802, - [3803] = 3803, + [3803] = 3791, [3804] = 3804, - [3805] = 3805, - [3806] = 3806, + [3805] = 3791, + [3806] = 3701, [3807] = 3807, - [3808] = 3808, - [3809] = 3697, - [3810] = 3781, - [3811] = 3779, + [3808] = 3791, + [3809] = 3797, + [3810] = 3791, + [3811] = 3811, [3812] = 3812, - [3813] = 3781, - [3814] = 3814, - [3815] = 3781, - [3816] = 3781, - [3817] = 3779, - [3818] = 3779, - [3819] = 3779, - [3820] = 374, - [3821] = 3781, - [3822] = 3781, - [3823] = 3781, + [3813] = 3791, + [3814] = 3797, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3791, + [3819] = 3791, + [3820] = 3791, + [3821] = 3797, + [3822] = 3822, + [3823] = 3823, [3824] = 3824, - [3825] = 3779, - [3826] = 3826, - [3827] = 3781, - [3828] = 3828, - [3829] = 3829, - [3830] = 3830, - [3831] = 3779, - [3832] = 3779, - [3833] = 3781, + [3825] = 3791, + [3826] = 3797, + [3827] = 3827, + [3828] = 3797, + [3829] = 3791, + [3830] = 3797, + [3831] = 3831, + [3832] = 3832, + [3833] = 3833, [3834] = 3834, - [3835] = 3835, - [3836] = 3836, - [3837] = 3781, - [3838] = 3781, + [3835] = 3797, + [3836] = 3791, + [3837] = 3791, + [3838] = 385, [3839] = 3839, - [3840] = 3779, - [3841] = 3781, - [3842] = 3842, - [3843] = 3779, - [3844] = 3781, - [3845] = 3845, - [3846] = 3697, + [3840] = 3797, + [3841] = 3791, + [3842] = 3811, + [3843] = 3843, + [3844] = 3844, + [3845] = 3791, + [3846] = 3791, [3847] = 3847, - [3848] = 3781, - [3849] = 3779, - [3850] = 3850, - [3851] = 3779, - [3852] = 3781, - [3853] = 3781, - [3854] = 3781, - [3855] = 3781, - [3856] = 3779, - [3857] = 3857, - [3858] = 3779, - [3859] = 3781, - [3860] = 3781, + [3848] = 3791, + [3849] = 3849, + [3850] = 3797, + [3851] = 3851, + [3852] = 3791, + [3853] = 3853, + [3854] = 3791, + [3855] = 3797, + [3856] = 3856, + [3857] = 3797, + [3858] = 3791, + [3859] = 3791, + [3860] = 3791, [3861] = 3861, - [3862] = 3862, - [3863] = 3863, - [3864] = 3781, - [3865] = 3781, - [3866] = 3866, + [3862] = 3791, + [3863] = 3797, + [3864] = 3864, + [3865] = 3791, + [3866] = 3791, [3867] = 3867, - [3868] = 3781, + [3868] = 3791, [3869] = 3869, - [3870] = 3836, - [3871] = 3779, - [3872] = 3781, - [3873] = 3845, - [3874] = 3845, - [3875] = 3875, - [3876] = 3876, - [3877] = 3781, - [3878] = 3781, - [3879] = 1551, - [3880] = 3880, - [3881] = 3881, + [3870] = 3797, + [3871] = 3797, + [3872] = 3797, + [3873] = 3791, + [3874] = 3791, + [3875] = 3791, + [3876] = 3797, + [3877] = 3797, + [3878] = 1585, + [3879] = 1586, + [3880] = 3811, + [3881] = 3797, [3882] = 3882, [3883] = 3883, - [3884] = 3884, + [3884] = 3791, [3885] = 3885, - [3886] = 3886, - [3887] = 3781, + [3886] = 3791, + [3887] = 3791, [3888] = 3888, - [3889] = 1525, - [3890] = 3890, + [3889] = 3791, + [3890] = 3847, [3891] = 3891, - [3892] = 1530, - [3893] = 3781, - [3894] = 3781, - [3895] = 3836, - [3896] = 3781, - [3897] = 1574, - [3898] = 3781, + [3892] = 3892, + [3893] = 3797, + [3894] = 3797, + [3895] = 3895, + [3896] = 3896, + [3897] = 3897, + [3898] = 3898, [3899] = 3899, [3900] = 3900, - [3901] = 3901, - [3902] = 3902, - [3903] = 3781, - [3904] = 3904, - [3905] = 3781, - [3906] = 3781, - [3907] = 3781, + [3901] = 3791, + [3902] = 3791, + [3903] = 3903, + [3904] = 1604, + [3905] = 3905, + [3906] = 1596, + [3907] = 3791, [3908] = 3908, - [3909] = 3779, - [3910] = 3779, + [3909] = 3847, + [3910] = 3910, [3911] = 3911, - [3912] = 3912, + [3912] = 3791, [3913] = 3913, [3914] = 3914, - [3915] = 3914, - [3916] = 3914, - [3917] = 3914, - [3918] = 3914, + [3915] = 3791, + [3916] = 385, + [3917] = 3791, + [3918] = 3791, [3919] = 3919, - [3920] = 1475, - [3921] = 3914, - [3922] = 3914, - [3923] = 3914, - [3924] = 3914, - [3925] = 3765, - [3926] = 3914, - [3927] = 3914, - [3928] = 3919, - [3929] = 1630, - [3930] = 3930, - [3931] = 3914, - [3932] = 3914, - [3933] = 1646, - [3934] = 3934, - [3935] = 3914, - [3936] = 3919, + [3920] = 3920, + [3921] = 3921, + [3922] = 3797, + [3923] = 3701, + [3924] = 3924, + [3925] = 3925, + [3926] = 3925, + [3927] = 3925, + [3928] = 3925, + [3929] = 3925, + [3930] = 3925, + [3931] = 3925, + [3932] = 1652, + [3933] = 3933, + [3934] = 3925, + [3935] = 3925, + [3936] = 3772, [3937] = 3937, - [3938] = 3914, - [3939] = 3939, - [3940] = 3914, - [3941] = 3914, - [3942] = 3914, - [3943] = 3919, - [3944] = 3914, - [3945] = 3919, - [3946] = 3939, - [3947] = 3919, - [3948] = 3919, - [3949] = 3914, - [3950] = 3919, - [3951] = 3914, - [3952] = 3930, - [3953] = 3919, - [3954] = 3934, - [3955] = 3955, - [3956] = 3914, - [3957] = 3934, - [3958] = 3708, - [3959] = 3914, - [3960] = 3914, - [3961] = 3919, - [3962] = 3710, - [3963] = 3914, - [3964] = 3710, - [3965] = 3914, - [3966] = 3939, - [3967] = 3919, - [3968] = 3914, - [3969] = 3919, - [3970] = 3914, - [3971] = 3914, - [3972] = 3919, - [3973] = 3914, - [3974] = 3914, - [3975] = 330, - [3976] = 3919, - [3977] = 3914, - [3978] = 331, - [3979] = 3708, - [3980] = 3914, - [3981] = 3919, - [3982] = 3919, - [3983] = 3914, - [3984] = 3914, - [3985] = 3919, - [3986] = 3914, - [3987] = 336, - [3988] = 3914, - [3989] = 338, - [3990] = 3919, - [3991] = 348, - [3992] = 350, - [3993] = 3914, - [3994] = 3914, - [3995] = 3914, - [3996] = 1697, - [3997] = 1695, - [3998] = 3914, - [3999] = 3919, - [4000] = 3919, - [4001] = 3765, - [4002] = 3914, - [4003] = 3914, - [4004] = 3919, - [4005] = 3914, - [4006] = 3919, - [4007] = 3914, - [4008] = 3919, - [4009] = 3914, - [4010] = 3914, - [4011] = 3930, - [4012] = 4012, - [4013] = 4013, - [4014] = 4014, - [4015] = 4015, - [4016] = 4016, - [4017] = 4017, - [4018] = 4012, - [4019] = 4019, - [4020] = 4013, - [4021] = 4015, - [4022] = 4022, - [4023] = 4013, - [4024] = 4024, - [4025] = 4019, + [3938] = 3925, + [3939] = 3933, + [3940] = 3925, + [3941] = 3925, + [3942] = 1698, + [3943] = 3933, + [3944] = 3925, + [3945] = 340, + [3946] = 3925, + [3947] = 3933, + [3948] = 3925, + [3949] = 3933, + [3950] = 3933, + [3951] = 3735, + [3952] = 3952, + [3953] = 3953, + [3954] = 3925, + [3955] = 3925, + [3956] = 3956, + [3957] = 3925, + [3958] = 3925, + [3959] = 3933, + [3960] = 3925, + [3961] = 3937, + [3962] = 3925, + [3963] = 3933, + [3964] = 3933, + [3965] = 3925, + [3966] = 3933, + [3967] = 1709, + [3968] = 1713, + [3969] = 3925, + [3970] = 3925, + [3971] = 3933, + [3972] = 3933, + [3973] = 3925, + [3974] = 3933, + [3975] = 3975, + [3976] = 3976, + [3977] = 3925, + [3978] = 343, + [3979] = 3925, + [3980] = 3772, + [3981] = 3925, + [3982] = 3746, + [3983] = 3937, + [3984] = 3925, + [3985] = 3933, + [3986] = 3925, + [3987] = 3925, + [3988] = 3956, + [3989] = 3933, + [3990] = 3956, + [3991] = 3925, + [3992] = 3925, + [3993] = 3933, + [3994] = 3746, + [3995] = 3933, + [3996] = 3925, + [3997] = 3997, + [3998] = 3933, + [3999] = 3925, + [4000] = 3975, + [4001] = 3933, + [4002] = 3925, + [4003] = 1428, + [4004] = 3925, + [4005] = 3925, + [4006] = 349, + [4007] = 3933, + [4008] = 351, + [4009] = 3925, + [4010] = 3925, + [4011] = 3735, + [4012] = 3933, + [4013] = 3925, + [4014] = 3925, + [4015] = 3975, + [4016] = 3933, + [4017] = 3925, + [4018] = 4018, + [4019] = 3925, + [4020] = 3925, + [4021] = 3925, + [4022] = 3933, + [4023] = 3925, + [4024] = 355, + [4025] = 356, [4026] = 4026, - [4027] = 4014, - [4028] = 4014, - [4029] = 4019, - [4030] = 4017, - [4031] = 4017, - [4032] = 4012, - [4033] = 4015, - [4034] = 4034, + [4027] = 4027, + [4028] = 4028, + [4029] = 4026, + [4030] = 4030, + [4031] = 4028, + [4032] = 4026, + [4033] = 4028, + [4034] = 4030, [4035] = 4035, - [4036] = 4019, - [4037] = 4019, - [4038] = 4026, - [4039] = 4012, - [4040] = 4017, - [4041] = 4019, - [4042] = 4013, - [4043] = 4015, - [4044] = 4014, - [4045] = 4019, - [4046] = 4019, - [4047] = 4015, - [4048] = 4015, - [4049] = 4015, - [4050] = 4019, - [4051] = 4015, - [4052] = 4052, - [4053] = 4017, - [4054] = 4019, - [4055] = 4017, - [4056] = 4014, - [4057] = 4014, - [4058] = 4013, - [4059] = 4059, - [4060] = 4014, - [4061] = 4017, - [4062] = 4026, - [4063] = 4019, - [4064] = 4026, - [4065] = 4026, - [4066] = 4066, - [4067] = 4067, - [4068] = 4068, - [4069] = 4012, - [4070] = 4015, - [4071] = 4012, - [4072] = 4019, - [4073] = 4013, - [4074] = 4015, - [4075] = 4012, - [4076] = 4017, - [4077] = 4013, - [4078] = 4014, - [4079] = 4019, - [4080] = 4019, - [4081] = 4026, - [4082] = 4017, - [4083] = 4014, - [4084] = 4015, - [4085] = 4012, + [4036] = 4026, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, + [4040] = 4040, + [4041] = 4026, + [4042] = 4042, + [4043] = 4026, + [4044] = 4037, + [4045] = 4045, + [4046] = 4026, + [4047] = 4047, + [4048] = 4040, + [4049] = 4040, + [4050] = 4026, + [4051] = 4030, + [4052] = 4039, + [4053] = 4053, + [4054] = 4038, + [4055] = 4028, + [4056] = 4047, + [4057] = 4047, + [4058] = 4030, + [4059] = 4026, + [4060] = 4026, + [4061] = 4061, + [4062] = 4045, + [4063] = 4063, + [4064] = 4064, + [4065] = 4047, + [4066] = 4047, + [4067] = 4042, + [4068] = 4026, + [4069] = 4042, + [4070] = 4040, + [4071] = 4042, + [4072] = 4072, + [4073] = 4042, + [4074] = 4039, + [4075] = 4028, + [4076] = 4039, + [4077] = 4026, + [4078] = 4039, + [4079] = 4079, + [4080] = 4080, + [4081] = 4027, + [4082] = 4040, + [4083] = 4047, + [4084] = 4026, + [4085] = 4028, [4086] = 4026, - [4087] = 4087, - [4088] = 4019, - [4089] = 4013, - [4090] = 4014, - [4091] = 4017, - [4092] = 4066, - [4093] = 4015, - [4094] = 4012, - [4095] = 4012, - [4096] = 4019, - [4097] = 4012, - [4098] = 4026, - [4099] = 4017, - [4100] = 4014, - [4101] = 4026, - [4102] = 4024, - [4103] = 4013, - [4104] = 4019, - [4105] = 4014, - [4106] = 4106, - [4107] = 4017, - [4108] = 4106, - [4109] = 4015, - [4110] = 4019, - [4111] = 4017, - [4112] = 4012, - [4113] = 4015, - [4114] = 4014, - [4115] = 4026, - [4116] = 4019, - [4117] = 4019, - [4118] = 4015, - [4119] = 4012, - [4120] = 4014, - [4121] = 4013, - [4122] = 4019, - [4123] = 4014, - [4124] = 4012, - [4125] = 4125, - [4126] = 4126, - [4127] = 4127, - [4128] = 4019, - [4129] = 4014, - [4130] = 4130, + [4087] = 4030, + [4088] = 4030, + [4089] = 4030, + [4090] = 4063, + [4091] = 4091, + [4092] = 4040, + [4093] = 4040, + [4094] = 4026, + [4095] = 4039, + [4096] = 4064, + [4097] = 4039, + [4098] = 4039, + [4099] = 4099, + [4100] = 4028, + [4101] = 4028, + [4102] = 4026, + [4103] = 4042, + [4104] = 4040, + [4105] = 4030, + [4106] = 4028, + [4107] = 4042, + [4108] = 4030, + [4109] = 4040, + [4110] = 4026, + [4111] = 4039, + [4112] = 4072, + [4113] = 4047, + [4114] = 4114, + [4115] = 4115, + [4116] = 4028, + [4117] = 4099, + [4118] = 4026, + [4119] = 4042, + [4120] = 4042, + [4121] = 4028, + [4122] = 4027, + [4123] = 4039, + [4124] = 4026, + [4125] = 4079, + [4126] = 4047, + [4127] = 4047, + [4128] = 4040, + [4129] = 4091, + [4130] = 4026, [4131] = 4131, [4132] = 4132, - [4133] = 4017, - [4134] = 4019, - [4135] = 4015, - [4136] = 4136, - [4137] = 4137, - [4138] = 4138, + [4133] = 4064, + [4134] = 4026, + [4135] = 4030, + [4136] = 4026, + [4137] = 4047, + [4138] = 4063, [4139] = 4139, - [4140] = 4019, - [4141] = 4012, - [4142] = 4015, - [4143] = 4143, - [4144] = 4012, - [4145] = 4145, - [4146] = 4019, - [4147] = 4017, - [4148] = 4148, - [4149] = 4149, - [4150] = 4150, - [4151] = 4151, - [4152] = 4019, - [4153] = 4016, - [4154] = 4154, - [4155] = 4155, + [4140] = 4047, + [4141] = 4030, + [4142] = 4026, + [4143] = 4040, + [4144] = 4039, + [4145] = 4039, + [4146] = 4028, + [4147] = 4042, + [4148] = 4026, + [4149] = 1003, + [4150] = 4047, + [4151] = 4053, + [4152] = 4028, + [4153] = 4047, + [4154] = 4061, + [4155] = 4079, [4156] = 4156, - [4157] = 4157, - [4158] = 4019, - [4159] = 4022, - [4160] = 4160, - [4161] = 4161, + [4157] = 4042, + [4158] = 4047, + [4159] = 4115, + [4160] = 4026, + [4161] = 4114, [4162] = 4162, - [4163] = 4163, - [4164] = 4019, - [4165] = 4014, + [4163] = 4042, + [4164] = 4028, + [4165] = 4039, [4166] = 4026, - [4167] = 4167, + [4167] = 4040, [4168] = 4168, - [4169] = 4017, - [4170] = 4019, - [4171] = 4013, - [4172] = 4172, - [4173] = 4014, - [4174] = 4015, - [4175] = 4175, - [4176] = 4019, + [4169] = 4169, + [4170] = 4170, + [4171] = 4171, + [4172] = 4026, + [4173] = 4173, + [4174] = 4174, + [4175] = 4040, + [4176] = 4176, [4177] = 4177, - [4178] = 4178, + [4178] = 4026, [4179] = 4179, - [4180] = 4068, - [4181] = 4026, - [4182] = 4019, - [4183] = 4012, - [4184] = 4013, - [4185] = 4013, + [4180] = 4180, + [4181] = 4040, + [4182] = 4182, + [4183] = 4030, + [4184] = 4026, + [4185] = 4185, [4186] = 4186, [4187] = 4187, - [4188] = 4019, - [4189] = 4013, + [4188] = 4188, + [4189] = 4189, [4190] = 4026, [4191] = 4191, - [4192] = 4014, - [4193] = 4017, - [4194] = 4019, - [4195] = 4013, - [4196] = 4012, - [4197] = 4015, - [4198] = 4015, - [4199] = 4177, - [4200] = 4019, - [4201] = 4026, - [4202] = 4014, - [4203] = 4017, - [4204] = 4012, - [4205] = 4012, - [4206] = 4019, - [4207] = 4015, - [4208] = 4208, - [4209] = 4015, - [4210] = 4012, - [4211] = 1005, - [4212] = 4019, - [4213] = 4017, - [4214] = 4014, - [4215] = 4017, - [4216] = 4015, - [4217] = 1002, - [4218] = 4019, - [4219] = 4219, - [4220] = 4012, - [4221] = 4013, - [4222] = 4066, - [4223] = 4068, - [4224] = 4019, - [4225] = 4014, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, + [4195] = 4195, + [4196] = 4026, + [4197] = 4197, + [4198] = 4198, + [4199] = 4199, + [4200] = 4039, + [4201] = 4201, + [4202] = 4026, + [4203] = 4099, + [4204] = 4030, + [4205] = 4205, + [4206] = 4040, + [4207] = 4207, + [4208] = 4026, + [4209] = 4209, + [4210] = 4210, + [4211] = 4211, + [4212] = 4028, + [4213] = 4042, + [4214] = 4026, + [4215] = 4042, + [4216] = 4030, + [4217] = 4131, + [4218] = 4047, + [4219] = 4040, + [4220] = 4026, + [4221] = 4132, + [4222] = 4042, + [4223] = 4053, + [4224] = 1002, + [4225] = 4028, [4226] = 4026, - [4227] = 4013, - [4228] = 4013, - [4229] = 4013, - [4230] = 4015, - [4231] = 4026, - [4232] = 4232, - [4233] = 4233, - [4234] = 4014, - [4235] = 4017, - [4236] = 4168, - [4237] = 4087, - [4238] = 4035, - [4239] = 4012, - [4240] = 4012, - [4241] = 4016, + [4227] = 4039, + [4228] = 4139, + [4229] = 4039, + [4230] = 4028, + [4231] = 4042, + [4232] = 4026, + [4233] = 4042, + [4234] = 4028, + [4235] = 4039, + [4236] = 4047, + [4237] = 4040, + [4238] = 4026, + [4239] = 4040, + [4240] = 4030, + [4241] = 4030, [4242] = 4242, - [4243] = 4015, - [4244] = 4015, - [4245] = 4017, - [4246] = 4014, + [4243] = 4243, + [4244] = 4047, + [4245] = 4115, + [4246] = 4114, [4247] = 4247, - [4248] = 4024, - [4249] = 4249, + [4248] = 4030, + [4249] = 4026, [4250] = 4250, - [4251] = 4251, - [4252] = 4022, - [4253] = 4253, - [4254] = 4254, - [4255] = 4015, - [4256] = 4034, - [4257] = 4257, - [4258] = 4258, - [4259] = 4026, - [4260] = 4052, - [4261] = 4012, - [4262] = 4013, - [4263] = 4067, - [4264] = 4264, - [4265] = 4242, - [4266] = 4017, - [4267] = 4106, - [4268] = 4013, - [4269] = 4015, - [4270] = 4014, - [4271] = 4012, - [4272] = 4186, - [4273] = 4191, - [4274] = 4026, - [4275] = 4012, - [4276] = 4014, + [4251] = 4030, + [4252] = 4039, + [4253] = 4040, + [4254] = 4047, + [4255] = 4255, + [4256] = 4028, + [4257] = 4042, + [4258] = 4047, + [4259] = 4042, + [4260] = 4047, + [4261] = 4030, + [4262] = 4262, + [4263] = 4028, + [4264] = 4039, + [4265] = 4039, + [4266] = 4040, + [4267] = 4267, + [4268] = 4040, + [4269] = 4269, + [4270] = 4270, + [4271] = 4271, + [4272] = 4114, + [4273] = 4273, + [4274] = 4274, + [4275] = 4061, + [4276] = 4030, [4277] = 4277, [4278] = 4278, - [4279] = 4279, - [4280] = 4280, - [4281] = 4281, + [4279] = 4115, + [4280] = 4028, + [4281] = 4042, [4282] = 4282, - [4283] = 4283, + [4283] = 4038, [4284] = 4284, - [4285] = 4285, - [4286] = 4286, - [4287] = 4287, - [4288] = 4288, - [4289] = 4017, - [4290] = 4017, - [4291] = 4012, - [4292] = 4292, - [4293] = 4014, - [4294] = 4066, - [4295] = 4026, - [4296] = 4068, - [4297] = 4012, - [4298] = 4026, + [4285] = 4262, + [4286] = 4039, + [4287] = 4037, + [4288] = 4045, + [4289] = 4047, + [4290] = 4047, + [4291] = 4063, + [4292] = 4064, + [4293] = 4047, + [4294] = 4039, + [4295] = 4072, + [4296] = 4042, + [4297] = 4297, + [4298] = 4298, [4299] = 4299, - [4300] = 4026, - [4301] = 4014, - [4302] = 4299, - [4303] = 4017, + [4300] = 4300, + [4301] = 4301, + [4302] = 4302, + [4303] = 4303, [4304] = 4304, - [4305] = 4186, - [4306] = 4015, - [4307] = 4304, + [4305] = 4305, + [4306] = 4306, + [4307] = 4307, [4308] = 4308, - [4309] = 4013, - [4310] = 4019, - [4311] = 4311, - [4312] = 4013, - [4313] = 4313, - [4314] = 4232, - [4315] = 4233, - [4316] = 4014, - [4317] = 4026, - [4318] = 4015, - [4319] = 4168, - [4320] = 4087, - [4321] = 4035, - [4322] = 4012, - [4323] = 4017, - [4324] = 4016, - [4325] = 4022, - [4326] = 4013, - [4327] = 4014, - [4328] = 4015, - [4329] = 4034, - [4330] = 4014, - [4331] = 4026, - [4332] = 4014, - [4333] = 4308, - [4334] = 4017, - [4335] = 4052, - [4336] = 4026, - [4337] = 4012, - [4338] = 4015, - [4339] = 4017, - [4340] = 4012, - [4341] = 4017, - [4342] = 4219, - [4343] = 4313, - [4344] = 4313, - [4345] = 4249, - [4346] = 4019, - [4347] = 4013, - [4348] = 4067, - [4349] = 4253, - [4350] = 4014, - [4351] = 4026, - [4352] = 4219, - [4353] = 4257, - [4354] = 4012, - [4355] = 4019, - [4356] = 4015, - [4357] = 4191, - [4358] = 4257, - [4359] = 4012, - [4360] = 4242, - [4361] = 4017, - [4362] = 4177, - [4363] = 4013, - [4364] = 4014, - [4365] = 4015, - [4366] = 4015, - [4367] = 4013, - [4368] = 4066, - [4369] = 4068, - [4370] = 4026, - [4371] = 4313, - [4372] = 4026, - [4373] = 4014, - [4374] = 4017, - [4375] = 4012, - [4376] = 4014, - [4377] = 4017, - [4378] = 4015, - [4379] = 4026, - [4380] = 4015, - [4381] = 4012, - [4382] = 4015, - [4383] = 4308, - [4384] = 4013, - [4385] = 4026, - [4386] = 4014, - [4387] = 4017, - [4388] = 4012, - [4389] = 4015, - [4390] = 4017, - [4391] = 4012, - [4392] = 4017, - [4393] = 4014, - [4394] = 4015, - [4395] = 4012, - [4396] = 4017, - [4397] = 4311, - [4398] = 4013, - [4399] = 4304, - [4400] = 4014, - [4401] = 4233, - [4402] = 4026, - [4403] = 4026, - [4404] = 4311, - [4405] = 4014, - [4406] = 4017, - [4407] = 4013, - [4408] = 4026, - [4409] = 4012, - [4410] = 4015, - [4411] = 4232, - [4412] = 4015, - [4413] = 4253, - [4414] = 4012, - [4415] = 4013, - [4416] = 4257, - [4417] = 4253, - [4418] = 4017, - [4419] = 4014, - [4420] = 4420, - [4421] = 351, - [4422] = 4422, - [4423] = 4242, - [4424] = 4026, - [4425] = 328, - [4426] = 4015, - [4427] = 334, - [4428] = 342, - [4429] = 4012, - [4430] = 4013, - [4431] = 4015, - [4432] = 341, - [4433] = 4012, - [4434] = 343, - [4435] = 4013, - [4436] = 4017, - [4437] = 4012, - [4438] = 4026, - [4439] = 4014, - [4440] = 4017, - [4441] = 4253, - [4442] = 4017, - [4443] = 4014, - [4444] = 4012, - [4445] = 4015, - [4446] = 4026, - [4447] = 4026, - [4448] = 4448, - [4449] = 4026, - [4450] = 4013, - [4451] = 4013, - [4452] = 4015, - [4453] = 4017, - [4454] = 4013, - [4455] = 4015, - [4456] = 4017, - [4457] = 4013, - [4458] = 4012, - [4459] = 4014, - [4460] = 4026, - [4461] = 4014, - [4462] = 4017, - [4463] = 4017, - [4464] = 4253, - [4465] = 4253, - [4466] = 4253, - [4467] = 4253, - [4468] = 4253, - [4469] = 4253, - [4470] = 4253, - [4471] = 4253, - [4472] = 4253, - [4473] = 4253, - [4474] = 4253, - [4475] = 4253, - [4476] = 4253, - [4477] = 4253, - [4478] = 4253, - [4479] = 4253, - [4480] = 4253, - [4481] = 4253, - [4482] = 4253, - [4483] = 4253, - [4484] = 4253, - [4485] = 4253, - [4486] = 4253, - [4487] = 4253, - [4488] = 4253, - [4489] = 4253, - [4490] = 4253, - [4491] = 4253, - [4492] = 4253, - [4493] = 4253, - [4494] = 4253, - [4495] = 4253, - [4496] = 4253, - [4497] = 4253, - [4498] = 4253, - [4499] = 4253, - [4500] = 4500, - [4501] = 4012, - [4502] = 4015, - [4503] = 4014, - [4504] = 4504, - [4505] = 4026, - [4506] = 4299, - [4507] = 4026, - [4508] = 4500, - [4509] = 4013, - [4510] = 4024, - [4511] = 4013, - [4512] = 4106, - [4513] = 4219, - [4514] = 4500, - [4515] = 4015, - [4516] = 4013, - [4517] = 4013, - [4518] = 4500, - [4519] = 4012, - [4520] = 4026, - [4521] = 4014, - [4522] = 4500, - [4523] = 4500, - [4524] = 4500, - [4525] = 4500, - [4526] = 4500, - [4527] = 4500, - [4528] = 4500, - [4529] = 4500, - [4530] = 4500, - [4531] = 4500, - [4532] = 4500, - [4533] = 4500, - [4534] = 4500, - [4535] = 4500, - [4536] = 4500, - [4537] = 4500, - [4538] = 4500, - [4539] = 4500, - [4540] = 4500, - [4541] = 4500, - [4542] = 4500, - [4543] = 4500, - [4544] = 4500, - [4545] = 4500, - [4546] = 4500, - [4547] = 4500, - [4548] = 4500, - [4549] = 4500, - [4550] = 4500, - [4551] = 4500, - [4552] = 4500, - [4553] = 4500, - [4554] = 4500, - [4555] = 4500, - [4556] = 4500, - [4557] = 4500, - [4558] = 4219, - [4559] = 4313, - [4560] = 4017, - [4561] = 4219, - [4562] = 4313, - [4563] = 4249, - [4564] = 4219, - [4565] = 4313, - [4566] = 4017, - [4567] = 4219, - [4568] = 4313, - [4569] = 4500, - [4570] = 4014, + [4309] = 4042, + [4310] = 4028, + [4311] = 4039, + [4312] = 4312, + [4313] = 4028, + [4314] = 4040, + [4315] = 4030, + [4316] = 4091, + [4317] = 4042, + [4318] = 4047, + [4319] = 4039, + [4320] = 4028, + [4321] = 4030, + [4322] = 4242, + [4323] = 4040, + [4324] = 4030, + [4325] = 4040, + [4326] = 4131, + [4327] = 4039, + [4328] = 4132, + [4329] = 4047, + [4330] = 4243, + [4331] = 4139, + [4332] = 4028, + [4333] = 4042, + [4334] = 4047, + [4335] = 4115, + [4336] = 4114, + [4337] = 4042, + [4338] = 352, + [4339] = 4028, + [4340] = 4039, + [4341] = 4030, + [4342] = 4039, + [4343] = 4047, + [4344] = 4040, + [4345] = 4030, + [4346] = 4030, + [4347] = 4042, + [4348] = 4028, + [4349] = 4039, + [4350] = 4040, + [4351] = 4030, + [4352] = 4030, + [4353] = 4040, + [4354] = 4040, + [4355] = 4040, + [4356] = 4030, + [4357] = 4028, + [4358] = 4039, + [4359] = 4042, + [4360] = 4028, + [4361] = 4042, + [4362] = 4282, + [4363] = 4255, + [4364] = 4039, + [4365] = 4269, + [4366] = 4247, + [4367] = 4047, + [4368] = 4028, + [4369] = 4273, + [4370] = 4042, + [4371] = 4026, + [4372] = 4047, + [4373] = 4277, + [4374] = 4250, + [4375] = 4047, + [4376] = 4030, + [4377] = 4042, + [4378] = 4040, + [4379] = 4039, + [4380] = 4262, + [4381] = 4028, + [4382] = 4028, + [4383] = 4042, + [4384] = 4099, + [4385] = 4039, + [4386] = 342, + [4387] = 4047, + [4388] = 4047, + [4389] = 4040, + [4390] = 4030, + [4391] = 4047, + [4392] = 4277, + [4393] = 4030, + [4394] = 4255, + [4395] = 4042, + [4396] = 4028, + [4397] = 4039, + [4398] = 4040, + [4399] = 350, + [4400] = 4079, + [4401] = 4030, + [4402] = 4040, + [4403] = 4039, + [4404] = 4028, + [4405] = 4047, + [4406] = 4242, + [4407] = 4042, + [4408] = 4028, + [4409] = 4243, + [4410] = 4247, + [4411] = 4042, + [4412] = 4026, + [4413] = 4255, + [4414] = 4028, + [4415] = 4042, + [4416] = 4030, + [4417] = 4040, + [4418] = 4039, + [4419] = 4030, + [4420] = 4030, + [4421] = 4040, + [4422] = 4039, + [4423] = 4040, + [4424] = 4028, + [4425] = 4040, + [4426] = 4028, + [4427] = 4250, + [4428] = 4042, + [4429] = 4030, + [4430] = 4040, + [4431] = 4282, + [4432] = 4039, + [4433] = 4273, + [4434] = 4047, + [4435] = 4030, + [4436] = 4277, + [4437] = 4273, + [4438] = 4042, + [4439] = 4028, + [4440] = 4028, + [4441] = 4039, + [4442] = 4039, + [4443] = 4262, + [4444] = 4028, + [4445] = 4040, + [4446] = 4040, + [4447] = 4028, + [4448] = 4039, + [4449] = 4042, + [4450] = 4040, + [4451] = 4030, + [4452] = 337, + [4453] = 346, + [4454] = 347, + [4455] = 4030, + [4456] = 4028, + [4457] = 4047, + [4458] = 4039, + [4459] = 4030, + [4460] = 4040, + [4461] = 4273, + [4462] = 4030, + [4463] = 4040, + [4464] = 4039, + [4465] = 4047, + [4466] = 4039, + [4467] = 4028, + [4468] = 4468, + [4469] = 4039, + [4470] = 4042, + [4471] = 4028, + [4472] = 4039, + [4473] = 4028, + [4474] = 4040, + [4475] = 4030, + [4476] = 4042, + [4477] = 4030, + [4478] = 4040, + [4479] = 4030, + [4480] = 4040, + [4481] = 4028, + [4482] = 4039, + [4483] = 4040, + [4484] = 4273, + [4485] = 4273, + [4486] = 4273, + [4487] = 4273, + [4488] = 4273, + [4489] = 4273, + [4490] = 4273, + [4491] = 4273, + [4492] = 4273, + [4493] = 4273, + [4494] = 4273, + [4495] = 4273, + [4496] = 4273, + [4497] = 4273, + [4498] = 4273, + [4499] = 4273, + [4500] = 4273, + [4501] = 4273, + [4502] = 4273, + [4503] = 4273, + [4504] = 4273, + [4505] = 4273, + [4506] = 4273, + [4507] = 4273, + [4508] = 4273, + [4509] = 4273, + [4510] = 4273, + [4511] = 4273, + [4512] = 4273, + [4513] = 4273, + [4514] = 4273, + [4515] = 4273, + [4516] = 4273, + [4517] = 4273, + [4518] = 4273, + [4519] = 4273, + [4520] = 4520, + [4521] = 4047, + [4522] = 4030, + [4523] = 4047, + [4524] = 4524, + [4525] = 4047, + [4526] = 4042, + [4527] = 4028, + [4528] = 4520, + [4529] = 4028, + [4530] = 4039, + [4531] = 4030, + [4532] = 4040, + [4533] = 4030, + [4534] = 4520, + [4535] = 4040, + [4536] = 4039, + [4537] = 4039, + [4538] = 4520, + [4539] = 4039, + [4540] = 4047, + [4541] = 4040, + [4542] = 4520, + [4543] = 4520, + [4544] = 4520, + [4545] = 4520, + [4546] = 4520, + [4547] = 4520, + [4548] = 4520, + [4549] = 4520, + [4550] = 4520, + [4551] = 4520, + [4552] = 4520, + [4553] = 4520, + [4554] = 4520, + [4555] = 4520, + [4556] = 4520, + [4557] = 4520, + [4558] = 4520, + [4559] = 4520, + [4560] = 4520, + [4561] = 4520, + [4562] = 4520, + [4563] = 4520, + [4564] = 4520, + [4565] = 4520, + [4566] = 4520, + [4567] = 4520, + [4568] = 4520, + [4569] = 4520, + [4570] = 4520, + [4571] = 4520, + [4572] = 4520, + [4573] = 4520, + [4574] = 4520, + [4575] = 4520, + [4576] = 4520, + [4577] = 4520, + [4578] = 4282, + [4579] = 4255, + [4580] = 4282, + [4581] = 4282, + [4582] = 4255, + [4583] = 4269, + [4584] = 4282, + [4585] = 4255, + [4586] = 4030, + [4587] = 4282, + [4588] = 4255, + [4589] = 4520, + [4590] = 4028, }; static inline bool sym_word_character_set_1(int32_t c) { @@ -7114,11 +7134,11 @@ static inline bool sym_word_character_set_3(int32_t c) { ? c == 0 : c <= '\r') : (c <= ' ' || c == '"')) - : (c <= '$' || (c < '[' - ? (c < ';' - ? (c >= '&' && c <= ')') - : c <= '>') - : (c <= ']' || (c >= '`' && c <= '}'))))); + : (c <= ')' || (c < '`' + ? (c < '[' + ? (c >= ';' && c <= '>') + : c <= ']') + : (c <= '`' || (c >= '{' && c <= '}'))))); } static inline bool sym_word_character_set_4(int32_t c) { @@ -7138,20 +7158,6 @@ static inline bool sym_word_character_set_4(int32_t c) { } static inline bool sym_word_character_set_5(int32_t c) { - return (c < '$' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '`' - ? (c < '[' - ? (c >= ';' && c <= '>') - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_6(int32_t c) { return (c < ';' ? (c < ' ' ? (c < '\t' @@ -7167,7 +7173,7 @@ static inline bool sym_word_character_set_6(int32_t c) { : (c <= '`' || (c >= '{' && c <= '}'))))); } -static inline bool sym_word_character_set_7(int32_t c) { +static inline bool sym_word_character_set_6(int32_t c) { return (c < '&' ? (c < ' ' ? (c < '\t' @@ -7186,44 +7192,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(438); - if (lookahead == '!') ADVANCE(686); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(691); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(508); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(684); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(689); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(690); - if (lookahead == '+') ADVANCE(635); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(688); + if (lookahead == '+') ADVANCE(633); if (lookahead == ',') ADVANCE(448); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '.') ADVANCE(797); - if (lookahead == '/') ADVANCE(504); - if (lookahead == '0') ADVANCE(792); - if (lookahead == ':') ADVANCE(629); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '.') ADVANCE(795); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ':') ADVANCE(628); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(518); - if (lookahead == '=') ADVANCE(693); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(703); - if (lookahead == '@') ADVANCE(688); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '=') ADVANCE(691); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(701); + if (lookahead == '@') ADVANCE(686); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(332); - if (lookahead == ']') ADVANCE(557); - if (lookahead == '^') ADVANCE(622); - if (lookahead == '_') ADVANCE(794); - if (lookahead == '`') ADVANCE(724); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == 'i') ADVANCE(803); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '|') ADVANCE(540); - if (lookahead == '}') ADVANCE(644); - if (lookahead == '~') ADVANCE(637); + if (lookahead == ']') ADVANCE(556); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(722); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == 'i') ADVANCE(801); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '}') ADVANCE(642); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 1: if (lookahead == '\n') SKIP(183) @@ -7238,39 +7244,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(5) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(568); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(567); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(335); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(540); - if (lookahead == '~') ADVANCE(637); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 6: if (lookahead == '\n') SKIP(198) @@ -7291,63 +7297,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(188) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(569); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(499); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(290); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(540); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(748); + if (lookahead == '\n') ADVANCE(746); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(788); + if (lookahead == '\n') ADVANCE(786); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(788); + if (lookahead == '\n') ADVANCE(786); if (lookahead == '\r') ADVANCE(14); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(788); + if (lookahead == '\n') ADVANCE(786); if (lookahead == '\r') ADVANCE(14); if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(806); + (lookahead < '\t' || '\f' < lookahead)) ADVANCE(804); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(769); + if (lookahead == '\n') SKIP(110) END_STATE(); case 18: - if (lookahead == '\n') SKIP(110) + if (lookahead == '\n') ADVANCE(767); END_STATE(); case 19: if (lookahead == '\n') SKIP(203) @@ -7356,94 +7362,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(199) END_STATE(); case 21: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(150) END_STATE(); case 22: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(153) END_STATE(); case 23: - if (lookahead == '\n') SKIP(149) + if (lookahead == '\n') SKIP(156) END_STATE(); case 24: - if (lookahead == '\n') SKIP(153) + if (lookahead == '\n') SKIP(159) END_STATE(); case 25: - if (lookahead == '\n') SKIP(156) + if (lookahead == '\n') SKIP(162) END_STATE(); case 26: if (lookahead == '\n') ADVANCE(750); END_STATE(); case 27: - if (lookahead == '\n') SKIP(159) + if (lookahead == '\n') ADVANCE(752); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(753); + if (lookahead == '\n') SKIP(164) END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(755); + if (lookahead == '\n') ADVANCE(754); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(759); + if (lookahead == '\n') ADVANCE(756); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(761); + if (lookahead == '\n') ADVANCE(760); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(763); + if (lookahead == '\n') ADVANCE(762); END_STATE(); case 33: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(235) END_STATE(); case 34: - if (lookahead == '\n') SKIP(236) + if (lookahead == '\n') SKIP(243) END_STATE(); case 35: - if (lookahead == '\n') SKIP(162) + if (lookahead == '\n') SKIP(239) END_STATE(); case 36: - if (lookahead == '\n') SKIP(240) + if (lookahead == '\n') SKIP(166) END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(766); + if (lookahead == '\n') ADVANCE(764); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(771); + if (lookahead == '\n') SKIP(168) END_STATE(); case 39: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') ADVANCE(769); END_STATE(); case 40: - if (lookahead == '\n') SKIP(169) + if (lookahead == '\n') ADVANCE(765); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(779); + if (lookahead == '\n') ADVANCE(773); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(767); + if (lookahead == '\n') SKIP(171) END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(772); + if (lookahead == '\n') ADVANCE(770); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(775); + if (lookahead == '\n') ADVANCE(777); END_STATE(); case 45: - if (lookahead == '\n') ADVANCE(773); + if (lookahead == '\n') ADVANCE(771); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(778); + if (lookahead == '\n') ADVANCE(776); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\n') ADVANCE(779); END_STATE(); case 48: - if (lookahead == '\n') SKIP(235) + if (lookahead == '\n') SKIP(234) END_STATE(); case 49: if (lookahead == '\n') SKIP(202) END_STATE(); case 50: - if (lookahead == '\n') SKIP(243) + if (lookahead == '\n') SKIP(242) END_STATE(); case 51: if (lookahead == '\n') SKIP(215) @@ -7455,276 +7461,254 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(216) END_STATE(); case 54: - if (lookahead == '\n') SKIP(220) + if (lookahead == '\n') SKIP(218) END_STATE(); case 55: - if (lookahead == '\n') SKIP(241) + if (lookahead == '\n') SKIP(180) END_STATE(); case 56: if (lookahead == '\n') SKIP(212) END_STATE(); case 57: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(240) END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(770); + if (lookahead == '\n') ADVANCE(768); END_STATE(); case 59: - if (lookahead == '\n') SKIP(219) + if (lookahead == '\n') ADVANCE(747); END_STATE(); case 60: - if (lookahead == '\n') ADVANCE(570); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == '_') ADVANCE(796); - if (lookahead == 'e') ADVANCE(745); - if (lookahead == '|') ADVANCE(541); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + if (lookahead == '\n') ADVANCE(749); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(749); + if (lookahead == '\n') SKIP(217) END_STATE(); case 62: - if (lookahead == '\n') SKIP(218) + if (lookahead == '\n') SKIP(245) END_STATE(); case 63: - if (lookahead == '\n') ADVANCE(752); + if (lookahead == '\n') ADVANCE(751); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(754); + if (lookahead == '\n') ADVANCE(755); END_STATE(); case 65: - if (lookahead == '\n') SKIP(246) + if (lookahead == '\n') SKIP(181) END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(758); + if (lookahead == '\n') SKIP(67) END_STATE(); case 67: - if (lookahead == '\n') SKIP(181) - END_STATE(); - case 68: - if (lookahead == '\n') SKIP(256) - END_STATE(); - case 69: - if (lookahead == '\n') SKIP(70) - END_STATE(); - case 70: - if (lookahead == '\n') ADVANCE(571); + if (lookahead == '\n') ADVANCE(569); if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(501); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(500); if (lookahead == '+') ADVANCE(491); if (lookahead == ',') ADVANCE(447); if (lookahead == '-') ADVANCE(494); - if (lookahead == '/') ADVANCE(507); + if (lookahead == '/') ADVANCE(506); if (lookahead == ';') ADVANCE(444); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(452); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '\\') SKIP(372) + if (lookahead == '>') ADVANCE(526); + if (lookahead == '\\') SKIP(370) if (lookahead == '^') ADVANCE(282); if (lookahead == '|') ADVANCE(279); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70) + lookahead == ' ') SKIP(67) END_STATE(); - case 71: - if (lookahead == '\n') ADVANCE(571); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '&') ADVANCE(618); - if (lookahead == '(') ADVANCE(528); + case 68: + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(649); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '(') ADVANCE(527); if (lookahead == '+') ADVANCE(274); if (lookahead == ',') ADVANCE(447); if (lookahead == '-') ADVANCE(276); - if (lookahead == '0') ADVANCE(674); + if (lookahead == '0') ADVANCE(672); if (lookahead == ';') ADVANCE(444); if (lookahead == '\\') SKIP(377) - if (lookahead == '`') ADVANCE(723); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(71) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + lookahead == ' ') SKIP(68) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(532); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 72: - if (lookahead == '\n') ADVANCE(571); - if (lookahead == '#') ADVANCE(730); + case 69: + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '#') ADVANCE(728); if (lookahead == '$') ADVANCE(271); if (lookahead == '(') ADVANCE(267); if (lookahead == '-') ADVANCE(278); - if (lookahead == '0') ADVANCE(675); - if (lookahead == '\\') SKIP(389) - if (lookahead == '}') ADVANCE(684); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '\\') SKIP(390) + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(69) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 73: - if (lookahead == '\n') ADVANCE(571); - if (lookahead == '#') ADVANCE(730); + case 70: + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '#') ADVANCE(728); if (lookahead == '&') ADVANCE(283); - if (lookahead == '<') ADVANCE(516); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '>') ADVANCE(524); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') SKIP(385) + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') SKIP(386) if (lookahead == '`') ADVANCE(285); - if (lookahead == '|') ADVANCE(539); + if (lookahead == '|') ADVANCE(538); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(73) + lookahead == ' ') SKIP(70) END_STATE(); - case 74: - if (lookahead == '\n') ADVANCE(571); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '&') ADVANCE(621); + case 71: + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '&') ADVANCE(620); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') SKIP(378) + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') SKIP(379) if (lookahead == '`') ADVANCE(285); if (lookahead == 'e') ADVANCE(289); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) + lookahead == ' ') SKIP(71) END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(571); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '&') ADVANCE(618); + case 72: + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '&') ADVANCE(617); if (lookahead == ';') ADVANCE(446); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') SKIP(390) + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') SKIP(391) if (lookahead == '`') ADVANCE(285); if (lookahead == 'i') ADVANCE(288); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(75) + lookahead == ' ') SKIP(72) + END_STATE(); + case 73: + if (lookahead == '\n') SKIP(255) + END_STATE(); + case 74: + if (lookahead == '\n') SKIP(250) + END_STATE(); + case 75: + if (lookahead == '\n') ADVANCE(766); END_STATE(); case 76: - if (lookahead == '\n') SKIP(251) + if (lookahead == '\n') SKIP(220) END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(768); + if (lookahead == '\n') SKIP(221) END_STATE(); case 78: - if (lookahead == '\n') SKIP(221) + if (lookahead == '\n') ADVANCE(757); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(760); + if (lookahead == '\n') ADVANCE(780); END_STATE(); case 80: - if (lookahead == '\n') SKIP(247) + if (lookahead == '\n') ADVANCE(772); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(774); + if (lookahead == '\n') SKIP(246) END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(782); + if (lookahead == '\n') ADVANCE(781); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(783); + if (lookahead == '\n') SKIP(251) END_STATE(); case 84: - if (lookahead == '\n') SKIP(252) + if (lookahead == '\n') SKIP(68) END_STATE(); case 85: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(232) END_STATE(); case 86: - if (lookahead == '\n') SKIP(74) + if (lookahead == '\n') SKIP(71) END_STATE(); case 87: - if (lookahead == '\n') SKIP(231) + if (lookahead == '\n') SKIP(230) END_STATE(); case 88: - if (lookahead == '\n') SKIP(248) + if (lookahead == '\n') SKIP(247) END_STATE(); case 89: - if (lookahead == '\n') SKIP(233) + if (lookahead == '\n') ADVANCE(759); END_STATE(); case 90: - if (lookahead == '\n') ADVANCE(762); + if (lookahead == '\n') SKIP(257) END_STATE(); case 91: if (lookahead == '\n') SKIP(258) END_STATE(); case 92: - if (lookahead == '\n') SKIP(249) + if (lookahead == '\n') SKIP(248) END_STATE(); case 93: - if (lookahead == '\n') ADVANCE(764); + if (lookahead == '\n') ADVANCE(761); END_STATE(); case 94: - if (lookahead == '\n') SKIP(232) + if (lookahead == '\n') SKIP(231) END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(785); + if (lookahead == '\n') ADVANCE(782); END_STATE(); case 96: - if (lookahead == '\n') SKIP(73) + if (lookahead == '\n') ADVANCE(783); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\n') SKIP(70) END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(786); + if (lookahead == '\n') ADVANCE(784); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(787); + if (lookahead == '\n') SKIP(256) END_STATE(); case 100: - if (lookahead == '\n') SKIP(257) + if (lookahead == '\n') ADVANCE(785); END_STATE(); case 101: - if (lookahead == '\n') SKIP(253) + if (lookahead == '\n') SKIP(252) END_STATE(); case 102: - if (lookahead == '\n') SKIP(72) + if (lookahead == '\n') SKIP(69) END_STATE(); case 103: - if (lookahead == '\n') SKIP(75) + if (lookahead == '\n') SKIP(72) END_STATE(); case 104: if (lookahead == '\n') SKIP(260) END_STATE(); case 105: - if (lookahead == '\n') SKIP(250) + if (lookahead == '\n') SKIP(249) END_STATE(); case 106: if (lookahead == '\n') SKIP(259) END_STATE(); case 107: - if (lookahead == '\n') SKIP(141) + if (lookahead == '\n') SKIP(139) END_STATE(); case 108: if (lookahead == '\n') SKIP(189) @@ -7733,44 +7717,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(187) END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(572); - if (lookahead == '!') ADVANCE(799); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(570); + if (lookahead == '!') ADVANCE(797); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(499); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(342); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(540); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(110) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(751); + if (lookahead == '\n') ADVANCE(748); END_STATE(); case 112: - if (lookahead == '\n') SKIP(144) + if (lookahead == '\n') SKIP(141) END_STATE(); case 113: if (lookahead == '\n') SKIP(204) @@ -7779,2501 +7763,2524 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(173) END_STATE(); case 115: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(170) END_STATE(); case 116: - if (lookahead == '\n') SKIP(176) + if (lookahead == '\n') SKIP(175) END_STATE(); case 117: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(172) END_STATE(); case 118: - if (lookahead == '\n') SKIP(171) + if (lookahead == '\n') SKIP(177) END_STATE(); case 119: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') ADVANCE(758); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(757); + if (lookahead == '\n') SKIP(174) END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(765); + if (lookahead == '\n') ADVANCE(763); END_STATE(); case 122: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') SKIP(244) END_STATE(); case 123: - if (lookahead == '\n') SKIP(175) + if (lookahead == '\n') SKIP(237) END_STATE(); case 124: - if (lookahead == '\n') SKIP(238) + if (lookahead == '\n') SKIP(176) END_STATE(); case 125: if (lookahead == '\n') SKIP(178) END_STATE(); case 126: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') ADVANCE(774); END_STATE(); case 127: - if (lookahead == '\n') ADVANCE(780); + if (lookahead == '\n') SKIP(179) END_STATE(); case 128: - if (lookahead == '\n') ADVANCE(777); + if (lookahead == '\n') ADVANCE(778); END_STATE(); case 129: - if (lookahead == '\n') SKIP(239) + if (lookahead == '\n') SKIP(238) END_STATE(); case 130: - if (lookahead == '\n') SKIP(242) + if (lookahead == '\n') SKIP(241) END_STATE(); case 131: - if (lookahead == '\n') ADVANCE(756); + if (lookahead == '\n') ADVANCE(753); END_STATE(); case 132: if (lookahead == '\n') SKIP(182) END_STATE(); case 133: - if (lookahead == '\n') SKIP(222) - END_STATE(); - case 134: if (lookahead == '\n') SKIP(190) END_STATE(); - case 135: - if (lookahead == '\n') ADVANCE(573); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); + case 134: + if (lookahead == '\n') ADVANCE(571); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(445); if (lookahead == '<') ADVANCE(519); if (lookahead == '>') ADVANCE(524); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(345); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(734); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '_') ADVANCE(794); + if (lookahead == 'e') ADVANCE(743); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(135) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead == ' ') SKIP(134) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); + END_STATE(); + case 135: + if (lookahead == '\n') SKIP(144) END_STATE(); case 136: - if (lookahead == '\n') SKIP(148) + if (lookahead == '\n') ADVANCE(775); END_STATE(); case 137: - if (lookahead == '\n') ADVANCE(776); + if (lookahead == '\n') SKIP(236) END_STATE(); case 138: - if (lookahead == '\n') SKIP(237) + if (lookahead == '\n') SKIP(147) END_STATE(); case 139: - if (lookahead == '\n') ADVANCE(574); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(572); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(517); + if (lookahead == '=') ADVANCE(451); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(395); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 140: - if (lookahead == '\n') SKIP(152) - END_STATE(); - case 141: - if (lookahead == '\n') ADVANCE(575); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(573); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(267); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(490); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(394); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(540); - if (lookahead == '~') ADVANCE(637); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(325); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(141) + lookahead == ' ') SKIP(140) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 142: - if (lookahead == '\n') ADVANCE(576); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + case 141: + if (lookahead == '\n') ADVANCE(574); + if (lookahead == '!') ADVANCE(797); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(499); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(325); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(398); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(539); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); + END_STATE(); + case 142: + if (lookahead == '\n') ADVANCE(575); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '0') ADVANCE(791); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(309); + if (lookahead == '_') ADVANCE(794); if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 143: - if (lookahead == '\n') ADVANCE(577); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '\n') ADVANCE(576); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '(') ADVANCE(267); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(309); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(292); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(737); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0 && + lookahead != ')') ADVANCE(804); END_STATE(); case 144: - if (lookahead == '\n') ADVANCE(578); - if (lookahead == '!') ADVANCE(799); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(577); + if (lookahead == '!') ADVANCE(797); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); + if (lookahead == '(') ADVANCE(267); if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(499); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(397); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(540); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(415); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 145: - if (lookahead == '\n') ADVANCE(579); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ';') ADVANCE(445); + if (lookahead == '\n') ADVANCE(578); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '0') ADVANCE(791); + if (lookahead == ';') ADVANCE(446); if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); if (lookahead == '>') ADVANCE(524); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(346); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(310); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(145) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(579); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(293); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(146) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(581); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(147) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); - END_STATE(); - case 148: - if (lookahead == '\n') ADVANCE(582); - if (lookahead == '!') ADVANCE(799); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(580); + if (lookahead == '!') ADVANCE(797); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(499); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(415); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(417); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(147) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); + END_STATE(); + case 148: + if (lookahead == '\n') ADVANCE(581); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '0') ADVANCE(791); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(794); if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(148) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(583); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(582); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(347); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(737); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(149) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 150: - if (lookahead == '\n') ADVANCE(584); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(583); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(732); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(150) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0) ADVANCE(806); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (lookahead != 0 && + lookahead != ')') ADVANCE(804); END_STATE(); case 151: - if (lookahead == '\n') ADVANCE(585); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(584); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(311); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(151) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 152: - if (lookahead == '\n') ADVANCE(586); - if (lookahead == '!') ADVANCE(799); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); + if (lookahead == '\n') ADVANCE(585); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(490); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); if (lookahead == '<') ADVANCE(518); - if (lookahead == '=') ADVANCE(451); + if (lookahead == '=') ADVANCE(798); if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(417); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(295); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(152) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 153: - if (lookahead == '\n') ADVANCE(587); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(586); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(348); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(346); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(153) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0 && + lookahead != ')') ADVANCE(804); END_STATE(); case 154: - if (lookahead == '\n') ADVANCE(588); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); + if (lookahead == '\n') ADVANCE(587); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(262); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '-') ADVANCE(492); if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(446); if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(313); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); - END_STATE(); - case 155: - if (lookahead == '\n') ADVANCE(589); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(497); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(311); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(155) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 156: - if (lookahead == '\n') ADVANCE(590); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + case 155: + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(349); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(326); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(156) + lookahead == ' ') SKIP(155) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); - case 157: - if (lookahead == '\n') ADVANCE(591); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + case 156: + if (lookahead == '\n') ADVANCE(589); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(347); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(157) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(156) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); - case 158: - if (lookahead == '\n') ADVANCE(592); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(262); - if (lookahead == '*') ADVANCE(497); + case 157: + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(283); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(317); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(158) + lookahead == ' ') SKIP(157) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 159: - if (lookahead == '\n') ADVANCE(593); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + case 158: + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(350); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(296); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(159) + lookahead == ' ') SKIP(158) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0 && + lookahead != ')') ADVANCE(804); END_STATE(); - case 160: - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + case 159: + if (lookahead == '\n') ADVANCE(592); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(348); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(160) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + lookahead == ' ') SKIP(159) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); - case 161: - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(283); - if (lookahead == '*') ADVANCE(497); + case 160: + if (lookahead == '\n') ADVANCE(593); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(516); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(317); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '0') ADVANCE(791); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(318); + if (lookahead == '_') ADVANCE(794); + if (lookahead == 'i') ADVANCE(742); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(161) + lookahead == ' ') SKIP(160) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 162: - if (lookahead == '\n') ADVANCE(596); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + case 161: + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(353); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(297); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(162) + lookahead == ' ') SKIP(161) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 163: - if (lookahead == '\n') ADVANCE(597); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + case 162: + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(349); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(162) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (lookahead != 0) ADVANCE(804); + END_STATE(); + case 163: + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '(') ADVANCE(267); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0 && + lookahead != ')') ADVANCE(804); END_STATE(); case 164: - if (lookahead == '\n') ADVANCE(598); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(618); - if (lookahead == '*') ADVANCE(497); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '\n') ADVANCE(597); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '(') ADVANCE(267); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(318); - if (lookahead == '_') ADVANCE(796); - if (lookahead == 'i') ADVANCE(744); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(350); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(164) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 165: - if (lookahead == '\n') ADVANCE(599); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '(') ADVANCE(267); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(400); - if (lookahead == '`') ADVANCE(724); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(298); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(165) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')' && + lookahead != ';') ADVANCE(804); END_STATE(); case 166: - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(599); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(354); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(166) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 167: - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(300); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(167) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')' && + lookahead != ';') ADVANCE(804); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(602); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(262); + if (lookahead == '\n') ADVANCE(601); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(355); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 169: - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(617); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(268); + if (lookahead == '>') ADVANCE(269); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(356); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(312); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(169) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0 && + lookahead != ')' && + lookahead != '|') ADVANCE(804); END_STATE(); case 170: - if (lookahead == '\n') ADVANCE(604); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(262); + if (lookahead == '\n') ADVANCE(603); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(401); + if (lookahead == '`') ADVANCE(722); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 171: - if (lookahead == '\n') ADVANCE(605); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '(') ADVANCE(267); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(403); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(356); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(171) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 172: - if (lookahead == '\n') ADVANCE(606); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(618); + if (lookahead == '\n') ADVANCE(605); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(268); - if (lookahead == '>') ADVANCE(269); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(312); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(403); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 173: - if (lookahead == '\n') ADVANCE(607); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(606); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(399); - if (lookahead == '`') ADVANCE(724); - if (lookahead == 'e') ADVANCE(734); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(400); + if (lookahead == '`') ADVANCE(722); + if (lookahead == 'e') ADVANCE(732); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(173) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(608); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(404); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(174) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 175: - if (lookahead == '\n') ADVANCE(609); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(608); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '`') ADVANCE(724); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(402); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 176: - if (lookahead == '\n') ADVANCE(610); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(609); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(401); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == '`') ADVANCE(722); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 177: - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(404); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(177) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (lookahead != 0) ADVANCE(806); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 178: - if (lookahead == '\n') ADVANCE(612); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(408); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(178) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + lookahead != ')') ADVANCE(804); END_STATE(); case 179: - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(612); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(410); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(614); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(618); + if (lookahead == '\n') ADVANCE(613); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(617); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(366); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(804); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(364); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(802); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(180) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 181: - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(618); + if (lookahead == '\n') ADVANCE(614); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(617); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(369); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(181) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 182: - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(618); + if (lookahead == '\n') ADVANCE(615); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(617); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(412); - if (lookahead == '`') ADVANCE(724); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(413); + if (lookahead == '`') ADVANCE(722); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 183: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(508); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '+') ADVANCE(635); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(633); if (lookahead == ',') ADVANCE(448); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '/') ADVANCE(504); - if (lookahead == '0') ADVANCE(792); - if (lookahead == ':') ADVANCE(631); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ':') ADVANCE(630); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(332); - if (lookahead == ']') ADVANCE(557); - if (lookahead == '^') ADVANCE(622); - if (lookahead == '_') ADVANCE(794); - if (lookahead == '`') ADVANCE(724); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == 'i') ADVANCE(803); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '|') ADVANCE(540); - if (lookahead == '}') ADVANCE(684); - if (lookahead == '~') ADVANCE(637); + if (lookahead == ']') ADVANCE(556); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(722); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == 'i') ADVANCE(801); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '}') ADVANCE(682); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 184: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(499); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(291); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(540); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(741); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 185: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(337); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(540); - if (lookahead == '~') ADVANCE(637); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(185) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 186: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(618); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(521); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(520); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(526); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(340); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '~') ADVANCE(637); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 187: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(618); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(521); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(520); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(526); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '~') ADVANCE(637); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(397); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(187) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 188: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(618); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == ':') ADVANCE(631); - if (lookahead == '<') ADVANCE(521); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == ':') ADVANCE(630); + if (lookahead == '<') ADVANCE(520); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(526); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(341); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '~') ADVANCE(637); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 189: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(618); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(521); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(520); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(526); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(395); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '~') ADVANCE(637); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(396); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 190: - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(618); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '*') ADVANCE(499); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(521); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(520); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(526); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(414); - if (lookahead == ']') ADVANCE(654); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '~') ADVANCE(637); + if (lookahead == ']') ADVANCE(652); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 191: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(307); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 192: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 193: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(302); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 194: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(304); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 195: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(314); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(315); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(195) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != '&' && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 196: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(263); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(333); if (lookahead == ']' || - lookahead == '}') ADVANCE(653); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '|') ADVANCE(538); + lookahead == '}') ADVANCE(651); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 197: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); + if (lookahead == '(') ADVANCE(528); if (lookahead == ')') ADVANCE(273); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(334); if (lookahead == ']' || - lookahead == '}') ADVANCE(653); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '~') ADVANCE(637); + lookahead == '}') ADVANCE(651); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 198: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(336); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '}') ADVANCE(653); - if (lookahead == '~') ADVANCE(637); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '}') ADVANCE(651); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 199: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(344); if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '~') ADVANCE(637); + lookahead == '}') ADVANCE(651); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 200: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(263); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(338); if (lookahead == ']' || - lookahead == '}') ADVANCE(653); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == '{') ADVANCE(547); + lookahead == '}') ADVANCE(651); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == '{') ADVANCE(546); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 201: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(339); - if (lookahead == ']') ADVANCE(653); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '}') ADVANCE(548); + if (lookahead == ']') ADVANCE(651); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '}') ADVANCE(547); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 202: - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(667); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(358); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '~') ADVANCE(637); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(202) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); case 203: - if (lookahead == '!') ADVANCE(799); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(797); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '*') ADVANCE(499); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(343); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(540); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 204: - if (lookahead == '!') ADVANCE(799); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(797); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(499); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(398); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(540); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(399); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 205: - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(205) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 206: - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(328); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 207: - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(329); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(331); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 208: - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(305); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(208) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 209: - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(209) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 210: - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(328); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(329); if (lookahead == ']') ADVANCE(284); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 211: - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 212: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(651); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '(') ADVANCE(528); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(649); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(522); + if (lookahead == ',') ADVANCE(447); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '[') ADVANCE(553); if (lookahead == '\\') SKIP(365) if (lookahead == ']') ADVANCE(284); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(212) END_STATE(); case 213: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(500); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); if (lookahead == ',') ADVANCE(447); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') SKIP(361) - if (lookahead == '^') ADVANCE(624); + if (lookahead == ']') ADVANCE(652); + if (lookahead == '^') ADVANCE(623); if (lookahead == '`') ADVANCE(285); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(213) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 214: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); if (lookahead == ',') ADVANCE(447); - if (lookahead == '-') ADVANCE(495); + if (lookahead == '-') ADVANCE(494); if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(507); - if (lookahead == ':') ADVANCE(628); + if (lookahead == '/') ADVANCE(506); + if (lookahead == ':') ADVANCE(627); if (lookahead == ';') ADVANCE(263); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') SKIP(360) - if (lookahead == ']') ADVANCE(654); - if (lookahead == '^') ADVANCE(624); + if (lookahead == '^') ADVANCE(623); if (lookahead == '`') ADVANCE(285); if (lookahead == 'e') ADVANCE(289); if (lookahead == 'i') ADVANCE(288); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(215) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(639); END_STATE(); case 215: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); if (lookahead == ',') ADVANCE(447); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == ':') ADVANCE(628); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == ':') ADVANCE(627); if (lookahead == ';') ADVANCE(263); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') SKIP(360) - if (lookahead == ']') ADVANCE(654); - if (lookahead == '^') ADVANCE(624); + if (lookahead == '^') ADVANCE(623); if (lookahead == '`') ADVANCE(285); if (lookahead == 'e') ADVANCE(289); if (lookahead == 'i') ADVANCE(288); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(215) END_STATE(); case 216: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') SKIP(362) - if (lookahead == '^') ADVANCE(624); + if (lookahead == '^') ADVANCE(623); if (lookahead == '`') ADVANCE(285); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(216) END_STATE(); case 217: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); if (lookahead == '-') ADVANCE(494); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '[') ADVANCE(554); - if (lookahead == '\\') SKIP(368) - if (lookahead == '^') ADVANCE(624); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '}') ADVANCE(644); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '[') ADVANCE(553); + if (lookahead == '\\') SKIP(367) + if (lookahead == '^') ADVANCE(623); + if (lookahead == '`') ADVANCE(285); + if (lookahead == '|') ADVANCE(541); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(218) + lookahead == ' ') SKIP(217) END_STATE(); case 218: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); if (lookahead == '-') ADVANCE(494); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '[') ADVANCE(554); - if (lookahead == '\\') SKIP(368) - if (lookahead == '^') ADVANCE(624); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '[' || + lookahead == '{' || + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') SKIP(363) + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '`') ADVANCE(285); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(218) END_STATE(); case 219: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(273); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(261); + if (lookahead == '(') ADVANCE(527); + if (lookahead == ')') ADVANCE(529); if (lookahead == '*') ADVANCE(500); if (lookahead == '+') ADVANCE(491); if (lookahead == ',') ADVANCE(447); if (lookahead == '-') ADVANCE(494); - if (lookahead == '/') ADVANCE(507); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(452); + if (lookahead == '>') ADVANCE(526); if (lookahead == '[') ADVANCE(554); - if (lookahead == '\\') SKIP(367) - if (lookahead == '^') ADVANCE(624); - if (lookahead == '`') ADVANCE(285); - if (lookahead == '|') ADVANCE(542); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '\\') SKIP(373) + if (lookahead == '^') ADVANCE(282); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '|') ADVANCE(279); + if (lookahead == '}') ADVANCE(642); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(219) + lookahead == ' ') SKIP(220) END_STATE(); case 220: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(261); + if (lookahead == '(') ADVANCE(527); + if (lookahead == ')') ADVANCE(529); if (lookahead == '*') ADVANCE(500); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') SKIP(363) - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '`') ADVANCE(285); - if (lookahead == '|') ADVANCE(542); + if (lookahead == ',') ADVANCE(447); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(452); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '[') ADVANCE(554); + if (lookahead == '\\') SKIP(373) + if (lookahead == '^') ADVANCE(282); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '|') ADVANCE(279); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220) END_STATE(); case 221: if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '%') ADVANCE(510); if (lookahead == '&') ADVANCE(261); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(501); + if (lookahead == ')') ADVANCE(273); + if (lookahead == '*') ADVANCE(500); if (lookahead == '+') ADVANCE(491); if (lookahead == ',') ADVANCE(447); if (lookahead == '-') ADVANCE(494); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(452); - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(526); if (lookahead == '\\') SKIP(374) if (lookahead == '^') ADVANCE(282); if (lookahead == '|') ADVANCE(279); @@ -10281,634 +10288,614 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(221) END_STATE(); case 222: - if (lookahead == '!') ADVANCE(280); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(261); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(501); - if (lookahead == '+') ADVANCE(491); - if (lookahead == ',') ADVANCE(447); - if (lookahead == '-') ADVANCE(494); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(452); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '\\') SKIP(413) - if (lookahead == '^') ADVANCE(282); - if (lookahead == '|') ADVANCE(279); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(262); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '-') ADVANCE(492); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(314); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(222) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 223: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); if (lookahead == '&') ADVANCE(262); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(315); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(223) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 224: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(262); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(316); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(319); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(224) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 225: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '/') ADVANCE(502); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(320); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(538); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(225) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 226: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '/') ADVANCE(503); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(319); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(322); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) + lookahead == ' ') ADVANCE(658); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); + if (lookahead != 0 && + lookahead != '`') ADVANCE(662); END_STATE(); case 227: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(321); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(660); + lookahead == ' ') SKIP(227) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); - if (lookahead != 0 && - lookahead != '`') ADVANCE(664); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 228: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(323); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) + lookahead == ' ') ADVANCE(659); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '`') ADVANCE(662); END_STATE(); case 229: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(323); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(324); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(661); + lookahead == ' ') SKIP(229) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(664); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 230: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(648); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(324); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') SKIP(380) + if (lookahead == '_') ADVANCE(794); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 231: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(650); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(648); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') SKIP(379) - if (lookahead == '_') ADVANCE(796); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') SKIP(385) + if (lookahead == '_') ADVANCE(794); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 232: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(650); - if (lookahead == '*') ADVANCE(497); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') SKIP(384) - if (lookahead == '_') ADVANCE(796); - if (lookahead == '`') ADVANCE(723); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(232) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); - END_STATE(); - case 233: - if (lookahead == '!') ADVANCE(550); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(652); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(649); if (lookahead == '&') ADVANCE(262); - if (lookahead == '(') ADVANCE(528); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '0') ADVANCE(675); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '(') ADVANCE(527); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '0') ADVANCE(673); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') SKIP(381) - if (lookahead == ']') ADVANCE(556); - if (lookahead == '`') ADVANCE(285); - if (lookahead == '|') ADVANCE(541); - if (lookahead == '~') ADVANCE(637); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') SKIP(378) + if (lookahead == ']') ADVANCE(555); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + lookahead == ' ') SKIP(232) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 234: - if (lookahead == '!') ADVANCE(685); - if (lookahead == '#') ADVANCE(691); - if (lookahead == '$') ADVANCE(650); - if (lookahead == '*') ADVANCE(497); + case 233: + if (lookahead == '!') ADVANCE(683); + if (lookahead == '#') ADVANCE(689); + if (lookahead == '$') ADVANCE(648); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '=') ADVANCE(692); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') SKIP(379) - if (lookahead == '_') ADVANCE(796); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '=') ADVANCE(690); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') SKIP(380) + if (lookahead == '_') ADVANCE(794); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) + lookahead == ' ') SKIP(230) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 235: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + case 234: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(357); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(538); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == ' ') SKIP(234) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); - case 236: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + case 235: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); - if (lookahead == '\\') ADVANCE(352); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); + if (lookahead == '\\') ADVANCE(351); if (lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(236) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == ' ') SKIP(235) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); - case 237: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + case 236: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(416); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(538); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(537); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(236) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0 && + lookahead != ';') ADVANCE(804); + END_STATE(); + case 237: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(262); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(407); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ';') ADVANCE(806); + lookahead != ')' && + lookahead != ';') ADVANCE(804); END_STATE(); case 238: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '(') ADVANCE(267); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(411); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 239: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(410); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(353); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && - lookahead != ';') ADVANCE(806); + lookahead != ')' && + lookahead != ';') ADVANCE(804); END_STATE(); case 240: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(366); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 241: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(364); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(412); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 242: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(411); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(359); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 243: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(359); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(352); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 244: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(351); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(406); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); if (lookahead != 0 && lookahead != ')' && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); END_STATE(); case 245: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(262); - if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(806); - END_STATE(); - case 246: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(369); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(804); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(368); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(802); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == ' ') SKIP(245) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); - case 247: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + case 246: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(653); + lookahead == '{') ADVANCE(651); if (lookahead == '\\') ADVANCE(375); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == ' ') SKIP(246) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); - case 248: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(651); + case 247: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(649); if (lookahead == '&') ADVANCE(262); - if (lookahead == '(') ADVANCE(528); + if (lookahead == '(') ADVANCE(527); if (lookahead == ')') ADVANCE(273); if (lookahead == '+') ADVANCE(275); if (lookahead == '-') ADVANCE(276); - if (lookahead == '0') ADVANCE(674); - if (lookahead == '<') ADVANCE(520); + if (lookahead == '0') ADVANCE(672); + if (lookahead == '<') ADVANCE(519); if (lookahead == '=') ADVANCE(450); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '>') ADVANCE(524); if (lookahead == '[' || + lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') SKIP(380) - if (lookahead == ']') ADVANCE(556); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') SKIP(381) + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + lookahead == ' ') SKIP(247) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(674); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(532); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 249: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(648); + case 248: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(646); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(528); - if (lookahead == '\\') ADVANCE(383); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '(') ADVANCE(527); + if (lookahead == '\\') ADVANCE(384); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(707); + lookahead == ' ') ADVANCE(705); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && @@ -10916,73 +10903,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '{' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); - case 250: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); + case 249: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); if (lookahead == '\'') ADVANCE(264); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '\\') SKIP(392) + if (lookahead == ')') ADVANCE(529); + if (lookahead == '\\') SKIP(393) if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(710); + lookahead == ' ') ADVANCE(708); END_STATE(); - case 251: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(731); - if (lookahead == '$') ADVANCE(647); + case 250: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(729); + if (lookahead == '$') ADVANCE(645); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(373); - if (lookahead == '`') ADVANCE(723); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(372); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(251) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == ' ') SKIP(250) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); - case 252: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(731); - if (lookahead == '$') ADVANCE(647); + case 251: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(729); + if (lookahead == '$') ADVANCE(645); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); if (lookahead == '[' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(376); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '`') ADVANCE(723); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + lookahead == ' ') SKIP(251) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); - case 253: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(731); - if (lookahead == '$') ADVANCE(652); + case 252: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(729); + if (lookahead == '$') ADVANCE(650); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '\\') ADVANCE(388); + if (lookahead == '\\') ADVANCE(389); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(253) + lookahead == ' ') SKIP(252) if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && @@ -10990,106 +10977,121 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 254: - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(657); - if (lookahead == '$') ADVANCE(649); - if (lookahead == '(') ADVANCE(663); - if (lookahead == '\\') ADVANCE(386); - if (lookahead == '`') ADVANCE(723); + case 253: + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(655); + if (lookahead == '$') ADVANCE(647); + if (lookahead == '(') ADVANCE(661); + if (lookahead == '\\') ADVANCE(387); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(662); - if (lookahead != 0) ADVANCE(664); + lookahead == ' ') ADVANCE(660); + if (lookahead != 0) ADVANCE(662); END_STATE(); - case 255: - if (lookahead == '#') ADVANCE(682); - if (lookahead == '%') ADVANCE(509); - if (lookahead == '*') ADVANCE(689); - if (lookahead == '+') ADVANCE(699); + case 254: + if (lookahead == '#') ADVANCE(680); + if (lookahead == '%') ADVANCE(508); + if (lookahead == '*') ADVANCE(687); + if (lookahead == '+') ADVANCE(697); if (lookahead == ',') ADVANCE(449); - if (lookahead == '-') ADVANCE(696); - if (lookahead == '/') ADVANCE(505); - if (lookahead == ':') ADVANCE(630); - if (lookahead == '=') ADVANCE(692); - if (lookahead == '?') ADVANCE(702); - if (lookahead == '@') ADVANCE(687); - if (lookahead == '[') ADVANCE(554); + if (lookahead == '-') ADVANCE(694); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(629); + if (lookahead == '=') ADVANCE(690); + if (lookahead == '?') ADVANCE(700); + if (lookahead == '@') ADVANCE(685); + if (lookahead == '[') ADVANCE(553); if (lookahead == '\\') SKIP(371) - if (lookahead == '^') ADVANCE(625); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '^') ADVANCE(624); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(256) + lookahead == ' ') SKIP(255) END_STATE(); - case 256: - if (lookahead == '#') ADVANCE(682); - if (lookahead == '%') ADVANCE(509); + case 255: + if (lookahead == '#') ADVANCE(680); + if (lookahead == '%') ADVANCE(508); if (lookahead == ',') ADVANCE(449); - if (lookahead == '/') ADVANCE(505); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '[') ADVANCE(554); + if (lookahead == '/') ADVANCE(504); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '[') ADVANCE(553); if (lookahead == '\\') SKIP(371) - if (lookahead == '^') ADVANCE(625); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '^') ADVANCE(624); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(256) + lookahead == ' ') SKIP(255) END_STATE(); - case 257: - if (lookahead == '#') ADVANCE(730); + case 256: + if (lookahead == '#') ADVANCE(728); if (lookahead == '&') ADVANCE(283); if (lookahead == ';') ADVANCE(444); - if (lookahead == '<') ADVANCE(516); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '\\') ADVANCE(387); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '\\') ADVANCE(388); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(257) + lookahead == ' ') SKIP(256) if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - lookahead != '|') ADVANCE(806); + lookahead != '|') ADVANCE(804); END_STATE(); - case 258: - if (lookahead == '#') ADVANCE(730); + case 257: + if (lookahead == '#') ADVANCE(728); if (lookahead == '&') ADVANCE(262); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); if (lookahead == '[' || - lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(382); + if (lookahead == ']') ADVANCE(555); if (lookahead == '`') ADVANCE(285); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(258) + lookahead == ' ') SKIP(257) if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(806); + lookahead != ';') ADVANCE(804); + END_STATE(); + case 258: + if (lookahead == '#') ADVANCE(728); + if (lookahead == '&') ADVANCE(262); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '[' || + lookahead == ']' || + lookahead == '{' || + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') SKIP(383) + if (lookahead == '`') ADVANCE(285); + if (lookahead == '|') ADVANCE(540); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(258) END_STATE(); case 259: - if (lookahead == '#') ADVANCE(730); + if (lookahead == '#') ADVANCE(728); if (lookahead == '+') ADVANCE(281); if (lookahead == '=') ADVANCE(450); - if (lookahead == '[') ADVANCE(554); - if (lookahead == '\\') SKIP(393) + if (lookahead == '[') ADVANCE(553); + if (lookahead == '\\') SKIP(394) if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259) END_STATE(); case 260: - if (lookahead == '#') ADVANCE(730); - if (lookahead == '/') ADVANCE(503); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '/') ADVANCE(502); if (lookahead == '[' || lookahead == ']' || - lookahead == '{') ADVANCE(653); - if (lookahead == '\\') SKIP(391) + lookahead == '{') ADVANCE(651); + if (lookahead == '\\') SKIP(392) if (lookahead == '`') ADVANCE(285); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260) END_STATE(); @@ -11099,23 +11101,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 262: if (lookahead == '&') ADVANCE(483); - if (lookahead == '>') ADVANCE(562); + if (lookahead == '>') ADVANCE(561); END_STATE(); case 263: - if (lookahead == '&') ADVANCE(545); - if (lookahead == ';') ADVANCE(544); + if (lookahead == '&') ADVANCE(544); + if (lookahead == ';') ADVANCE(543); END_STATE(); case 264: - if (lookahead == '\'') ADVANCE(666); + if (lookahead == '\'') ADVANCE(664); if (lookahead != 0) ADVANCE(264); END_STATE(); case 265: - if (lookahead == '\'') ADVANCE(667); + if (lookahead == '\'') ADVANCE(665); if (lookahead == '\\') ADVANCE(266); if (lookahead != 0) ADVANCE(265); END_STATE(); case 266: - if (lookahead == '\'') ADVANCE(668); + if (lookahead == '\'') ADVANCE(666); if (lookahead == '\\') ADVANCE(266); if (lookahead != 0) ADVANCE(265); END_STATE(); @@ -11123,20 +11125,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(442); END_STATE(); case 268: - if (lookahead == '(') ADVANCE(726); + if (lookahead == '(') ADVANCE(724); END_STATE(); case 269: - if (lookahead == '(') ADVANCE(727); + if (lookahead == '(') ADVANCE(725); END_STATE(); case 270: - if (lookahead == '(') ADVANCE(640); + if (lookahead == '(') ADVANCE(638); END_STATE(); case 271: if (lookahead == '(') ADVANCE(270); END_STATE(); case 272: if (lookahead == '(') ADVANCE(270); - if (lookahead == '{') ADVANCE(683); + if (lookahead == '{') ADVANCE(681); END_STATE(); case 273: if (lookahead == ')') ADVANCE(443); @@ -11150,15 +11152,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 276: if (lookahead == '-') ADVANCE(457); - if (lookahead == '0') ADVANCE(674); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (lookahead == '0') ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 277: - if (lookahead == '.') ADVANCE(642); + if (lookahead == '.') ADVANCE(640); END_STATE(); case 278: - if (lookahead == '0') ADVANCE(674); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (lookahead == '0') ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 279: if (lookahead == '=') ADVANCE(476); @@ -11174,13 +11176,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(474); END_STATE(); case 283: - if (lookahead == '>') ADVANCE(562); + if (lookahead == '>') ADVANCE(561); END_STATE(); case 284: - if (lookahead == ']') ADVANCE(559); + if (lookahead == ']') ADVANCE(558); END_STATE(); case 285: - if (lookahead == '`') ADVANCE(645); + if (lookahead == '`') ADVANCE(643); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(285); END_STATE(); @@ -11188,7 +11190,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(287); END_STATE(); case 287: - if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'c') ADVANCE(532); END_STATE(); case 288: if (lookahead == 'n') ADVANCE(439); @@ -11201,123 +11203,123 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(12) - if (lookahead == '\n') ADVANCE(748); + if (lookahead == '\n') ADVANCE(746); if (lookahead == '\r') ADVANCE(13); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 291: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(184) - if (lookahead == '\n') ADVANCE(769); - if (lookahead == '\r') ADVANCE(17); - if (lookahead != 0) ADVANCE(806); + if (lookahead == '\n') ADVANCE(767); + if (lookahead == '\r') ADVANCE(18); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 292: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(139) + lookahead == ' ') SKIP(143) if (lookahead == '\n') ADVANCE(750); if (lookahead == '\r') ADVANCE(26); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 293: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(146) - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '\r') ADVANCE(28); - if (lookahead != 0) ADVANCE(806); + if (lookahead == '\n') ADVANCE(752); + if (lookahead == '\r') ADVANCE(27); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 294: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(150) - if (lookahead == '\n') ADVANCE(755); + lookahead == ' ') SKIP(149) + if (lookahead == '\n') ADVANCE(754); if (lookahead == '\r') ADVANCE(29); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 295: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(157) - if (lookahead == '\n') ADVANCE(759); + lookahead == ' ') SKIP(152) + if (lookahead == '\n') ADVANCE(756); if (lookahead == '\r') ADVANCE(30); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 296: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(160) - if (lookahead == '\n') ADVANCE(761); + lookahead == ' ') SKIP(158) + if (lookahead == '\n') ADVANCE(760); if (lookahead == '\r') ADVANCE(31); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 297: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(163) - if (lookahead == '\n') ADVANCE(763); + lookahead == ' ') SKIP(161) + if (lookahead == '\n') ADVANCE(762); if (lookahead == '\r') ADVANCE(32); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 298: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(168) - if (lookahead == '\n') ADVANCE(766); + lookahead == ' ') SKIP(165) + if (lookahead == '\n') ADVANCE(764); if (lookahead == '\r') ADVANCE(37); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 299: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(192) - if (lookahead == '\n') ADVANCE(771); - if (lookahead == '\r') ADVANCE(38); - if (lookahead != 0) ADVANCE(806); + if (lookahead == '\n') ADVANCE(769); + if (lookahead == '\r') ADVANCE(39); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 300: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(209) - if (lookahead == '\n') ADVANCE(779); - if (lookahead == '\r') ADVANCE(41); + lookahead == ' ') SKIP(167) + if (lookahead == '\n') ADVANCE(765); + if (lookahead == '\r') ADVANCE(40); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 301: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(170) - if (lookahead == '\n') ADVANCE(767); - if (lookahead == '\r') ADVANCE(42); - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(205) + if (lookahead == '\n') ADVANCE(773); + if (lookahead == '\r') ADVANCE(41); END_STATE(); case 302: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(193) - if (lookahead == '\n') ADVANCE(772); + if (lookahead == '\n') ADVANCE(770); if (lookahead == '\r') ADVANCE(43); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 303: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(205) - if (lookahead == '\n') ADVANCE(775); + lookahead == ' ') SKIP(209) + if (lookahead == '\n') ADVANCE(777); if (lookahead == '\r') ADVANCE(44); END_STATE(); case 304: @@ -11325,16 +11327,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(194) - if (lookahead == '\n') ADVANCE(773); + if (lookahead == '\n') ADVANCE(771); if (lookahead == '\r') ADVANCE(45); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 305: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(208) - if (lookahead == '\n') ADVANCE(778); + if (lookahead == '\n') ADVANCE(776); if (lookahead == '\r') ADVANCE(46); END_STATE(); case 306: @@ -11342,7 +11344,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(211) - if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\n') ADVANCE(779); if (lookahead == '\r') ADVANCE(47); END_STATE(); case 307: @@ -11350,106 +11352,106 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(191) - if (lookahead == '\n') ADVANCE(770); + if (lookahead == '\n') ADVANCE(768); if (lookahead == '\r') ADVANCE(58); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 308: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(60) - if (lookahead == '\n') ADVANCE(749); - if (lookahead == '\r') ADVANCE(61); + lookahead == ' ') SKIP(134) + if (lookahead == '\n') ADVANCE(747); + if (lookahead == '\r') ADVANCE(59); END_STATE(); case 309: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(143) - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\r') ADVANCE(63); + lookahead == ' ') SKIP(142) + if (lookahead == '\n') ADVANCE(749); + if (lookahead == '\r') ADVANCE(60); END_STATE(); case 310: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(147) - if (lookahead == '\n') ADVANCE(754); - if (lookahead == '\r') ADVANCE(64); + lookahead == ' ') SKIP(145) + if (lookahead == '\n') ADVANCE(751); + if (lookahead == '\r') ADVANCE(63); END_STATE(); case 311: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(155) - if (lookahead == '\n') ADVANCE(758); - if (lookahead == '\r') ADVANCE(66); + lookahead == ' ') SKIP(151) + if (lookahead == '\n') ADVANCE(755); + if (lookahead == '\r') ADVANCE(64); END_STATE(); case 312: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(172) - if (lookahead == '\n') ADVANCE(768); - if (lookahead == '\r') ADVANCE(77); - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(169) + if (lookahead == '\n') ADVANCE(766); + if (lookahead == '\r') ADVANCE(75); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 313: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(158) - if (lookahead == '\n') ADVANCE(760); - if (lookahead == '\r') ADVANCE(79); + lookahead == ' ') SKIP(154) + if (lookahead == '\n') ADVANCE(757); + if (lookahead == '\r') ADVANCE(78); END_STATE(); case 314: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(195) - if (lookahead == '\n') ADVANCE(774); - if (lookahead == '\r') ADVANCE(81); - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(222) + if (lookahead == '\n') ADVANCE(780); + if (lookahead == '\r') ADVANCE(79); END_STATE(); case 315: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(223) - if (lookahead == '\n') ADVANCE(782); - if (lookahead == '\r') ADVANCE(82); + lookahead == ' ') SKIP(195) + if (lookahead == '\n') ADVANCE(772); + if (lookahead == '\r') ADVANCE(80); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 316: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(224) - if (lookahead == '\n') ADVANCE(783); - if (lookahead == '\r') ADVANCE(83); + lookahead == ' ') SKIP(223) + if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\r') ADVANCE(82); END_STATE(); case 317: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(161) - if (lookahead == '\n') ADVANCE(762); - if (lookahead == '\r') ADVANCE(90); + lookahead == ' ') SKIP(157) + if (lookahead == '\n') ADVANCE(759); + if (lookahead == '\r') ADVANCE(89); END_STATE(); case 318: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(164) - if (lookahead == '\n') ADVANCE(764); + lookahead == ' ') SKIP(160) + if (lookahead == '\n') ADVANCE(761); if (lookahead == '\r') ADVANCE(93); END_STATE(); case 319: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(226) - if (lookahead == '\n') ADVANCE(785); + lookahead == ' ') SKIP(224) + if (lookahead == '\n') ADVANCE(782); if (lookahead == '\r') ADVANCE(95); END_STATE(); case 320: @@ -11457,269 +11459,269 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 11 || lookahead == '\f' || lookahead == ' ') SKIP(225) - if (lookahead == '\n') ADVANCE(784); - if (lookahead == '\r') ADVANCE(97); + if (lookahead == '\n') ADVANCE(783); + if (lookahead == '\r') ADVANCE(96); END_STATE(); case 321: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(660); - if (lookahead == '\n') ADVANCE(660); - if (lookahead == '\r') ADVANCE(658); - if (lookahead != 0) ADVANCE(664); + lookahead == ' ') SKIP(227) + if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\r') ADVANCE(98); END_STATE(); case 322: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(228) - if (lookahead == '\n') ADVANCE(786); - if (lookahead == '\r') ADVANCE(98); + lookahead == ' ') ADVANCE(658); + if (lookahead == '\n') ADVANCE(658); + if (lookahead == '\r') ADVANCE(656); + if (lookahead != 0) ADVANCE(662); END_STATE(); case 323: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') ADVANCE(661); - if (lookahead == '\n') ADVANCE(661); - if (lookahead == '\r') ADVANCE(659); - if (lookahead != 0) ADVANCE(664); + lookahead == ' ') ADVANCE(659); + if (lookahead == '\n') ADVANCE(659); + if (lookahead == '\r') ADVANCE(657); + if (lookahead != 0) ADVANCE(662); END_STATE(); case 324: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(230) - if (lookahead == '\n') ADVANCE(787); - if (lookahead == '\r') ADVANCE(99); + lookahead == ' ') SKIP(229) + if (lookahead == '\n') ADVANCE(785); + if (lookahead == '\r') ADVANCE(100); END_STATE(); case 325: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(142) - if (lookahead == '\n') ADVANCE(751); + lookahead == ' ') SKIP(140) + if (lookahead == '\n') ADVANCE(748); if (lookahead == '\r') ADVANCE(111); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 326: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(154) - if (lookahead == '\n') ADVANCE(757); - if (lookahead == '\r') ADVANCE(120); - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(155) + if (lookahead == '\n') ADVANCE(758); + if (lookahead == '\r') ADVANCE(119); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 327: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(166) - if (lookahead == '\n') ADVANCE(765); + lookahead == ' ') SKIP(163) + if (lookahead == '\n') ADVANCE(763); if (lookahead == '\r') ADVANCE(121); - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 328: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(210) - if (lookahead == '\n') ADVANCE(780); - if (lookahead == '\r') ADVANCE(127); + lookahead == ' ') SKIP(206) + if (lookahead == '\n') ADVANCE(774); + if (lookahead == '\r') ADVANCE(126); END_STATE(); case 329: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(207) - if (lookahead == '\n') ADVANCE(777); + lookahead == ' ') SKIP(210) + if (lookahead == '\n') ADVANCE(778); if (lookahead == '\r') ADVANCE(128); END_STATE(); case 330: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(151) - if (lookahead == '\n') ADVANCE(756); + lookahead == ' ') SKIP(148) + if (lookahead == '\n') ADVANCE(753); if (lookahead == '\r') ADVANCE(131); END_STATE(); case 331: if (lookahead == '\t' || lookahead == 11 || lookahead == '\f' || - lookahead == ' ') SKIP(206) - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '\r') ADVANCE(137); + lookahead == ' ') SKIP(207) + if (lookahead == '\n') ADVANCE(775); + if (lookahead == '\r') ADVANCE(136); END_STATE(); case 332: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(183) if (lookahead == '\r') SKIP(1) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 333: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(196) if (lookahead == '\r') SKIP(2) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 334: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(197) if (lookahead == '\r') SKIP(3) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 335: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5) if (lookahead == '\r') SKIP(4) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 336: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(198) if (lookahead == '\r') SKIP(6) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 337: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(185) if (lookahead == '\r') SKIP(7) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 338: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(200) if (lookahead == '\r') SKIP(8) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 339: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(201) if (lookahead == '\r') SKIP(9) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 340: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(186) if (lookahead == '\r') SKIP(10) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 341: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(188) if (lookahead == '\r') SKIP(11) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 342: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(110) - if (lookahead == '\r') SKIP(18) - if (lookahead != 0) ADVANCE(806); + if (lookahead == '\r') SKIP(17) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 343: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(203) if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 344: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(199) if (lookahead == '\r') SKIP(20) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 345: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(135) + lookahead == ' ') SKIP(150) if (lookahead == '\r') SKIP(21) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 346: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(145) + lookahead == ' ') SKIP(153) if (lookahead == '\r') SKIP(22) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 347: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(149) + lookahead == ' ') SKIP(156) if (lookahead == '\r') SKIP(23) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 348: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(153) + lookahead == ' ') SKIP(159) if (lookahead == '\r') SKIP(24) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 349: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(156) + lookahead == ' ') SKIP(162) if (lookahead == '\r') SKIP(25) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 350: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(159) - if (lookahead == '\r') SKIP(27) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(164) + if (lookahead == '\r') SKIP(28) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 351: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(244) + lookahead == ' ') SKIP(235) if (lookahead == '\r') SKIP(33) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 352: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(236) + lookahead == ' ') SKIP(243) if (lookahead == '\r') SKIP(34) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 353: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(162) + lookahead == ' ') SKIP(239) if (lookahead == '\r') SKIP(35) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 354: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(240) + lookahead == ' ') SKIP(166) if (lookahead == '\r') SKIP(36) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 355: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(167) - if (lookahead == '\r') SKIP(39) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(168) + if (lookahead == '\r') SKIP(38) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 356: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(169) - if (lookahead == '\r') SKIP(40) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(171) + if (lookahead == '\r') SKIP(42) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 357: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(235) + lookahead == ' ') SKIP(234) if (lookahead == '\r') SKIP(48) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 358: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(202) if (lookahead == '\r') SKIP(49) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 359: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(243) + lookahead == ' ') SKIP(242) if (lookahead == '\r') SKIP(50) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 360: if (('\t' <= lookahead && lookahead <= '\f') || @@ -11738,14 +11740,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 363: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(220) + lookahead == ' ') SKIP(218) if (lookahead == '\r') SKIP(54) END_STATE(); case 364: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241) + lookahead == ' ') SKIP(180) if (lookahead == '\r') SKIP(55) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 365: if (('\t' <= lookahead && lookahead <= '\f') || @@ -11754,352 +11756,352 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 366: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(180) + lookahead == ' ') SKIP(240) if (lookahead == '\r') SKIP(57) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 367: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(219) - if (lookahead == '\r') SKIP(59) + lookahead == ' ') SKIP(217) + if (lookahead == '\r') SKIP(61) END_STATE(); case 368: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(218) + lookahead == ' ') SKIP(245) if (lookahead == '\r') SKIP(62) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 369: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) + lookahead == ' ') SKIP(181) if (lookahead == '\r') SKIP(65) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 370: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(181) - if (lookahead == '\r') SKIP(67) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(67) + if (lookahead == '\r') SKIP(66) END_STATE(); case 371: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256) - if (lookahead == '\r') SKIP(68) + lookahead == ' ') SKIP(255) + if (lookahead == '\r') SKIP(73) END_STATE(); case 372: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(70) - if (lookahead == '\r') SKIP(69) + lookahead == ' ') SKIP(250) + if (lookahead == '\r') SKIP(74) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 373: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(251) + lookahead == ' ') SKIP(220) if (lookahead == '\r') SKIP(76) - if (lookahead != 0) ADVANCE(806); END_STATE(); case 374: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(221) - if (lookahead == '\r') SKIP(78) + if (lookahead == '\r') SKIP(77) END_STATE(); case 375: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(247) - if (lookahead == '\r') SKIP(80) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(246) + if (lookahead == '\r') SKIP(81) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 376: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (lookahead == '\r') SKIP(84) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(251) + if (lookahead == '\r') SKIP(83) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 377: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(71) - if (lookahead == '\r') SKIP(85) + lookahead == ' ') SKIP(68) + if (lookahead == '\r') SKIP(84) END_STATE(); case 378: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(74) - if (lookahead == '\r') SKIP(86) + lookahead == ' ') SKIP(232) + if (lookahead == '\r') SKIP(85) END_STATE(); case 379: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(231) - if (lookahead == '\r') SKIP(87) + lookahead == ' ') SKIP(71) + if (lookahead == '\r') SKIP(86) END_STATE(); case 380: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (lookahead == '\r') SKIP(88) + lookahead == ' ') SKIP(230) + if (lookahead == '\r') SKIP(87) END_STATE(); case 381: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(233) - if (lookahead == '\r') SKIP(89) + lookahead == ' ') SKIP(247) + if (lookahead == '\r') SKIP(88) END_STATE(); case 382: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258) - if (lookahead == '\r') SKIP(91) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(257) + if (lookahead == '\r') SKIP(90) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 383: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(249) - if (lookahead == '\r') SKIP(92) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(258) + if (lookahead == '\r') SKIP(91) END_STATE(); case 384: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(232) - if (lookahead == '\r') SKIP(94) + lookahead == ' ') SKIP(248) + if (lookahead == '\r') SKIP(92) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 385: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(73) - if (lookahead == '\r') SKIP(96) + lookahead == ' ') SKIP(231) + if (lookahead == '\r') SKIP(94) END_STATE(); case 386: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(662); - if (lookahead == '\r') ADVANCE(656); - if (lookahead != 0) ADVANCE(664); + lookahead == ' ') SKIP(70) + if (lookahead == '\r') SKIP(97) END_STATE(); case 387: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(257) - if (lookahead == '\r') SKIP(100) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') ADVANCE(660); + if (lookahead == '\r') ADVANCE(654); + if (lookahead != 0) ADVANCE(662); END_STATE(); case 388: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253) - if (lookahead == '\r') SKIP(101) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(256) + if (lookahead == '\r') SKIP(99) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 389: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(72) - if (lookahead == '\r') SKIP(102) + lookahead == ' ') SKIP(252) + if (lookahead == '\r') SKIP(101) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 390: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(75) - if (lookahead == '\r') SKIP(103) + lookahead == ' ') SKIP(69) + if (lookahead == '\r') SKIP(102) END_STATE(); case 391: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(72) + if (lookahead == '\r') SKIP(103) + END_STATE(); + case 392: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(260) if (lookahead == '\r') SKIP(104) END_STATE(); - case 392: + case 393: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) + lookahead == ' ') SKIP(249) if (lookahead == '\r') SKIP(105) END_STATE(); - case 393: + case 394: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(259) if (lookahead == '\r') SKIP(106) END_STATE(); - case 394: + case 395: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(141) + lookahead == ' ') SKIP(139) if (lookahead == '\r') SKIP(107) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 395: + case 396: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(189) if (lookahead == '\r') SKIP(108) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 396: + case 397: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(187) if (lookahead == '\r') SKIP(109) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 397: + case 398: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(144) + lookahead == ' ') SKIP(141) if (lookahead == '\r') SKIP(112) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 398: + case 399: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(204) if (lookahead == '\r') SKIP(113) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 399: + case 400: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(173) if (lookahead == '\r') SKIP(114) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 400: + case 401: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(165) + lookahead == ' ') SKIP(170) if (lookahead == '\r') SKIP(115) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 401: + case 402: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176) + lookahead == ' ') SKIP(175) if (lookahead == '\r') SKIP(116) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 402: + case 403: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177) + lookahead == ' ') SKIP(172) if (lookahead == '\r') SKIP(117) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 403: + case 404: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(171) + lookahead == ' ') SKIP(177) if (lookahead == '\r') SKIP(118) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 404: + case 405: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(174) - if (lookahead == '\r') SKIP(119) - if (lookahead != 0) ADVANCE(806); + if (lookahead == '\r') SKIP(120) + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 405: + case 406: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245) + lookahead == ' ') SKIP(244) if (lookahead == '\r') SKIP(122) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 406: + case 407: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(175) + lookahead == ' ') SKIP(237) if (lookahead == '\r') SKIP(123) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 407: + case 408: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(238) + lookahead == ' ') SKIP(176) if (lookahead == '\r') SKIP(124) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 408: + case 409: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(178) if (lookahead == '\r') SKIP(125) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 409: + case 410: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(179) - if (lookahead == '\r') SKIP(126) - if (lookahead != 0) ADVANCE(806); + if (lookahead == '\r') SKIP(127) + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 410: + case 411: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239) + lookahead == ' ') SKIP(238) if (lookahead == '\r') SKIP(129) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 411: + case 412: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242) + lookahead == ' ') SKIP(241) if (lookahead == '\r') SKIP(130) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); - case 412: + case 413: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(182) if (lookahead == '\r') SKIP(132) - if (lookahead != 0) ADVANCE(806); - END_STATE(); - case 413: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(222) - if (lookahead == '\r') SKIP(133) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 414: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(190) - if (lookahead == '\r') SKIP(134) - if (lookahead != 0) ADVANCE(806); + if (lookahead == '\r') SKIP(133) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 415: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(148) - if (lookahead == '\r') SKIP(136) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(144) + if (lookahead == '\r') SKIP(135) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 416: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237) - if (lookahead == '\r') SKIP(138) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(236) + if (lookahead == '\r') SKIP(137) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 417: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(152) - if (lookahead == '\r') SKIP(140) - if (lookahead != 0) ADVANCE(806); + lookahead == ' ') SKIP(147) + if (lookahead == '\r') SKIP(138) + if (lookahead != 0) ADVANCE(804); END_STATE(); case 418: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 419: if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(806); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(804); END_STATE(); case 420: if (lookahead != 0 && - lookahead != '\r') ADVANCE(664); - if (lookahead == '\r') ADVANCE(665); + lookahead != '\r') ADVANCE(662); + if (lookahead == '\r') ADVANCE(663); END_STATE(); case 421: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(571); - if (lookahead == '#') ADVANCE(730); + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '#') ADVANCE(728); if (lookahead == '$') ADVANCE(272); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); if (lookahead == '-') ADVANCE(278); - if (lookahead == '0') ADVANCE(675); + if (lookahead == '0') ADVANCE(673); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') SKIP(436) - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(421) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(675); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 422: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(571); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '&') ADVANCE(621); - if (lookahead == ')') ADVANCE(530); + if (lookahead == '\n') ADVANCE(569); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '&') ADVANCE(620); + if (lookahead == ')') ADVANCE(529); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') SKIP(437) - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(422) END_STATE(); @@ -12113,332 +12115,332 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 425: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(585); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(581); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(425) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 426: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(587); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(348); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(326); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(426) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (lookahead != 0) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0 && + lookahead != ')') ADVANCE(804); END_STATE(); case 427: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(588); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(349); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(427) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 428: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(593); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(350); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(428) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0 && + lookahead != ')') ADVANCE(804); END_STATE(); case 429: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(597); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(327); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(350); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(429) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != ')') ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 430: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); + lookahead == '}') ADVANCE(651); if (lookahead == '\\') ADVANCE(356); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(430) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 431: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(608); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(404); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(405); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(431) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 432: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(611); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(670); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(668); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(404); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(432) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (lookahead != 0) ADVANCE(806); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 433: if (eof) ADVANCE(438); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(612); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); if (lookahead == '[' || lookahead == ']' || lookahead == '{' || - lookahead == '}') ADVANCE(653); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '`') ADVANCE(724); - if (lookahead == '|') ADVANCE(541); + lookahead == '}') ADVANCE(651); + if (lookahead == '\\') ADVANCE(410); + if (lookahead == '`') ADVANCE(722); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(433) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 434: if (eof) ADVANCE(438); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(508); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(507); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '+') ADVANCE(635); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(497); + if (lookahead == '+') ADVANCE(633); if (lookahead == ',') ADVANCE(448); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '/') ADVANCE(504); - if (lookahead == '0') ADVANCE(792); - if (lookahead == ':') ADVANCE(631); + if (lookahead == '-') ADVANCE(631); + if (lookahead == '/') ADVANCE(503); + if (lookahead == '0') ADVANCE(790); + if (lookahead == ':') ADVANCE(630); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(454); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(332); - if (lookahead == ']') ADVANCE(557); - if (lookahead == '^') ADVANCE(622); - if (lookahead == '_') ADVANCE(794); - if (lookahead == '`') ADVANCE(724); - if (lookahead == 'e') ADVANCE(804); - if (lookahead == 'i') ADVANCE(803); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '|') ADVANCE(540); - if (lookahead == '}') ADVANCE(684); - if (lookahead == '~') ADVANCE(637); + if (lookahead == ']') ADVANCE(556); + if (lookahead == '^') ADVANCE(621); + if (lookahead == '_') ADVANCE(792); + if (lookahead == '`') ADVANCE(722); + if (lookahead == 'e') ADVANCE(802); + if (lookahead == 'i') ADVANCE(801); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '|') ADVANCE(539); + if (lookahead == '}') ADVANCE(682); + if (lookahead == '~') ADVANCE(635); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434) - if (lookahead != 0) ADVANCE(806); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 435: if (eof) ADVANCE(438); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(730); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(728); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(529); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '(') ADVANCE(528); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '-') ADVANCE(796); + if (lookahead == '0') ADVANCE(667); if (lookahead == ';') ADVANCE(263); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '[') ADVANCE(555); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '[') ADVANCE(554); if (lookahead == '\\') ADVANCE(333); if (lookahead == ']' || - lookahead == '}') ADVANCE(653); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '{') ADVANCE(547); - if (lookahead == '|') ADVANCE(538); + lookahead == '}') ADVANCE(651); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '{') ADVANCE(546); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(435) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (lookahead != 0) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(804); END_STATE(); case 436: if (eof) ADVANCE(438); @@ -12461,14 +12463,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 440: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 441: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); case 442: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); @@ -12481,25 +12483,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 445: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(545); - if (lookahead == ';') ADVANCE(544); + if (lookahead == '&') ADVANCE(544); + if (lookahead == ';') ADVANCE(543); END_STATE(); case 446: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(543); + if (lookahead == ';') ADVANCE(542); END_STATE(); case 447: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 448: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(718); + if (lookahead == ',') ADVANCE(716); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 449: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(717); + if (lookahead == ',') ADVANCE(715); END_STATE(); case 450: ACCEPT_TOKEN(anon_sym_EQ); @@ -12508,8 +12510,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(478); if (lookahead == '\\') ADVANCE(419); - if (lookahead == '~') ADVANCE(561); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (lookahead == '~') ADVANCE(560); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 452: ACCEPT_TOKEN(anon_sym_EQ); @@ -12518,12 +12520,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 453: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(477); - if (lookahead == '~') ADVANCE(560); + if (lookahead == '~') ADVANCE(559); END_STATE(); case 454: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 455: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); @@ -12531,7 +12533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 456: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 457: ACCEPT_TOKEN(anon_sym_DASH_DASH); @@ -12539,7 +12541,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 458: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 459: ACCEPT_TOKEN(anon_sym_PLUS_EQ); @@ -12547,7 +12549,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 460: ACCEPT_TOKEN(anon_sym_PLUS_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 461: ACCEPT_TOKEN(anon_sym_DASH_EQ); @@ -12555,7 +12557,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 462: ACCEPT_TOKEN(anon_sym_DASH_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 463: ACCEPT_TOKEN(anon_sym_STAR_EQ); @@ -12563,7 +12565,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 464: ACCEPT_TOKEN(anon_sym_STAR_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 465: ACCEPT_TOKEN(anon_sym_SLASH_EQ); @@ -12571,7 +12573,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 466: ACCEPT_TOKEN(anon_sym_SLASH_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 467: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); @@ -12579,7 +12581,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 468: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 469: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); @@ -12587,7 +12589,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 470: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 471: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); @@ -12604,7 +12606,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 475: ACCEPT_TOKEN(anon_sym_CARET_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 476: ACCEPT_TOKEN(anon_sym_PIPE_EQ); @@ -12615,7 +12617,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 478: ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 479: ACCEPT_TOKEN(anon_sym_BANG_EQ); @@ -12623,7 +12625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 480: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 481: ACCEPT_TOKEN(anon_sym_LT_EQ); @@ -12639,13 +12641,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 485: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(567); - if (lookahead == '<') ADVANCE(617); + if (lookahead == '-') ADVANCE(566); + if (lookahead == '<') ADVANCE(616); END_STATE(); case 486: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(567); - if (lookahead == '<') ADVANCE(617); + if (lookahead == '-') ADVANCE(566); + if (lookahead == '<') ADVANCE(616); if (lookahead == '=') ADVANCE(471); END_STATE(); case 487: @@ -12664,7 +12666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+') ADVANCE(456); if (lookahead == '=') ADVANCE(460); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 491: ACCEPT_TOKEN(anon_sym_PLUS); @@ -12677,13 +12679,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 493: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(458); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '0') ADVANCE(667); if (lookahead == '=') ADVANCE(462); if (lookahead == '\\') ADVANCE(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); - if (!sym_word_character_set_3(lookahead)) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 494: ACCEPT_TOKEN(anon_sym_DASH); @@ -12692,60 +12692,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 495: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(457); - if (lookahead == '=') ADVANCE(461); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); + if (lookahead == '0') ADVANCE(667); + if (lookahead == '\\') ADVANCE(419); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(669); - if (lookahead == '\\') ADVANCE(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 497: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(512); + if (lookahead == '=') ADVANCE(464); + if (lookahead == '\\') ADVANCE(419); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 498: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(513); + if (lookahead == '*') ADVANCE(514); if (lookahead == '=') ADVANCE(464); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 499: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(515); - if (lookahead == '=') ADVANCE(464); - if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (lookahead == '*') ADVANCE(511); + if (lookahead == '=') ADVANCE(463); END_STATE(); case 500: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(512); + if (lookahead == '*') ADVANCE(513); if (lookahead == '=') ADVANCE(463); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(514); - if (lookahead == '=') ADVANCE(463); - END_STATE(); - case 502: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 503: + case 502: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 504: + case 503: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(714); - if (lookahead == '%') ADVANCE(716); - if (lookahead == '/') ADVANCE(712); + if (lookahead == '#') ADVANCE(712); + if (lookahead == '%') ADVANCE(714); + if (lookahead == '/') ADVANCE(710); if (lookahead == '=') ADVANCE(466); if (lookahead == '\\') ADVANCE(419); if (lookahead != 0 && @@ -12755,2618 +12746,2567 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ';' || '>' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 505: + case 504: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(713); - if (lookahead == '%') ADVANCE(715); - if (lookahead == '/') ADVANCE(711); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '%') ADVANCE(713); + if (lookahead == '/') ADVANCE(709); END_STATE(); - case 506: + case 505: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '=') ADVANCE(466); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 507: + case 506: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '=') ADVANCE(465); END_STATE(); - case 508: + case 507: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(709); + if (lookahead == '%') ADVANCE(707); if (lookahead == '=') ADVANCE(468); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_5(lookahead)) ADVANCE(806); + if (!sym_word_character_set_3(lookahead)) ADVANCE(804); END_STATE(); - case 509: + case 508: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(708); + if (lookahead == '%') ADVANCE(706); END_STATE(); - case 510: + case 509: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(468); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 511: + case 510: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(467); END_STATE(); - case 512: + case 511: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 513: + case 512: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == '=') ADVANCE(470); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 514: + case 513: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == '=') ADVANCE(469); END_STATE(); - case 515: + case 514: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 516: + case 515: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(564); + if (lookahead == '&') ADVANCE(563); END_STATE(); - case 517: + case 516: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '(') ADVANCE(726); + if (lookahead == '&') ADVANCE(563); + if (lookahead == '(') ADVANCE(724); END_STATE(); - case 518: + case 517: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '(') ADVANCE(726); + if (lookahead == '&') ADVANCE(563); + if (lookahead == '(') ADVANCE(724); if (lookahead == '<') ADVANCE(486); if (lookahead == '=') ADVANCE(481); END_STATE(); - case 519: + case 518: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(564); - if (lookahead == '(') ADVANCE(726); + if (lookahead == '&') ADVANCE(563); + if (lookahead == '(') ADVANCE(724); if (lookahead == '<') ADVANCE(485); END_STATE(); - case 520: + case 519: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(564); + if (lookahead == '&') ADVANCE(563); if (lookahead == '<') ADVANCE(485); END_STATE(); - case 521: + case 520: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(726); + if (lookahead == '(') ADVANCE(724); if (lookahead == '<') ADVANCE(487); if (lookahead == '=') ADVANCE(481); END_STATE(); - case 522: + case 521: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '<') ADVANCE(487); if (lookahead == '=') ADVANCE(481); END_STATE(); - case 523: + case 522: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '(') ADVANCE(727); + if (lookahead == '&') ADVANCE(564); + if (lookahead == '(') ADVANCE(725); if (lookahead == '=') ADVANCE(482); if (lookahead == '>') ADVANCE(489); - if (lookahead == '|') ADVANCE(566); + if (lookahead == '|') ADVANCE(565); END_STATE(); - case 524: + case 523: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(565); - if (lookahead == '(') ADVANCE(727); + if (lookahead == '&') ADVANCE(564); + if (lookahead == '(') ADVANCE(725); if (lookahead == '>') ADVANCE(488); - if (lookahead == '|') ADVANCE(566); + if (lookahead == '|') ADVANCE(565); END_STATE(); - case 525: + case 524: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(565); + if (lookahead == '&') ADVANCE(564); if (lookahead == '>') ADVANCE(488); - if (lookahead == '|') ADVANCE(566); + if (lookahead == '|') ADVANCE(565); END_STATE(); - case 526: + case 525: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(727); + if (lookahead == '(') ADVANCE(725); if (lookahead == '=') ADVANCE(482); if (lookahead == '>') ADVANCE(489); END_STATE(); - case 527: + case 526: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '=') ADVANCE(482); if (lookahead == '>') ADVANCE(489); END_STATE(); - case 528: + case 527: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 529: + case 528: ACCEPT_TOKEN(anon_sym_LPAREN); if (lookahead == '(') ADVANCE(442); END_STATE(); - case 530: + case 529: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 531: + case 530: ACCEPT_TOKEN(anon_sym_RPAREN); if (lookahead == ')') ADVANCE(443); END_STATE(); - case 532: + case 531: ACCEPT_TOKEN(aux_sym__c_word_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(532); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 533: + case 532: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 534: + case 533: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 535: + case 534: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 536: + case 535: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 537: + case 536: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 538: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(548); END_STATE(); case 539: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(549); + if (lookahead == '&') ADVANCE(548); + if (lookahead == '=') ADVANCE(476); + if (lookahead == '|') ADVANCE(484); END_STATE(); case 540: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(549); - if (lookahead == '=') ADVANCE(476); + if (lookahead == '&') ADVANCE(548); if (lookahead == '|') ADVANCE(484); END_STATE(); case 541: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(549); + if (lookahead == '=') ADVANCE(476); if (lookahead == '|') ADVANCE(484); END_STATE(); case 542: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(476); - if (lookahead == '|') ADVANCE(484); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 543: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + if (lookahead == '&') ADVANCE(545); END_STATE(); case 544: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(546); - END_STATE(); - case 545: ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); - case 546: + case 545: ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); - case 547: + case 546: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 548: + case 547: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 549: + case 548: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 550: + case 549: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 551: + case 550: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(480); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 552: + case 551: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '=') ADVANCE(479); END_STATE(); - case 553: + case 552: ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 554: ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(557); END_STATE(); case 555: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(558); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 556: ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == ']') ADVANCE(558); END_STATE(); case 557: - ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead == ']') ADVANCE(559); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 560: ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') ADVANCE(419); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 561: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(562); END_STATE(); case 562: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(563); + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); case 563: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); case 564: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_GT_AMP); END_STATE(); case 565: - ACCEPT_TOKEN(anon_sym_GT_AMP); + ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); case 566: - ACCEPT_TOKEN(anon_sym_GT_PIPE); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(567); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '\\') ADVANCE(335); + if (lookahead == '~') ADVANCE(635); END_STATE(); case 568: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(568); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '\\') ADVANCE(335); - if (lookahead == '~') ADVANCE(637); + if (lookahead == '\\') ADVANCE(290); END_STATE(); case 569: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(569); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '\\') ADVANCE(290); END_STATE(); case 570: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(570); - if (lookahead == '\\') ADVANCE(308); + if (lookahead == '\\') ADVANCE(342); END_STATE(); case 571: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(571); + if (lookahead == '\\') ADVANCE(308); END_STATE(); case 572: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(572); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '\\') ADVANCE(342); + if (lookahead == '+') ADVANCE(634); + if (lookahead == '-') ADVANCE(632); + if (lookahead == '\\') ADVANCE(395); + if (lookahead == '~') ADVANCE(635); END_STATE(); case 573: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(573); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(345); + if (lookahead == '\\') ADVANCE(325); END_STATE(); case 574: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(574); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(292); + if (lookahead == '\\') ADVANCE(398); END_STATE(); case 575: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(575); - if (lookahead == '+') ADVANCE(636); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '\\') ADVANCE(394); - if (lookahead == '~') ADVANCE(637); + if (lookahead == '\\') ADVANCE(309); END_STATE(); case 576: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(576); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '\\') ADVANCE(325); + if (lookahead == '\\') ADVANCE(292); END_STATE(); case 577: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(577); - if (lookahead == '\\') ADVANCE(309); + if (lookahead == '\\') ADVANCE(415); END_STATE(); case 578: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(578); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '\\') ADVANCE(397); + if (lookahead == '\\') ADVANCE(310); END_STATE(); case 579: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(579); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(346); + if (lookahead == '\\') ADVANCE(293); END_STATE(); case 580: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(580); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(293); + if (lookahead == '\\') ADVANCE(417); END_STATE(); case 581: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(581); - if (lookahead == '\\') ADVANCE(310); + if (lookahead == '\\') ADVANCE(330); END_STATE(); case 582: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(582); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '\\') ADVANCE(415); + if (lookahead == '\\') ADVANCE(294); END_STATE(); case 583: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(583); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(347); + if (lookahead == '\\') ADVANCE(345); END_STATE(); case 584: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(584); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(294); + if (lookahead == '\\') ADVANCE(311); END_STATE(); case 585: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(585); - if (lookahead == '\\') ADVANCE(330); + if (lookahead == '\\') ADVANCE(295); END_STATE(); case 586: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(586); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '\\') ADVANCE(417); + if (lookahead == '\\') ADVANCE(346); END_STATE(); case 587: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(587); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(348); + if (lookahead == '\\') ADVANCE(313); END_STATE(); case 588: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(588); - if (lookahead == '-') ADVANCE(496); if (lookahead == '\\') ADVANCE(326); END_STATE(); case 589: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(589); - if (lookahead == '\\') ADVANCE(311); + if (lookahead == '\\') ADVANCE(347); END_STATE(); case 590: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(590); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(349); + if (lookahead == '\\') ADVANCE(317); END_STATE(); case 591: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(591); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(295); + if (lookahead == '\\') ADVANCE(296); END_STATE(); case 592: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(592); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(348); END_STATE(); case 593: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(593); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(350); + if (lookahead == '\\') ADVANCE(318); END_STATE(); case 594: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(594); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(296); + if (lookahead == '\\') ADVANCE(297); END_STATE(); case 595: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(595); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '\\') ADVANCE(349); END_STATE(); case 596: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(596); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(353); + if (lookahead == '\\') ADVANCE(327); END_STATE(); case 597: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(597); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(297); + if (lookahead == '\\') ADVANCE(350); END_STATE(); case 598: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(598); - if (lookahead == '\\') ADVANCE(318); + if (lookahead == '\\') ADVANCE(298); END_STATE(); case 599: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(599); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(400); + if (lookahead == '\\') ADVANCE(354); END_STATE(); case 600: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(600); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(327); + if (lookahead == '\\') ADVANCE(300); END_STATE(); case 601: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(601); - if (lookahead == '-') ADVANCE(798); if (lookahead == '\\') ADVANCE(355); END_STATE(); case 602: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(602); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(298); + if (lookahead == '\\') ADVANCE(312); END_STATE(); case 603: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(603); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(356); + if (lookahead == '\\') ADVANCE(401); END_STATE(); case 604: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(604); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(301); + if (lookahead == '\\') ADVANCE(356); END_STATE(); case 605: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(605); - if (lookahead == '-') ADVANCE(798); if (lookahead == '\\') ADVANCE(403); END_STATE(); case 606: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(606); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '\\') ADVANCE(312); + if (lookahead == '\\') ADVANCE(400); END_STATE(); case 607: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(607); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(399); + if (lookahead == '\\') ADVANCE(405); END_STATE(); case 608: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(608); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(404); + if (lookahead == '\\') ADVANCE(402); END_STATE(); case 609: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(609); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(406); + if (lookahead == '\\') ADVANCE(408); END_STATE(); case 610: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(610); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(401); + if (lookahead == '\\') ADVANCE(404); END_STATE(); case 611: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(611); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(402); + if (lookahead == '\\') ADVANCE(409); END_STATE(); case 612: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(612); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(408); + if (lookahead == '\\') ADVANCE(410); END_STATE(); case 613: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(613); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(409); + if (lookahead == '\\') ADVANCE(364); END_STATE(); case 614: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(614); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(366); + if (lookahead == '\\') ADVANCE(369); END_STATE(); case 615: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(615); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(370); + if (lookahead == '\\') ADVANCE(413); END_STATE(); case 616: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(616); - if (lookahead == '-') ADVANCE(798); - if (lookahead == '\\') ADVANCE(412); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 617: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 618: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(483); + if (lookahead == '=') ADVANCE(473); END_STATE(); case 619: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(483); if (lookahead == '=') ADVANCE(473); + if (lookahead == '>') ADVANCE(561); END_STATE(); case 620: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(483); - if (lookahead == '=') ADVANCE(473); - if (lookahead == '>') ADVANCE(562); + if (lookahead == '>') ADVANCE(561); END_STATE(); case 621: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(483); - if (lookahead == '>') ADVANCE(562); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(475); + if (lookahead == '\\') ADVANCE(419); + if (lookahead == '^') ADVANCE(718); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 622: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') ADVANCE(475); if (lookahead == '\\') ADVANCE(419); - if (lookahead == '^') ADVANCE(720); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 623: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(475); - if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (lookahead == '=') ADVANCE(474); END_STATE(); case 624: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(474); + if (lookahead == '^') ADVANCE(717); END_STATE(); case 625: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(719); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 626: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') ADVANCE(419); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 627: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 628: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(699); + if (lookahead == '-') ADVANCE(696); + if (lookahead == '=') ADVANCE(693); + if (lookahead == '?') ADVANCE(703); + if (lookahead == '\\') ADVANCE(419); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); case 629: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(701); - if (lookahead == '-') ADVANCE(698); - if (lookahead == '=') ADVANCE(695); - if (lookahead == '?') ADVANCE(705); - if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (lookahead == '+') ADVANCE(698); + if (lookahead == '-') ADVANCE(695); + if (lookahead == '=') ADVANCE(692); + if (lookahead == '?') ADVANCE(702); END_STATE(); case 630: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(700); - if (lookahead == '-') ADVANCE(697); - if (lookahead == '=') ADVANCE(694); - if (lookahead == '?') ADVANCE(704); + if (lookahead == '\\') ADVANCE(419); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 631: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 632: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(637); END_STATE(); case 633: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(639); + ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); case 634: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(639); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(636); END_STATE(); case 635: - ACCEPT_TOKEN(anon_sym_PLUS2); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 636: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(638); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 637: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DASH_DASH2); END_STATE(); case 638: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); case 639: - ACCEPT_TOKEN(anon_sym_DASH_DASH2); + ACCEPT_TOKEN(aux_sym_brace_expression_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(639); END_STATE(); case 640: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 641: - ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '\\') ADVANCE(419); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); case 642: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); case 643: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); case 644: - ACCEPT_TOKEN(anon_sym_RBRACE2); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 645: - ACCEPT_TOKEN(aux_sym_concatenation_token1); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(265); + if (lookahead == '(') ADVANCE(720); + if (lookahead == '`') ADVANCE(723); + if (lookahead == '{') ADVANCE(681); END_STATE(); case 646: ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(265); + if (lookahead == '(') ADVANCE(719); + if (lookahead == '`') ADVANCE(723); + if (lookahead == '{') ADVANCE(681); END_STATE(); case 647: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(265); - if (lookahead == '(') ADVANCE(722); - if (lookahead == '`') ADVANCE(725); - if (lookahead == '{') ADVANCE(683); + if (lookahead == '(') ADVANCE(720); + if (lookahead == '`') ADVANCE(723); + if (lookahead == '{') ADVANCE(681); END_STATE(); case 648: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(265); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '`') ADVANCE(725); - if (lookahead == '{') ADVANCE(683); + if (lookahead == '(') ADVANCE(719); + if (lookahead == '`') ADVANCE(723); END_STATE(); case 649: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(722); - if (lookahead == '`') ADVANCE(725); - if (lookahead == '{') ADVANCE(683); + if (lookahead == '(') ADVANCE(719); + if (lookahead == '`') ADVANCE(723); + if (lookahead == '{') ADVANCE(681); END_STATE(); case 650: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '`') ADVANCE(725); + if (lookahead == '{') ADVANCE(681); END_STATE(); case 651: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(721); - if (lookahead == '`') ADVANCE(725); - if (lookahead == '{') ADVANCE(683); - END_STATE(); - case 652: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(683); - END_STATE(); - case 653: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 654: + case 652: ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(559); + if (lookahead == ']') ADVANCE(558); END_STATE(); - case 655: + case 653: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 656: + case 654: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\n') ADVANCE(660); if (lookahead == '\\') ADVANCE(420); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); END_STATE(); - case 657: + case 655: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '\\') ADVANCE(728); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\\') ADVANCE(726); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(657); + lookahead != '`') ADVANCE(655); END_STATE(); - case 658: + case 656: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(660); + if (lookahead == '\n') ADVANCE(658); if (lookahead == '\\') ADVANCE(420); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); END_STATE(); - case 659: + case 657: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') ADVANCE(661); + if (lookahead == '\n') ADVANCE(659); if (lookahead == '\\') ADVANCE(420); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); END_STATE(); - case 660: + case 658: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(321); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(322); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(660); + lookahead == ' ') ADVANCE(658); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); if (lookahead != 0 && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); END_STATE(); - case 661: + case 659: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(323); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(661); + lookahead == ' ') ADVANCE(659); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); if (lookahead != 0 && lookahead != '"' && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); END_STATE(); - case 662: + case 660: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(657); - if (lookahead == '$') ADVANCE(649); - if (lookahead == '(') ADVANCE(663); - if (lookahead == '\\') ADVANCE(386); - if (lookahead == '`') ADVANCE(723); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(655); + if (lookahead == '$') ADVANCE(647); + if (lookahead == '(') ADVANCE(661); + if (lookahead == '\\') ADVANCE(387); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(662); - if (lookahead != 0) ADVANCE(664); + lookahead == ' ') ADVANCE(660); + if (lookahead != 0) ADVANCE(662); END_STATE(); - case 663: + case 661: ACCEPT_TOKEN(sym__string_content); if (lookahead == '(') ADVANCE(442); if (lookahead == '\\') ADVANCE(420); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); END_STATE(); - case 664: + case 662: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\\') ADVANCE(420); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); END_STATE(); - case 665: + case 663: ACCEPT_TOKEN(sym__string_content); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && lookahead != '\\' && - lookahead != '`') ADVANCE(664); + lookahead != '`') ADVANCE(662); if (lookahead == '\\') ADVANCE(420); END_STATE(); - case 666: + case 664: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 667: + case 665: ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); - case 668: + case 666: ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(667); + if (lookahead == '\'') ADVANCE(665); if (lookahead == '\\') ADVANCE(266); if (lookahead != 0) ADVANCE(265); END_STATE(); - case 669: + case 667: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(680); + if (lookahead == '#') ADVANCE(678); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 'x') ADVANCE(805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (!sym_word_character_set_6(lookahead)) ADVANCE(806); + if (lookahead == 'x') ADVANCE(803); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (!sym_word_character_set_5(lookahead)) ADVANCE(804); END_STATE(); - case 670: + case 668: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(680); + if (lookahead == '#') ADVANCE(678); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 'x') ADVANCE(735); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (lookahead == 'x') ADVANCE(733); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_7(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_6(lookahead)) ADVANCE(804); END_STATE(); - case 671: + case 669: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(680); + if (lookahead == '#') ADVANCE(678); if (lookahead == '\\') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (!sym_word_character_set_6(lookahead)) ADVANCE(806); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (!sym_word_character_set_5(lookahead)) ADVANCE(804); END_STATE(); - case 672: + case 670: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(680); + if (lookahead == '#') ADVANCE(678); if (lookahead == '\\') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_7(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_6(lookahead)) ADVANCE(804); END_STATE(); - case 673: + case 671: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(680); + if (lookahead == '#') ADVANCE(678); if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_7(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_6(lookahead)) ADVANCE(804); END_STATE(); - case 674: + case 672: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(681); + if (lookahead == '#') ADVANCE(679); if (lookahead == 'x') ADVANCE(418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); - case 675: + case 673: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(681); - if (lookahead == 'x') ADVANCE(746); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (lookahead == '#') ADVANCE(679); + if (lookahead == 'x') ADVANCE(744); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 676: + case 674: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(676); + if (lookahead == '#') ADVANCE(679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); - case 677: + case 675: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (lookahead == '#') ADVANCE(679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 678: + case 676: ACCEPT_TOKEN(aux_sym_number_token1); if (lookahead == '\\') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(678); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(676); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 679: + case 677: ACCEPT_TOKEN(aux_sym_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); END_STATE(); - case 680: + case 678: ACCEPT_TOKEN(aux_sym_number_token2); if (lookahead == '\\') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(678); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(676); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 681: + case 679: ACCEPT_TOKEN(aux_sym_number_token2); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(679); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(677); END_STATE(); - case 682: + case 680: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 683: + case 681: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 684: + case 682: ACCEPT_TOKEN(anon_sym_RBRACE3); END_STATE(); - case 685: + case 683: ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); - case 686: + case 684: ACCEPT_TOKEN(anon_sym_BANG2); if (lookahead == '=') ADVANCE(480); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 687: + case 685: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 688: + case 686: ACCEPT_TOKEN(anon_sym_AT); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 689: + case 687: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 690: + case 688: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(513); + if (lookahead == '*') ADVANCE(512); if (lookahead == '=') ADVANCE(464); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 691: + case 689: ACCEPT_TOKEN(anon_sym_POUND2); END_STATE(); - case 692: + case 690: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 693: + case 691: ACCEPT_TOKEN(anon_sym_EQ2); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 694: + case 692: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 695: + case 693: ACCEPT_TOKEN(anon_sym_COLON_EQ); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 696: + case 694: ACCEPT_TOKEN(anon_sym_DASH3); END_STATE(); - case 697: + case 695: ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); - case 698: + case 696: ACCEPT_TOKEN(anon_sym_COLON_DASH); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 699: + case 697: ACCEPT_TOKEN(anon_sym_PLUS3); END_STATE(); - case 700: + case 698: ACCEPT_TOKEN(anon_sym_COLON_PLUS); END_STATE(); - case 701: + case 699: ACCEPT_TOKEN(anon_sym_COLON_PLUS); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 702: + case 700: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 703: + case 701: ACCEPT_TOKEN(anon_sym_QMARK2); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 704: + case 702: ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); - case 705: + case 703: ACCEPT_TOKEN(anon_sym_COLON_QMARK); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 706: + case 704: ACCEPT_TOKEN(aux_sym__expansion_expression_token1); if (lookahead == '\\') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(704); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 707: + case 705: ACCEPT_TOKEN(aux_sym__expansion_expression_token1); - if (lookahead == '\\') ADVANCE(383); + if (lookahead == '\\') ADVANCE(384); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(707); + lookahead == ' ') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(706); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(704); END_STATE(); - case 708: + case 706: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); END_STATE(); - case 709: + case 707: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 710: + case 708: ACCEPT_TOKEN(aux_sym__expansion_regex_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(710); + lookahead == ' ') ADVANCE(708); END_STATE(); - case 711: + case 709: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 712: + case 710: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 713: + case 711: ACCEPT_TOKEN(anon_sym_SLASH_POUND); END_STATE(); - case 714: + case 712: ACCEPT_TOKEN(anon_sym_SLASH_POUND); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 715: + case 713: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); END_STATE(); - case 716: + case 714: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 717: + case 715: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); END_STATE(); - case 718: + case 716: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 719: + case 717: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 720: + case 718: ACCEPT_TOKEN(anon_sym_CARET_CARET); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 721: + case 719: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 722: + case 720: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(640); + if (lookahead == '(') ADVANCE(638); END_STATE(); - case 723: + case 721: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 724: + case 722: ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(645); + if (lookahead == '`') ADVANCE(643); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(285); END_STATE(); - case 725: + case 723: ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); END_STATE(); - case 726: + case 724: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 727: + case 725: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 728: + case 726: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(664); - if (lookahead == '\r') ADVANCE(657); - if (lookahead != 0) ADVANCE(657); + if (lookahead == '\n') ADVANCE(662); + if (lookahead == '\r') ADVANCE(655); + if (lookahead != 0) ADVANCE(655); END_STATE(); - case 729: + case 727: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(731); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(729); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) ADVANCE(730); + (11 <= lookahead && lookahead <= '\r')) ADVANCE(728); END_STATE(); - case 730: + case 728: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(730); + lookahead != '\n') ADVANCE(728); END_STATE(); - case 731: + case 729: ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(729); - if (!sym_word_character_set_1(lookahead)) ADVANCE(731); + if (lookahead == '\\') ADVANCE(727); + if (!sym_word_character_set_1(lookahead)) ADVANCE(729); END_STATE(); - case 732: + case 730: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 'a') ADVANCE(733); + if (lookahead == 'a') ADVANCE(731); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 733: + case 731: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 'c') ADVANCE(534); + if (lookahead == 'c') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 734: + case 732: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 's') ADVANCE(732); + if (lookahead == 's') ADVANCE(730); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 735: + case 733: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 736: + case 734: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(736); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(734); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 737: + case 735: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'a') ADVANCE(738); + if (lookahead == 'a') ADVANCE(736); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 738: + case 736: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'c') ADVANCE(536); + if (lookahead == 'c') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 739: + case 737: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 's') ADVANCE(737); + if (lookahead == 's') ADVANCE(735); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 740: + case 738: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 741: + case 739: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 742: + case 740: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(743); + if (lookahead == 'a') ADVANCE(741); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 743: + case 741: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(537); + if (lookahead == 'c') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 744: + case 742: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == 'n') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 745: + case 743: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(742); + if (lookahead == 's') ADVANCE(740); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 746: + case 744: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(677); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 747: + case 745: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 748: + case 746: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(569); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(568); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(499); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(290); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(540); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(806); + (lookahead < '[' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 749: + case 747: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(570); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(571); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == '_') ADVANCE(796); - if (lookahead == 'e') ADVANCE(745); - if (lookahead == '|') ADVANCE(541); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(574); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '\'') ADVANCE(264); - if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(445); if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '_') ADVANCE(794); + if (lookahead == 'e') ADVANCE(743); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + lookahead == ' ') SKIP(134) + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 751: + case 748: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(576); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '\n') ADVANCE(573); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(499); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(325); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(540); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(140) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(806); + (lookahead < '[' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 752: + case 749: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(577); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(575); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(309); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(143) + lookahead == ' ') SKIP(142) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 753: + case 750: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(580); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(576); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(293); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(292); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(737); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(146) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(143) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 754: + case 751: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(581); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(578); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(310); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(147) + lookahead == ' ') SKIP(145) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 755: + case 752: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(584); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(579); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(294); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(293); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(150) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(146) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && + lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 756: + case 753: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(585); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(581); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(151) + lookahead == ' ') SKIP(148) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 757: + case 754: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(588); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(582); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(326); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(294); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == 'e') ADVANCE(737); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(154) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(149) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 758: + case 755: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(589); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(621); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(584); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(311); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(155) + lookahead == ' ') SKIP(151) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 759: + case 756: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(591); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(585); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(295); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(157) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(152) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && - lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 760: + case 757: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(592); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); + if (lookahead == '\n') ADVANCE(587); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); if (lookahead == '&') ADVANCE(262); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(313); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(158) + lookahead == ' ') SKIP(154) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 761: + case 758: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(594); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(445); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(296); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(326); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(160) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(155) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 762: + case 759: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(595); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); if (lookahead == '&') ADVANCE(283); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(516); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(515); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(317); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(161) + lookahead == ' ') SKIP(157) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 763: + case 760: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(597); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(297); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(445); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(296); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(158) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && + lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 764: + case 761: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(598); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '&') ADVANCE(618); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '\n') ADVANCE(593); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '&') ADVANCE(617); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); + if (lookahead == '0') ADVANCE(791); if (lookahead == ';') ADVANCE(446); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(318); - if (lookahead == '_') ADVANCE(796); - if (lookahead == 'i') ADVANCE(744); + if (lookahead == '_') ADVANCE(794); + if (lookahead == 'i') ADVANCE(742); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164) + lookahead == ' ') SKIP(160) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 765: + case 762: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(600); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(621); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(297); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(161) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (lookahead != 0 && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); + END_STATE(); + case 763: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(620); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '(') ADVANCE(267); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == ';') ADVANCE(446); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(327); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(163) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 766: + case 764: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(602); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(298); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(168) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(165) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 767: + case 765: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(604); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(300); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(170) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(167) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 768: + case 766: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(606); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '&') ADVANCE(618); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '&') ADVANCE(617); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == ';') ADVANCE(446); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(312); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(172) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + lookahead == ' ') SKIP(169) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 769: + case 767: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(551); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); - if (lookahead == '%') ADVANCE(510); - if (lookahead == '&') ADVANCE(620); + if (lookahead == '!') ADVANCE(550); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(619); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(499); + if (lookahead == '*') ADVANCE(498); if (lookahead == '+') ADVANCE(490); if (lookahead == '-') ADVANCE(493); - if (lookahead == '/') ADVANCE(506); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(518); + if (lookahead == '/') ADVANCE(505); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(517); if (lookahead == '=') ADVANCE(451); - if (lookahead == '>') ADVANCE(523); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '>') ADVANCE(522); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(291); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(623); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(540); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(622); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(539); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && - (lookahead < ';' || '}' < lookahead)) ADVANCE(806); + (lookahead < ';' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 770: + case 768: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(283); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(517); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(516); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(307); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 771: + case 769: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '=') ADVANCE(800); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '=') ADVANCE(798); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 772: + case 770: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(302); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 773: + case 771: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '&') ADVANCE(262); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); - if (lookahead == '<') ADVANCE(519); - if (lookahead == '>') ADVANCE(524); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); + if (lookahead == '<') ADVANCE(518); + if (lookahead == '>') ADVANCE(523); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); if (lookahead == '\\') ADVANCE(304); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != ')' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 774: + case 772: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(553); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(647); + if (lookahead == '!') ADVANCE(552); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(645); if (lookahead == '\'') ADVANCE(264); if (lookahead == '(') ADVANCE(267); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '-') ADVANCE(496); - if (lookahead == '0') ADVANCE(791); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(501); + if (lookahead == '-') ADVANCE(495); + if (lookahead == '0') ADVANCE(789); if (lookahead == '<') ADVANCE(268); if (lookahead == '>') ADVANCE(269); - if (lookahead == '?') ADVANCE(627); - if (lookahead == '@') ADVANCE(790); - if (lookahead == '\\') ADVANCE(314); - if (lookahead == '_') ADVANCE(795); - if (lookahead == '`') ADVANCE(723); + if (lookahead == '?') ADVANCE(626); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '\\') ADVANCE(315); + if (lookahead == '_') ADVANCE(793); + if (lookahead == '`') ADVANCE(721); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(195) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); if (lookahead != 0 && lookahead != '&' && lookahead != ';' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(806); + (lookahead < '{' || '}' < lookahead)) ADVANCE(804); END_STATE(); - case 775: + case 773: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(531); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(530); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(303); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(301); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(205) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 776: + case 774: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(328); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(206) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 777: + case 775: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(329); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(331); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(207) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 778: + case 776: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(305); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(208) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 779: + case 777: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(300); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(209) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 780: + case 778: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(328); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(329); if (lookahead == ']') ADVANCE(284); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(210) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 781: + case 779: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(552); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '%') ADVANCE(511); - if (lookahead == '&') ADVANCE(619); - if (lookahead == '*') ADVANCE(500); + if (lookahead == '!') ADVANCE(551); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(618); + if (lookahead == '*') ADVANCE(499); if (lookahead == '+') ADVANCE(491); - if (lookahead == '-') ADVANCE(495); - if (lookahead == '/') ADVANCE(507); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(522); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '/') ADVANCE(506); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(521); if (lookahead == '=') ADVANCE(453); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(306); - if (lookahead == '^') ADVANCE(624); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(542); + if (lookahead == '^') ADVANCE(623); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(541); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(211) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 782: + case 780: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); if (lookahead == '&') ADVANCE(262); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(315); - if (lookahead == ']') ADVANCE(556); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(314); + if (lookahead == ']') ADVANCE(555); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(223) + lookahead == ' ') SKIP(222) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 783: + case 781: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); if (lookahead == '&') ADVANCE(262); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '<') ADVANCE(520); - if (lookahead == '>') ADVANCE(525); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '<') ADVANCE(519); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(316); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(541); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(540); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(224) + lookahead == ' ') SKIP(223) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 784: + case 782: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == ')') ADVANCE(530); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == ')') ADVANCE(529); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(320); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '|') ADVANCE(538); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(319); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '|') ADVANCE(537); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(225) + lookahead == ' ') SKIP(224) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 785: + case 783: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '/') ADVANCE(503); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(319); - if (lookahead == '_') ADVANCE(796); - if (lookahead == '}') ADVANCE(684); + if (lookahead == '/') ADVANCE(502); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(320); + if (lookahead == '_') ADVANCE(794); + if (lookahead == '}') ADVANCE(682); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) + lookahead == ' ') SKIP(225) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 786: + case 784: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '"') ADVANCE(655); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '"') ADVANCE(653); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '\\') ADVANCE(321); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) + lookahead == ' ') SKIP(227) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 787: + case 785: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(550); - if (lookahead == '#') ADVANCE(682); - if (lookahead == '$') ADVANCE(646); - if (lookahead == '*') ADVANCE(497); + if (lookahead == '!') ADVANCE(549); + if (lookahead == '#') ADVANCE(680); + if (lookahead == '$') ADVANCE(644); + if (lookahead == '*') ADVANCE(496); if (lookahead == '-') ADVANCE(492); - if (lookahead == '0') ADVANCE(793); - if (lookahead == '?') ADVANCE(626); - if (lookahead == '@') ADVANCE(789); + if (lookahead == '0') ADVANCE(791); + if (lookahead == '?') ADVANCE(625); + if (lookahead == '@') ADVANCE(787); if (lookahead == '\\') ADVANCE(324); - if (lookahead == '_') ADVANCE(796); + if (lookahead == '_') ADVANCE(794); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(230) + lookahead == ' ') SKIP(229) if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 788: + case 786: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); if (lookahead == '\\') ADVANCE(15); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(788); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); END_STATE(); - case 789: + case 787: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 790: + case 788: ACCEPT_TOKEN(anon_sym_AT2); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 791: + case 789: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(680); + if (lookahead == '#') ADVANCE(678); if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'x') ADVANCE(740); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (lookahead == 'x') ADVANCE(738); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_7(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_6(lookahead)) ADVANCE(804); END_STATE(); - case 792: + case 790: ACCEPT_TOKEN(anon_sym_0); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 793: + case 791: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 794: + case 792: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 795: + case 793: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(741); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(739); + if (!sym_word_character_set_4(lookahead)) ADVANCE(804); END_STATE(); - case 796: + case 794: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(747); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(745); END_STATE(); - case 797: + case 795: ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(643); + if (lookahead == '.') ADVANCE(641); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 798: + case 796: ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(669); + if (lookahead == '0') ADVANCE(667); if (lookahead == '\\') ADVANCE(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); - if (!sym_word_character_set_4(lookahead)) ADVANCE(806); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 799: + case 797: ACCEPT_TOKEN(sym_word); if (lookahead == '=') ADVANCE(480); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 800: + case 798: ACCEPT_TOKEN(sym_word); if (lookahead == '=') ADVANCE(478); if (lookahead == '\\') ADVANCE(419); - if (lookahead == '~') ADVANCE(561); - if (!sym_word_character_set_2(lookahead)) ADVANCE(806); + if (lookahead == '~') ADVANCE(560); + if (!sym_word_character_set_2(lookahead)) ADVANCE(804); END_STATE(); - case 801: + case 799: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 'a') ADVANCE(802); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (lookahead == 'a') ADVANCE(800); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 802: + case 800: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 'c') ADVANCE(535); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (lookahead == 'c') ADVANCE(534); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 803: + case 801: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(419); if (lookahead == 'n') ADVANCE(440); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 804: + case 802: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(419); - if (lookahead == 's') ADVANCE(801); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (lookahead == 's') ADVANCE(799); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 805: + case 803: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(671); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); - case 806: + case 804: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(419); - if (!sym_word_character_set_1(lookahead)) ADVANCE(806); - END_STATE(); - case 807: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); + if (!sym_word_character_set_1(lookahead)) ADVANCE(804); END_STATE(); default: return false; @@ -15729,13 +15669,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6] = {.lex_state = 197, .external_lex_state = 2}, [7] = {.lex_state = 197, .external_lex_state = 2}, [8] = {.lex_state = 197, .external_lex_state = 2}, - [9] = {.lex_state = 197, .external_lex_state = 2}, - [10] = {.lex_state = 5, .external_lex_state = 3}, - [11] = {.lex_state = 197, .external_lex_state = 2}, - [12] = {.lex_state = 5, .external_lex_state = 3}, + [9] = {.lex_state = 5, .external_lex_state = 3}, + [10] = {.lex_state = 197, .external_lex_state = 2}, + [11] = {.lex_state = 5, .external_lex_state = 3}, + [12] = {.lex_state = 197, .external_lex_state = 2}, [13] = {.lex_state = 198, .external_lex_state = 4}, [14] = {.lex_state = 198, .external_lex_state = 4}, - [15] = {.lex_state = 141, .external_lex_state = 3}, + [15] = {.lex_state = 139, .external_lex_state = 3}, [16] = {.lex_state = 198, .external_lex_state = 4}, [17] = {.lex_state = 185, .external_lex_state = 5}, [18] = {.lex_state = 435, .external_lex_state = 2}, @@ -15751,8 +15691,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [28] = {.lex_state = 200, .external_lex_state = 2}, [29] = {.lex_state = 200, .external_lex_state = 2}, [30] = {.lex_state = 200, .external_lex_state = 2}, - [31] = {.lex_state = 200, .external_lex_state = 2}, - [32] = {.lex_state = 435, .external_lex_state = 2}, + [31] = {.lex_state = 435, .external_lex_state = 2}, + [32] = {.lex_state = 200, .external_lex_state = 2}, [33] = {.lex_state = 200, .external_lex_state = 2}, [34] = {.lex_state = 200, .external_lex_state = 2}, [35] = {.lex_state = 200, .external_lex_state = 2}, @@ -15786,9 +15726,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 435, .external_lex_state = 2}, [64] = {.lex_state = 435, .external_lex_state = 2}, [65] = {.lex_state = 435, .external_lex_state = 2}, - [66] = {.lex_state = 435, .external_lex_state = 2}, + [66] = {.lex_state = 201, .external_lex_state = 2}, [67] = {.lex_state = 435, .external_lex_state = 2}, - [68] = {.lex_state = 201, .external_lex_state = 2}, + [68] = {.lex_state = 435, .external_lex_state = 2}, [69] = {.lex_state = 435, .external_lex_state = 2}, [70] = {.lex_state = 435, .external_lex_state = 2}, [71] = {.lex_state = 435, .external_lex_state = 2}, @@ -15802,14 +15742,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [79] = {.lex_state = 435, .external_lex_state = 2}, [80] = {.lex_state = 435, .external_lex_state = 2}, [81] = {.lex_state = 435, .external_lex_state = 2}, - [82] = {.lex_state = 435, .external_lex_state = 2}, + [82] = {.lex_state = 201, .external_lex_state = 2}, [83] = {.lex_state = 435, .external_lex_state = 2}, [84] = {.lex_state = 435, .external_lex_state = 2}, [85] = {.lex_state = 435, .external_lex_state = 2}, [86] = {.lex_state = 435, .external_lex_state = 2}, [87] = {.lex_state = 435, .external_lex_state = 2}, [88] = {.lex_state = 435, .external_lex_state = 2}, - [89] = {.lex_state = 201, .external_lex_state = 2}, + [89] = {.lex_state = 435, .external_lex_state = 2}, [90] = {.lex_state = 435, .external_lex_state = 2}, [91] = {.lex_state = 435, .external_lex_state = 2}, [92] = {.lex_state = 435, .external_lex_state = 2}, @@ -15843,7 +15783,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 435, .external_lex_state = 2}, [121] = {.lex_state = 435, .external_lex_state = 2}, [122] = {.lex_state = 435, .external_lex_state = 2}, - [123] = {.lex_state = 201, .external_lex_state = 2}, + [123] = {.lex_state = 435, .external_lex_state = 2}, [124] = {.lex_state = 435, .external_lex_state = 2}, [125] = {.lex_state = 435, .external_lex_state = 2}, [126] = {.lex_state = 435, .external_lex_state = 2}, @@ -15870,7 +15810,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [147] = {.lex_state = 435, .external_lex_state = 2}, [148] = {.lex_state = 435, .external_lex_state = 2}, [149] = {.lex_state = 435, .external_lex_state = 2}, - [150] = {.lex_state = 435, .external_lex_state = 2}, + [150] = {.lex_state = 201, .external_lex_state = 2}, [151] = {.lex_state = 435, .external_lex_state = 2}, [152] = {.lex_state = 435, .external_lex_state = 2}, [153] = {.lex_state = 435, .external_lex_state = 2}, @@ -15884,7 +15824,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [161] = {.lex_state = 435, .external_lex_state = 2}, [162] = {.lex_state = 435, .external_lex_state = 2}, [163] = {.lex_state = 435, .external_lex_state = 2}, - [164] = {.lex_state = 435, .external_lex_state = 2}, + [164] = {.lex_state = 201, .external_lex_state = 2}, [165] = {.lex_state = 435, .external_lex_state = 2}, [166] = {.lex_state = 435, .external_lex_state = 2}, [167] = {.lex_state = 435, .external_lex_state = 2}, @@ -15914,7 +15854,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [191] = {.lex_state = 435, .external_lex_state = 2}, [192] = {.lex_state = 435, .external_lex_state = 2}, [193] = {.lex_state = 435, .external_lex_state = 2}, - [194] = {.lex_state = 201, .external_lex_state = 2}, + [194] = {.lex_state = 435, .external_lex_state = 2}, [195] = {.lex_state = 435, .external_lex_state = 2}, [196] = {.lex_state = 435, .external_lex_state = 2}, [197] = {.lex_state = 435, .external_lex_state = 2}, @@ -15933,7 +15873,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [210] = {.lex_state = 435, .external_lex_state = 2}, [211] = {.lex_state = 435, .external_lex_state = 2}, [212] = {.lex_state = 435, .external_lex_state = 2}, - [213] = {.lex_state = 435, .external_lex_state = 2}, + [213] = {.lex_state = 201, .external_lex_state = 2}, [214] = {.lex_state = 435, .external_lex_state = 2}, [215] = {.lex_state = 435, .external_lex_state = 2}, [216] = {.lex_state = 435, .external_lex_state = 2}, @@ -15958,13 +15898,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [235] = {.lex_state = 435, .external_lex_state = 2}, [236] = {.lex_state = 435, .external_lex_state = 2}, [237] = {.lex_state = 435, .external_lex_state = 2}, - [238] = {.lex_state = 435, .external_lex_state = 2}, + [238] = {.lex_state = 201, .external_lex_state = 2}, [239] = {.lex_state = 435, .external_lex_state = 2}, [240] = {.lex_state = 435, .external_lex_state = 2}, [241] = {.lex_state = 435, .external_lex_state = 2}, [242] = {.lex_state = 435, .external_lex_state = 2}, [243] = {.lex_state = 435, .external_lex_state = 2}, - [244] = {.lex_state = 201, .external_lex_state = 2}, + [244] = {.lex_state = 435, .external_lex_state = 2}, [245] = {.lex_state = 435, .external_lex_state = 2}, [246] = {.lex_state = 435, .external_lex_state = 2}, [247] = {.lex_state = 435, .external_lex_state = 2}, @@ -15978,7 +15918,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [255] = {.lex_state = 435, .external_lex_state = 2}, [256] = {.lex_state = 435, .external_lex_state = 2}, [257] = {.lex_state = 435, .external_lex_state = 2}, - [258] = {.lex_state = 201, .external_lex_state = 2}, + [258] = {.lex_state = 435, .external_lex_state = 2}, [259] = {.lex_state = 435, .external_lex_state = 2}, [260] = {.lex_state = 435, .external_lex_state = 2}, [261] = {.lex_state = 435, .external_lex_state = 2}, @@ -16021,98 +15961,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [298] = {.lex_state = 435, .external_lex_state = 2}, [299] = {.lex_state = 435, .external_lex_state = 2}, [300] = {.lex_state = 435, .external_lex_state = 2}, - [301] = {.lex_state = 189, .external_lex_state = 7}, - [302] = {.lex_state = 189, .external_lex_state = 7}, - [303] = {.lex_state = 189, .external_lex_state = 7}, - [304] = {.lex_state = 189, .external_lex_state = 7}, - [305] = {.lex_state = 187, .external_lex_state = 6}, - [306] = {.lex_state = 189, .external_lex_state = 7}, - [307] = {.lex_state = 186, .external_lex_state = 6}, + [301] = {.lex_state = 435, .external_lex_state = 2}, + [302] = {.lex_state = 435, .external_lex_state = 2}, + [303] = {.lex_state = 435, .external_lex_state = 2}, + [304] = {.lex_state = 435, .external_lex_state = 2}, + [305] = {.lex_state = 435, .external_lex_state = 2}, + [306] = {.lex_state = 435, .external_lex_state = 2}, + [307] = {.lex_state = 187, .external_lex_state = 6}, [308] = {.lex_state = 189, .external_lex_state = 7}, - [309] = {.lex_state = 189, .external_lex_state = 7}, - [310] = {.lex_state = 190, .external_lex_state = 6}, - [311] = {.lex_state = 188, .external_lex_state = 6}, - [312] = {.lex_state = 186, .external_lex_state = 6}, - [313] = {.lex_state = 12, .external_lex_state = 8}, - [314] = {.lex_state = 12, .external_lex_state = 8}, - [315] = {.lex_state = 142, .external_lex_state = 8}, - [316] = {.lex_state = 142, .external_lex_state = 8}, - [317] = {.lex_state = 184, .external_lex_state = 9}, - [318] = {.lex_state = 184, .external_lex_state = 9}, - [319] = {.lex_state = 110, .external_lex_state = 3}, - [320] = {.lex_state = 110, .external_lex_state = 3}, - [321] = {.lex_state = 110, .external_lex_state = 3}, - [322] = {.lex_state = 110, .external_lex_state = 3}, + [309] = {.lex_state = 188, .external_lex_state = 6}, + [310] = {.lex_state = 189, .external_lex_state = 7}, + [311] = {.lex_state = 189, .external_lex_state = 7}, + [312] = {.lex_state = 189, .external_lex_state = 7}, + [313] = {.lex_state = 189, .external_lex_state = 7}, + [314] = {.lex_state = 186, .external_lex_state = 6}, + [315] = {.lex_state = 189, .external_lex_state = 7}, + [316] = {.lex_state = 190, .external_lex_state = 6}, + [317] = {.lex_state = 189, .external_lex_state = 7}, + [318] = {.lex_state = 186, .external_lex_state = 6}, + [319] = {.lex_state = 12, .external_lex_state = 8}, + [320] = {.lex_state = 12, .external_lex_state = 8}, + [321] = {.lex_state = 140, .external_lex_state = 8}, + [322] = {.lex_state = 140, .external_lex_state = 8}, [323] = {.lex_state = 110, .external_lex_state = 3}, [324] = {.lex_state = 110, .external_lex_state = 3}, - [325] = {.lex_state = 110, .external_lex_state = 3}, - [326] = {.lex_state = 110, .external_lex_state = 3}, - [327] = {.lex_state = 144, .external_lex_state = 3}, + [325] = {.lex_state = 184, .external_lex_state = 9}, + [326] = {.lex_state = 184, .external_lex_state = 9}, + [327] = {.lex_state = 110, .external_lex_state = 3}, [328] = {.lex_state = 110, .external_lex_state = 3}, - [329] = {.lex_state = 110, .external_lex_state = 3}, + [329] = {.lex_state = 141, .external_lex_state = 3}, [330] = {.lex_state = 110, .external_lex_state = 3}, [331] = {.lex_state = 110, .external_lex_state = 3}, [332] = {.lex_state = 110, .external_lex_state = 3}, - [333] = {.lex_state = 144, .external_lex_state = 3}, - [334] = {.lex_state = 110, .external_lex_state = 3}, - [335] = {.lex_state = 110, .external_lex_state = 3}, + [333] = {.lex_state = 110, .external_lex_state = 3}, + [334] = {.lex_state = 141, .external_lex_state = 3}, + [335] = {.lex_state = 141, .external_lex_state = 3}, [336] = {.lex_state = 110, .external_lex_state = 3}, [337] = {.lex_state = 110, .external_lex_state = 3}, - [338] = {.lex_state = 110, .external_lex_state = 3}, - [339] = {.lex_state = 144, .external_lex_state = 3}, + [338] = {.lex_state = 141, .external_lex_state = 3}, + [339] = {.lex_state = 110, .external_lex_state = 3}, [340] = {.lex_state = 110, .external_lex_state = 3}, - [341] = {.lex_state = 110, .external_lex_state = 3}, + [341] = {.lex_state = 141, .external_lex_state = 3}, [342] = {.lex_state = 110, .external_lex_state = 3}, [343] = {.lex_state = 110, .external_lex_state = 3}, [344] = {.lex_state = 110, .external_lex_state = 3}, [345] = {.lex_state = 110, .external_lex_state = 3}, - [346] = {.lex_state = 144, .external_lex_state = 3}, - [347] = {.lex_state = 144, .external_lex_state = 3}, - [348] = {.lex_state = 110, .external_lex_state = 3}, - [349] = {.lex_state = 144, .external_lex_state = 3}, + [346] = {.lex_state = 110, .external_lex_state = 3}, + [347] = {.lex_state = 110, .external_lex_state = 3}, + [348] = {.lex_state = 141, .external_lex_state = 3}, + [349] = {.lex_state = 110, .external_lex_state = 3}, [350] = {.lex_state = 110, .external_lex_state = 3}, [351] = {.lex_state = 110, .external_lex_state = 3}, - [352] = {.lex_state = 144, .external_lex_state = 3}, - [353] = {.lex_state = 144, .external_lex_state = 3}, - [354] = {.lex_state = 144, .external_lex_state = 3}, - [355] = {.lex_state = 144, .external_lex_state = 3}, - [356] = {.lex_state = 144, .external_lex_state = 3}, - [357] = {.lex_state = 148, .external_lex_state = 8}, - [358] = {.lex_state = 144, .external_lex_state = 3}, - [359] = {.lex_state = 144, .external_lex_state = 3}, - [360] = {.lex_state = 144, .external_lex_state = 3}, - [361] = {.lex_state = 144, .external_lex_state = 3}, - [362] = {.lex_state = 144, .external_lex_state = 3}, - [363] = {.lex_state = 144, .external_lex_state = 3}, - [364] = {.lex_state = 144, .external_lex_state = 3}, - [365] = {.lex_state = 144, .external_lex_state = 3}, - [366] = {.lex_state = 144, .external_lex_state = 3}, - [367] = {.lex_state = 144, .external_lex_state = 3}, - [368] = {.lex_state = 148, .external_lex_state = 8}, - [369] = {.lex_state = 144, .external_lex_state = 3}, - [370] = {.lex_state = 144, .external_lex_state = 3}, - [371] = {.lex_state = 144, .external_lex_state = 3}, - [372] = {.lex_state = 144, .external_lex_state = 3}, - [373] = {.lex_state = 148, .external_lex_state = 8}, - [374] = {.lex_state = 148, .external_lex_state = 8}, - [375] = {.lex_state = 152, .external_lex_state = 8}, - [376] = {.lex_state = 148, .external_lex_state = 8}, - [377] = {.lex_state = 148, .external_lex_state = 8}, - [378] = {.lex_state = 152, .external_lex_state = 8}, - [379] = {.lex_state = 203, .external_lex_state = 5}, - [380] = {.lex_state = 152, .external_lex_state = 8}, + [352] = {.lex_state = 110, .external_lex_state = 3}, + [353] = {.lex_state = 110, .external_lex_state = 3}, + [354] = {.lex_state = 110, .external_lex_state = 3}, + [355] = {.lex_state = 110, .external_lex_state = 3}, + [356] = {.lex_state = 110, .external_lex_state = 3}, + [357] = {.lex_state = 110, .external_lex_state = 3}, + [358] = {.lex_state = 141, .external_lex_state = 3}, + [359] = {.lex_state = 141, .external_lex_state = 3}, + [360] = {.lex_state = 141, .external_lex_state = 3}, + [361] = {.lex_state = 141, .external_lex_state = 3}, + [362] = {.lex_state = 141, .external_lex_state = 3}, + [363] = {.lex_state = 141, .external_lex_state = 3}, + [364] = {.lex_state = 144, .external_lex_state = 8}, + [365] = {.lex_state = 141, .external_lex_state = 3}, + [366] = {.lex_state = 141, .external_lex_state = 3}, + [367] = {.lex_state = 141, .external_lex_state = 3}, + [368] = {.lex_state = 141, .external_lex_state = 3}, + [369] = {.lex_state = 141, .external_lex_state = 3}, + [370] = {.lex_state = 144, .external_lex_state = 8}, + [371] = {.lex_state = 144, .external_lex_state = 8}, + [372] = {.lex_state = 141, .external_lex_state = 3}, + [373] = {.lex_state = 141, .external_lex_state = 3}, + [374] = {.lex_state = 141, .external_lex_state = 3}, + [375] = {.lex_state = 141, .external_lex_state = 3}, + [376] = {.lex_state = 141, .external_lex_state = 3}, + [377] = {.lex_state = 141, .external_lex_state = 3}, + [378] = {.lex_state = 141, .external_lex_state = 3}, + [379] = {.lex_state = 141, .external_lex_state = 3}, + [380] = {.lex_state = 147, .external_lex_state = 8}, [381] = {.lex_state = 203, .external_lex_state = 5}, - [382] = {.lex_state = 152, .external_lex_state = 8}, - [383] = {.lex_state = 203, .external_lex_state = 5}, - [384] = {.lex_state = 203, .external_lex_state = 5}, - [385] = {.lex_state = 203, .external_lex_state = 5}, + [382] = {.lex_state = 147, .external_lex_state = 8}, + [383] = {.lex_state = 144, .external_lex_state = 8}, + [384] = {.lex_state = 144, .external_lex_state = 8}, + [385] = {.lex_state = 144, .external_lex_state = 8}, [386] = {.lex_state = 203, .external_lex_state = 5}, - [387] = {.lex_state = 203, .external_lex_state = 5}, + [387] = {.lex_state = 147, .external_lex_state = 8}, [388] = {.lex_state = 203, .external_lex_state = 5}, [389] = {.lex_state = 203, .external_lex_state = 5}, [390] = {.lex_state = 203, .external_lex_state = 5}, [391] = {.lex_state = 203, .external_lex_state = 5}, - [392] = {.lex_state = 203, .external_lex_state = 5}, + [392] = {.lex_state = 147, .external_lex_state = 8}, [393] = {.lex_state = 203, .external_lex_state = 5}, [394] = {.lex_state = 203, .external_lex_state = 5}, [395] = {.lex_state = 203, .external_lex_state = 5}, @@ -16126,4084 +16066,4084 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [403] = {.lex_state = 203, .external_lex_state = 5}, [404] = {.lex_state = 203, .external_lex_state = 5}, [405] = {.lex_state = 203, .external_lex_state = 5}, - [406] = {.lex_state = 204, .external_lex_state = 9}, - [407] = {.lex_state = 204, .external_lex_state = 9}, - [408] = {.lex_state = 204, .external_lex_state = 9}, - [409] = {.lex_state = 204, .external_lex_state = 9}, - [410] = {.lex_state = 199, .external_lex_state = 2}, - [411] = {.lex_state = 199, .external_lex_state = 2}, - [412] = {.lex_state = 199, .external_lex_state = 2}, - [413] = {.lex_state = 199, .external_lex_state = 2}, - [414] = {.lex_state = 135, .external_lex_state = 10}, - [415] = {.lex_state = 135, .external_lex_state = 10}, - [416] = {.lex_state = 135, .external_lex_state = 10}, - [417] = {.lex_state = 145, .external_lex_state = 8}, - [418] = {.lex_state = 145, .external_lex_state = 8}, - [419] = {.lex_state = 149, .external_lex_state = 10}, - [420] = {.lex_state = 149, .external_lex_state = 10}, - [421] = {.lex_state = 145, .external_lex_state = 8}, - [422] = {.lex_state = 145, .external_lex_state = 8}, - [423] = {.lex_state = 145, .external_lex_state = 8}, - [424] = {.lex_state = 149, .external_lex_state = 10}, - [425] = {.lex_state = 426, .external_lex_state = 10}, - [426] = {.lex_state = 426, .external_lex_state = 10}, - [427] = {.lex_state = 156, .external_lex_state = 8}, - [428] = {.lex_state = 426, .external_lex_state = 10}, - [429] = {.lex_state = 426, .external_lex_state = 10}, - [430] = {.lex_state = 156, .external_lex_state = 8}, - [431] = {.lex_state = 139, .external_lex_state = 8}, - [432] = {.lex_state = 156, .external_lex_state = 8}, - [433] = {.lex_state = 156, .external_lex_state = 8}, - [434] = {.lex_state = 426, .external_lex_state = 10}, - [435] = {.lex_state = 426, .external_lex_state = 10}, - [436] = {.lex_state = 156, .external_lex_state = 8}, - [437] = {.lex_state = 139, .external_lex_state = 8}, - [438] = {.lex_state = 428, .external_lex_state = 8}, - [439] = {.lex_state = 135, .external_lex_state = 11}, - [440] = {.lex_state = 428, .external_lex_state = 8}, - [441] = {.lex_state = 146, .external_lex_state = 8}, - [442] = {.lex_state = 428, .external_lex_state = 8}, - [443] = {.lex_state = 146, .external_lex_state = 8}, - [444] = {.lex_state = 135, .external_lex_state = 11}, - [445] = {.lex_state = 428, .external_lex_state = 8}, - [446] = {.lex_state = 135, .external_lex_state = 11}, - [447] = {.lex_state = 426, .external_lex_state = 10}, - [448] = {.lex_state = 428, .external_lex_state = 8}, - [449] = {.lex_state = 428, .external_lex_state = 8}, - [450] = {.lex_state = 428, .external_lex_state = 8}, - [451] = {.lex_state = 426, .external_lex_state = 10}, - [452] = {.lex_state = 426, .external_lex_state = 10}, - [453] = {.lex_state = 428, .external_lex_state = 8}, - [454] = {.lex_state = 426, .external_lex_state = 10}, - [455] = {.lex_state = 428, .external_lex_state = 8}, - [456] = {.lex_state = 426, .external_lex_state = 10}, - [457] = {.lex_state = 428, .external_lex_state = 8}, - [458] = {.lex_state = 150, .external_lex_state = 8}, - [459] = {.lex_state = 427, .external_lex_state = 8}, - [460] = {.lex_state = 428, .external_lex_state = 8}, - [461] = {.lex_state = 428, .external_lex_state = 8}, - [462] = {.lex_state = 149, .external_lex_state = 11}, - [463] = {.lex_state = 149, .external_lex_state = 11}, - [464] = {.lex_state = 428, .external_lex_state = 8}, - [465] = {.lex_state = 157, .external_lex_state = 10}, - [466] = {.lex_state = 428, .external_lex_state = 8}, - [467] = {.lex_state = 428, .external_lex_state = 8}, - [468] = {.lex_state = 428, .external_lex_state = 8}, - [469] = {.lex_state = 428, .external_lex_state = 8}, - [470] = {.lex_state = 157, .external_lex_state = 10}, - [471] = {.lex_state = 157, .external_lex_state = 10}, - [472] = {.lex_state = 428, .external_lex_state = 8}, - [473] = {.lex_state = 157, .external_lex_state = 10}, - [474] = {.lex_state = 149, .external_lex_state = 11}, - [475] = {.lex_state = 150, .external_lex_state = 8}, - [476] = {.lex_state = 427, .external_lex_state = 8}, - [477] = {.lex_state = 428, .external_lex_state = 8}, - [478] = {.lex_state = 160, .external_lex_state = 10}, - [479] = {.lex_state = 160, .external_lex_state = 10}, - [480] = {.lex_state = 160, .external_lex_state = 10}, - [481] = {.lex_state = 160, .external_lex_state = 10}, - [482] = {.lex_state = 426, .external_lex_state = 11}, - [483] = {.lex_state = 426, .external_lex_state = 11}, - [484] = {.lex_state = 157, .external_lex_state = 11}, - [485] = {.lex_state = 426, .external_lex_state = 11}, - [486] = {.lex_state = 427, .external_lex_state = 8}, - [487] = {.lex_state = 157, .external_lex_state = 11}, - [488] = {.lex_state = 427, .external_lex_state = 8}, - [489] = {.lex_state = 435, .external_lex_state = 2}, - [490] = {.lex_state = 426, .external_lex_state = 11}, - [491] = {.lex_state = 426, .external_lex_state = 11}, - [492] = {.lex_state = 426, .external_lex_state = 11}, - [493] = {.lex_state = 200, .external_lex_state = 2}, - [494] = {.lex_state = 160, .external_lex_state = 11}, - [495] = {.lex_state = 163, .external_lex_state = 10}, - [496] = {.lex_state = 163, .external_lex_state = 10}, - [497] = {.lex_state = 163, .external_lex_state = 10}, - [498] = {.lex_state = 429, .external_lex_state = 10}, - [499] = {.lex_state = 429, .external_lex_state = 10}, - [500] = {.lex_state = 163, .external_lex_state = 10}, - [501] = {.lex_state = 429, .external_lex_state = 10}, - [502] = {.lex_state = 149, .external_lex_state = 10}, - [503] = {.lex_state = 429, .external_lex_state = 10}, - [504] = {.lex_state = 435, .external_lex_state = 2}, - [505] = {.lex_state = 435, .external_lex_state = 2}, - [506] = {.lex_state = 149, .external_lex_state = 10}, - [507] = {.lex_state = 200, .external_lex_state = 2}, - [508] = {.lex_state = 426, .external_lex_state = 11}, - [509] = {.lex_state = 149, .external_lex_state = 10}, - [510] = {.lex_state = 426, .external_lex_state = 11}, - [511] = {.lex_state = 426, .external_lex_state = 11}, - [512] = {.lex_state = 160, .external_lex_state = 11}, - [513] = {.lex_state = 426, .external_lex_state = 11}, - [514] = {.lex_state = 426, .external_lex_state = 11}, - [515] = {.lex_state = 156, .external_lex_state = 8}, - [516] = {.lex_state = 244, .external_lex_state = 12}, - [517] = {.lex_state = 156, .external_lex_state = 8}, - [518] = {.lex_state = 429, .external_lex_state = 10}, - [519] = {.lex_state = 236, .external_lex_state = 2}, - [520] = {.lex_state = 236, .external_lex_state = 2}, - [521] = {.lex_state = 236, .external_lex_state = 2}, - [522] = {.lex_state = 429, .external_lex_state = 10}, - [523] = {.lex_state = 236, .external_lex_state = 2}, - [524] = {.lex_state = 236, .external_lex_state = 2}, - [525] = {.lex_state = 244, .external_lex_state = 12}, - [526] = {.lex_state = 236, .external_lex_state = 2}, - [527] = {.lex_state = 156, .external_lex_state = 8}, - [528] = {.lex_state = 429, .external_lex_state = 10}, - [529] = {.lex_state = 156, .external_lex_state = 8}, - [530] = {.lex_state = 429, .external_lex_state = 11}, - [531] = {.lex_state = 429, .external_lex_state = 10}, - [532] = {.lex_state = 236, .external_lex_state = 2}, - [533] = {.lex_state = 429, .external_lex_state = 11}, - [534] = {.lex_state = 244, .external_lex_state = 12}, - [535] = {.lex_state = 163, .external_lex_state = 11}, - [536] = {.lex_state = 236, .external_lex_state = 2}, - [537] = {.lex_state = 156, .external_lex_state = 8}, - [538] = {.lex_state = 163, .external_lex_state = 11}, - [539] = {.lex_state = 162, .external_lex_state = 10}, - [540] = {.lex_state = 240, .external_lex_state = 13}, - [541] = {.lex_state = 429, .external_lex_state = 11}, - [542] = {.lex_state = 429, .external_lex_state = 11}, - [543] = {.lex_state = 240, .external_lex_state = 13}, - [544] = {.lex_state = 162, .external_lex_state = 10}, - [545] = {.lex_state = 162, .external_lex_state = 10}, - [546] = {.lex_state = 168, .external_lex_state = 8}, - [547] = {.lex_state = 162, .external_lex_state = 10}, - [548] = {.lex_state = 168, .external_lex_state = 8}, - [549] = {.lex_state = 240, .external_lex_state = 13}, - [550] = {.lex_state = 240, .external_lex_state = 13}, - [551] = {.lex_state = 240, .external_lex_state = 13}, - [552] = {.lex_state = 149, .external_lex_state = 11}, - [553] = {.lex_state = 149, .external_lex_state = 11}, - [554] = {.lex_state = 149, .external_lex_state = 11}, - [555] = {.lex_state = 165, .external_lex_state = 3}, - [556] = {.lex_state = 192, .external_lex_state = 13}, - [557] = {.lex_state = 192, .external_lex_state = 13}, - [558] = {.lex_state = 167, .external_lex_state = 10}, - [559] = {.lex_state = 435, .external_lex_state = 2}, - [560] = {.lex_state = 435, .external_lex_state = 2}, - [561] = {.lex_state = 167, .external_lex_state = 10}, + [406] = {.lex_state = 203, .external_lex_state = 5}, + [407] = {.lex_state = 203, .external_lex_state = 5}, + [408] = {.lex_state = 203, .external_lex_state = 5}, + [409] = {.lex_state = 203, .external_lex_state = 5}, + [410] = {.lex_state = 203, .external_lex_state = 5}, + [411] = {.lex_state = 203, .external_lex_state = 5}, + [412] = {.lex_state = 204, .external_lex_state = 9}, + [413] = {.lex_state = 204, .external_lex_state = 9}, + [414] = {.lex_state = 204, .external_lex_state = 9}, + [415] = {.lex_state = 204, .external_lex_state = 9}, + [416] = {.lex_state = 199, .external_lex_state = 2}, + [417] = {.lex_state = 199, .external_lex_state = 2}, + [418] = {.lex_state = 199, .external_lex_state = 2}, + [419] = {.lex_state = 199, .external_lex_state = 2}, + [420] = {.lex_state = 150, .external_lex_state = 10}, + [421] = {.lex_state = 150, .external_lex_state = 10}, + [422] = {.lex_state = 150, .external_lex_state = 10}, + [423] = {.lex_state = 153, .external_lex_state = 8}, + [424] = {.lex_state = 156, .external_lex_state = 10}, + [425] = {.lex_state = 153, .external_lex_state = 8}, + [426] = {.lex_state = 156, .external_lex_state = 10}, + [427] = {.lex_state = 153, .external_lex_state = 8}, + [428] = {.lex_state = 156, .external_lex_state = 10}, + [429] = {.lex_state = 153, .external_lex_state = 8}, + [430] = {.lex_state = 153, .external_lex_state = 8}, + [431] = {.lex_state = 159, .external_lex_state = 8}, + [432] = {.lex_state = 159, .external_lex_state = 8}, + [433] = {.lex_state = 427, .external_lex_state = 10}, + [434] = {.lex_state = 159, .external_lex_state = 8}, + [435] = {.lex_state = 427, .external_lex_state = 10}, + [436] = {.lex_state = 427, .external_lex_state = 10}, + [437] = {.lex_state = 143, .external_lex_state = 8}, + [438] = {.lex_state = 427, .external_lex_state = 10}, + [439] = {.lex_state = 427, .external_lex_state = 10}, + [440] = {.lex_state = 143, .external_lex_state = 8}, + [441] = {.lex_state = 159, .external_lex_state = 8}, + [442] = {.lex_state = 427, .external_lex_state = 10}, + [443] = {.lex_state = 159, .external_lex_state = 8}, + [444] = {.lex_state = 150, .external_lex_state = 11}, + [445] = {.lex_state = 150, .external_lex_state = 11}, + [446] = {.lex_state = 146, .external_lex_state = 8}, + [447] = {.lex_state = 429, .external_lex_state = 8}, + [448] = {.lex_state = 429, .external_lex_state = 8}, + [449] = {.lex_state = 146, .external_lex_state = 8}, + [450] = {.lex_state = 427, .external_lex_state = 10}, + [451] = {.lex_state = 429, .external_lex_state = 8}, + [452] = {.lex_state = 429, .external_lex_state = 8}, + [453] = {.lex_state = 150, .external_lex_state = 11}, + [454] = {.lex_state = 429, .external_lex_state = 8}, + [455] = {.lex_state = 429, .external_lex_state = 8}, + [456] = {.lex_state = 429, .external_lex_state = 8}, + [457] = {.lex_state = 429, .external_lex_state = 8}, + [458] = {.lex_state = 427, .external_lex_state = 10}, + [459] = {.lex_state = 427, .external_lex_state = 10}, + [460] = {.lex_state = 427, .external_lex_state = 10}, + [461] = {.lex_state = 429, .external_lex_state = 8}, + [462] = {.lex_state = 429, .external_lex_state = 8}, + [463] = {.lex_state = 427, .external_lex_state = 10}, + [464] = {.lex_state = 429, .external_lex_state = 8}, + [465] = {.lex_state = 429, .external_lex_state = 8}, + [466] = {.lex_state = 149, .external_lex_state = 10}, + [467] = {.lex_state = 429, .external_lex_state = 8}, + [468] = {.lex_state = 152, .external_lex_state = 8}, + [469] = {.lex_state = 149, .external_lex_state = 10}, + [470] = {.lex_state = 149, .external_lex_state = 10}, + [471] = {.lex_state = 156, .external_lex_state = 11}, + [472] = {.lex_state = 149, .external_lex_state = 10}, + [473] = {.lex_state = 429, .external_lex_state = 8}, + [474] = {.lex_state = 156, .external_lex_state = 11}, + [475] = {.lex_state = 152, .external_lex_state = 8}, + [476] = {.lex_state = 426, .external_lex_state = 8}, + [477] = {.lex_state = 429, .external_lex_state = 8}, + [478] = {.lex_state = 156, .external_lex_state = 11}, + [479] = {.lex_state = 429, .external_lex_state = 8}, + [480] = {.lex_state = 429, .external_lex_state = 8}, + [481] = {.lex_state = 429, .external_lex_state = 8}, + [482] = {.lex_state = 429, .external_lex_state = 8}, + [483] = {.lex_state = 426, .external_lex_state = 8}, + [484] = {.lex_state = 435, .external_lex_state = 2}, + [485] = {.lex_state = 158, .external_lex_state = 10}, + [486] = {.lex_state = 158, .external_lex_state = 10}, + [487] = {.lex_state = 158, .external_lex_state = 10}, + [488] = {.lex_state = 427, .external_lex_state = 11}, + [489] = {.lex_state = 158, .external_lex_state = 10}, + [490] = {.lex_state = 427, .external_lex_state = 11}, + [491] = {.lex_state = 427, .external_lex_state = 11}, + [492] = {.lex_state = 427, .external_lex_state = 11}, + [493] = {.lex_state = 426, .external_lex_state = 8}, + [494] = {.lex_state = 149, .external_lex_state = 11}, + [495] = {.lex_state = 149, .external_lex_state = 11}, + [496] = {.lex_state = 427, .external_lex_state = 11}, + [497] = {.lex_state = 426, .external_lex_state = 8}, + [498] = {.lex_state = 427, .external_lex_state = 11}, + [499] = {.lex_state = 161, .external_lex_state = 10}, + [500] = {.lex_state = 161, .external_lex_state = 10}, + [501] = {.lex_state = 427, .external_lex_state = 11}, + [502] = {.lex_state = 161, .external_lex_state = 10}, + [503] = {.lex_state = 200, .external_lex_state = 2}, + [504] = {.lex_state = 161, .external_lex_state = 10}, + [505] = {.lex_state = 156, .external_lex_state = 10}, + [506] = {.lex_state = 428, .external_lex_state = 10}, + [507] = {.lex_state = 158, .external_lex_state = 11}, + [508] = {.lex_state = 428, .external_lex_state = 10}, + [509] = {.lex_state = 156, .external_lex_state = 10}, + [510] = {.lex_state = 158, .external_lex_state = 11}, + [511] = {.lex_state = 427, .external_lex_state = 11}, + [512] = {.lex_state = 435, .external_lex_state = 2}, + [513] = {.lex_state = 427, .external_lex_state = 11}, + [514] = {.lex_state = 200, .external_lex_state = 2}, + [515] = {.lex_state = 428, .external_lex_state = 10}, + [516] = {.lex_state = 427, .external_lex_state = 11}, + [517] = {.lex_state = 428, .external_lex_state = 10}, + [518] = {.lex_state = 427, .external_lex_state = 11}, + [519] = {.lex_state = 156, .external_lex_state = 10}, + [520] = {.lex_state = 435, .external_lex_state = 2}, + [521] = {.lex_state = 235, .external_lex_state = 2}, + [522] = {.lex_state = 235, .external_lex_state = 2}, + [523] = {.lex_state = 161, .external_lex_state = 11}, + [524] = {.lex_state = 428, .external_lex_state = 11}, + [525] = {.lex_state = 428, .external_lex_state = 10}, + [526] = {.lex_state = 428, .external_lex_state = 10}, + [527] = {.lex_state = 243, .external_lex_state = 12}, + [528] = {.lex_state = 428, .external_lex_state = 10}, + [529] = {.lex_state = 243, .external_lex_state = 12}, + [530] = {.lex_state = 159, .external_lex_state = 8}, + [531] = {.lex_state = 159, .external_lex_state = 8}, + [532] = {.lex_state = 159, .external_lex_state = 8}, + [533] = {.lex_state = 235, .external_lex_state = 2}, + [534] = {.lex_state = 159, .external_lex_state = 8}, + [535] = {.lex_state = 235, .external_lex_state = 2}, + [536] = {.lex_state = 235, .external_lex_state = 2}, + [537] = {.lex_state = 428, .external_lex_state = 11}, + [538] = {.lex_state = 243, .external_lex_state = 12}, + [539] = {.lex_state = 161, .external_lex_state = 11}, + [540] = {.lex_state = 159, .external_lex_state = 8}, + [541] = {.lex_state = 235, .external_lex_state = 2}, + [542] = {.lex_state = 428, .external_lex_state = 10}, + [543] = {.lex_state = 235, .external_lex_state = 2}, + [544] = {.lex_state = 235, .external_lex_state = 2}, + [545] = {.lex_state = 239, .external_lex_state = 13}, + [546] = {.lex_state = 239, .external_lex_state = 13}, + [547] = {.lex_state = 166, .external_lex_state = 10}, + [548] = {.lex_state = 166, .external_lex_state = 10}, + [549] = {.lex_state = 239, .external_lex_state = 13}, + [550] = {.lex_state = 239, .external_lex_state = 13}, + [551] = {.lex_state = 428, .external_lex_state = 11}, + [552] = {.lex_state = 165, .external_lex_state = 8}, + [553] = {.lex_state = 428, .external_lex_state = 11}, + [554] = {.lex_state = 165, .external_lex_state = 8}, + [555] = {.lex_state = 166, .external_lex_state = 10}, + [556] = {.lex_state = 239, .external_lex_state = 13}, + [557] = {.lex_state = 166, .external_lex_state = 10}, + [558] = {.lex_state = 168, .external_lex_state = 10}, + [559] = {.lex_state = 168, .external_lex_state = 10}, + [560] = {.lex_state = 192, .external_lex_state = 13}, + [561] = {.lex_state = 192, .external_lex_state = 13}, [562] = {.lex_state = 435, .external_lex_state = 2}, - [563] = {.lex_state = 201, .external_lex_state = 2}, - [564] = {.lex_state = 167, .external_lex_state = 10}, - [565] = {.lex_state = 167, .external_lex_state = 10}, - [566] = {.lex_state = 430, .external_lex_state = 10}, - [567] = {.lex_state = 209, .external_lex_state = 14}, - [568] = {.lex_state = 430, .external_lex_state = 10}, - [569] = {.lex_state = 430, .external_lex_state = 10}, - [570] = {.lex_state = 430, .external_lex_state = 10}, - [571] = {.lex_state = 165, .external_lex_state = 3}, - [572] = {.lex_state = 430, .external_lex_state = 10}, - [573] = {.lex_state = 170, .external_lex_state = 10}, - [574] = {.lex_state = 170, .external_lex_state = 10}, - [575] = {.lex_state = 170, .external_lex_state = 10}, - [576] = {.lex_state = 193, .external_lex_state = 15}, - [577] = {.lex_state = 170, .external_lex_state = 10}, - [578] = {.lex_state = 193, .external_lex_state = 15}, - [579] = {.lex_state = 435, .external_lex_state = 2}, - [580] = {.lex_state = 165, .external_lex_state = 3}, - [581] = {.lex_state = 205, .external_lex_state = 16}, - [582] = {.lex_state = 205, .external_lex_state = 16}, - [583] = {.lex_state = 244, .external_lex_state = 17}, - [584] = {.lex_state = 165, .external_lex_state = 3}, - [585] = {.lex_state = 165, .external_lex_state = 3}, - [586] = {.lex_state = 165, .external_lex_state = 3}, - [587] = {.lex_state = 430, .external_lex_state = 10}, - [588] = {.lex_state = 209, .external_lex_state = 14}, - [589] = {.lex_state = 165, .external_lex_state = 3}, - [590] = {.lex_state = 430, .external_lex_state = 10}, - [591] = {.lex_state = 244, .external_lex_state = 17}, + [563] = {.lex_state = 156, .external_lex_state = 11}, + [564] = {.lex_state = 168, .external_lex_state = 10}, + [565] = {.lex_state = 156, .external_lex_state = 11}, + [566] = {.lex_state = 201, .external_lex_state = 2}, + [567] = {.lex_state = 435, .external_lex_state = 2}, + [568] = {.lex_state = 170, .external_lex_state = 3}, + [569] = {.lex_state = 168, .external_lex_state = 10}, + [570] = {.lex_state = 435, .external_lex_state = 2}, + [571] = {.lex_state = 156, .external_lex_state = 11}, + [572] = {.lex_state = 167, .external_lex_state = 10}, + [573] = {.lex_state = 205, .external_lex_state = 14}, + [574] = {.lex_state = 170, .external_lex_state = 3}, + [575] = {.lex_state = 167, .external_lex_state = 10}, + [576] = {.lex_state = 170, .external_lex_state = 3}, + [577] = {.lex_state = 430, .external_lex_state = 10}, + [578] = {.lex_state = 430, .external_lex_state = 10}, + [579] = {.lex_state = 430, .external_lex_state = 10}, + [580] = {.lex_state = 193, .external_lex_state = 15}, + [581] = {.lex_state = 193, .external_lex_state = 15}, + [582] = {.lex_state = 435, .external_lex_state = 2}, + [583] = {.lex_state = 430, .external_lex_state = 10}, + [584] = {.lex_state = 243, .external_lex_state = 16}, + [585] = {.lex_state = 172, .external_lex_state = 3}, + [586] = {.lex_state = 170, .external_lex_state = 3}, + [587] = {.lex_state = 170, .external_lex_state = 3}, + [588] = {.lex_state = 170, .external_lex_state = 3}, + [589] = {.lex_state = 435, .external_lex_state = 2}, + [590] = {.lex_state = 205, .external_lex_state = 14}, + [591] = {.lex_state = 167, .external_lex_state = 10}, [592] = {.lex_state = 430, .external_lex_state = 10}, - [593] = {.lex_state = 165, .external_lex_state = 3}, - [594] = {.lex_state = 435, .external_lex_state = 2}, - [595] = {.lex_state = 435, .external_lex_state = 2}, - [596] = {.lex_state = 165, .external_lex_state = 3}, - [597] = {.lex_state = 244, .external_lex_state = 17}, - [598] = {.lex_state = 165, .external_lex_state = 3}, - [599] = {.lex_state = 165, .external_lex_state = 3}, - [600] = {.lex_state = 171, .external_lex_state = 3}, - [601] = {.lex_state = 171, .external_lex_state = 3}, - [602] = {.lex_state = 165, .external_lex_state = 3}, - [603] = {.lex_state = 171, .external_lex_state = 3}, - [604] = {.lex_state = 173, .external_lex_state = 18}, - [605] = {.lex_state = 173, .external_lex_state = 18}, - [606] = {.lex_state = 431, .external_lex_state = 3}, - [607] = {.lex_state = 207, .external_lex_state = 16}, - [608] = {.lex_state = 207, .external_lex_state = 16}, - [609] = {.lex_state = 171, .external_lex_state = 3}, - [610] = {.lex_state = 165, .external_lex_state = 3}, - [611] = {.lex_state = 165, .external_lex_state = 3}, - [612] = {.lex_state = 165, .external_lex_state = 3}, - [613] = {.lex_state = 173, .external_lex_state = 18}, - [614] = {.lex_state = 165, .external_lex_state = 3}, - [615] = {.lex_state = 171, .external_lex_state = 3}, - [616] = {.lex_state = 430, .external_lex_state = 10}, - [617] = {.lex_state = 165, .external_lex_state = 3}, - [618] = {.lex_state = 430, .external_lex_state = 10}, - [619] = {.lex_state = 430, .external_lex_state = 10}, - [620] = {.lex_state = 430, .external_lex_state = 10}, - [621] = {.lex_state = 171, .external_lex_state = 3}, - [622] = {.lex_state = 171, .external_lex_state = 3}, - [623] = {.lex_state = 170, .external_lex_state = 11}, - [624] = {.lex_state = 173, .external_lex_state = 18}, - [625] = {.lex_state = 170, .external_lex_state = 11}, - [626] = {.lex_state = 165, .external_lex_state = 3}, - [627] = {.lex_state = 171, .external_lex_state = 3}, - [628] = {.lex_state = 165, .external_lex_state = 3}, - [629] = {.lex_state = 430, .external_lex_state = 10}, - [630] = {.lex_state = 165, .external_lex_state = 3}, - [631] = {.lex_state = 171, .external_lex_state = 3}, + [593] = {.lex_state = 430, .external_lex_state = 10}, + [594] = {.lex_state = 209, .external_lex_state = 17}, + [595] = {.lex_state = 170, .external_lex_state = 3}, + [596] = {.lex_state = 170, .external_lex_state = 3}, + [597] = {.lex_state = 435, .external_lex_state = 2}, + [598] = {.lex_state = 209, .external_lex_state = 17}, + [599] = {.lex_state = 170, .external_lex_state = 3}, + [600] = {.lex_state = 243, .external_lex_state = 16}, + [601] = {.lex_state = 430, .external_lex_state = 10}, + [602] = {.lex_state = 167, .external_lex_state = 10}, + [603] = {.lex_state = 430, .external_lex_state = 10}, + [604] = {.lex_state = 170, .external_lex_state = 3}, + [605] = {.lex_state = 170, .external_lex_state = 3}, + [606] = {.lex_state = 243, .external_lex_state = 16}, + [607] = {.lex_state = 430, .external_lex_state = 10}, + [608] = {.lex_state = 172, .external_lex_state = 3}, + [609] = {.lex_state = 172, .external_lex_state = 3}, + [610] = {.lex_state = 194, .external_lex_state = 12}, + [611] = {.lex_state = 206, .external_lex_state = 14}, + [612] = {.lex_state = 172, .external_lex_state = 3}, + [613] = {.lex_state = 172, .external_lex_state = 3}, + [614] = {.lex_state = 170, .external_lex_state = 3}, + [615] = {.lex_state = 170, .external_lex_state = 3}, + [616] = {.lex_state = 170, .external_lex_state = 3}, + [617] = {.lex_state = 170, .external_lex_state = 3}, + [618] = {.lex_state = 206, .external_lex_state = 14}, + [619] = {.lex_state = 170, .external_lex_state = 3}, + [620] = {.lex_state = 170, .external_lex_state = 3}, + [621] = {.lex_state = 172, .external_lex_state = 3}, + [622] = {.lex_state = 430, .external_lex_state = 10}, + [623] = {.lex_state = 170, .external_lex_state = 3}, + [624] = {.lex_state = 209, .external_lex_state = 18}, + [625] = {.lex_state = 209, .external_lex_state = 18}, + [626] = {.lex_state = 430, .external_lex_state = 10}, + [627] = {.lex_state = 430, .external_lex_state = 10}, + [628] = {.lex_state = 170, .external_lex_state = 3}, + [629] = {.lex_state = 170, .external_lex_state = 3}, + [630] = {.lex_state = 170, .external_lex_state = 3}, + [631] = {.lex_state = 430, .external_lex_state = 10}, [632] = {.lex_state = 430, .external_lex_state = 10}, - [633] = {.lex_state = 430, .external_lex_state = 10}, - [634] = {.lex_state = 206, .external_lex_state = 16}, - [635] = {.lex_state = 430, .external_lex_state = 10}, - [636] = {.lex_state = 206, .external_lex_state = 16}, - [637] = {.lex_state = 165, .external_lex_state = 3}, - [638] = {.lex_state = 165, .external_lex_state = 3}, - [639] = {.lex_state = 165, .external_lex_state = 3}, - [640] = {.lex_state = 165, .external_lex_state = 3}, - [641] = {.lex_state = 210, .external_lex_state = 16}, - [642] = {.lex_state = 171, .external_lex_state = 3}, - [643] = {.lex_state = 430, .external_lex_state = 10}, - [644] = {.lex_state = 165, .external_lex_state = 3}, - [645] = {.lex_state = 430, .external_lex_state = 10}, - [646] = {.lex_state = 165, .external_lex_state = 3}, - [647] = {.lex_state = 165, .external_lex_state = 3}, - [648] = {.lex_state = 171, .external_lex_state = 3}, - [649] = {.lex_state = 173, .external_lex_state = 18}, - [650] = {.lex_state = 210, .external_lex_state = 16}, - [651] = {.lex_state = 194, .external_lex_state = 12}, - [652] = {.lex_state = 173, .external_lex_state = 18}, - [653] = {.lex_state = 194, .external_lex_state = 12}, - [654] = {.lex_state = 431, .external_lex_state = 3}, - [655] = {.lex_state = 165, .external_lex_state = 3}, - [656] = {.lex_state = 165, .external_lex_state = 3}, - [657] = {.lex_state = 165, .external_lex_state = 3}, - [658] = {.lex_state = 208, .external_lex_state = 16}, - [659] = {.lex_state = 208, .external_lex_state = 16}, - [660] = {.lex_state = 209, .external_lex_state = 19}, - [661] = {.lex_state = 209, .external_lex_state = 19}, - [662] = {.lex_state = 194, .external_lex_state = 12}, - [663] = {.lex_state = 194, .external_lex_state = 12}, - [664] = {.lex_state = 173, .external_lex_state = 18}, - [665] = {.lex_state = 173, .external_lex_state = 18}, - [666] = {.lex_state = 431, .external_lex_state = 3}, - [667] = {.lex_state = 175, .external_lex_state = 18}, - [668] = {.lex_state = 173, .external_lex_state = 20}, - [669] = {.lex_state = 431, .external_lex_state = 3}, - [670] = {.lex_state = 173, .external_lex_state = 18}, - [671] = {.lex_state = 173, .external_lex_state = 18}, - [672] = {.lex_state = 176, .external_lex_state = 18}, - [673] = {.lex_state = 171, .external_lex_state = 3}, - [674] = {.lex_state = 173, .external_lex_state = 18}, - [675] = {.lex_state = 171, .external_lex_state = 3}, - [676] = {.lex_state = 173, .external_lex_state = 18}, - [677] = {.lex_state = 173, .external_lex_state = 18}, - [678] = {.lex_state = 145, .external_lex_state = 8}, - [679] = {.lex_state = 171, .external_lex_state = 3}, - [680] = {.lex_state = 431, .external_lex_state = 3}, - [681] = {.lex_state = 173, .external_lex_state = 18}, - [682] = {.lex_state = 173, .external_lex_state = 18}, - [683] = {.lex_state = 173, .external_lex_state = 18}, + [633] = {.lex_state = 170, .external_lex_state = 3}, + [634] = {.lex_state = 172, .external_lex_state = 3}, + [635] = {.lex_state = 172, .external_lex_state = 3}, + [636] = {.lex_state = 194, .external_lex_state = 12}, + [637] = {.lex_state = 170, .external_lex_state = 3}, + [638] = {.lex_state = 173, .external_lex_state = 19}, + [639] = {.lex_state = 430, .external_lex_state = 10}, + [640] = {.lex_state = 173, .external_lex_state = 19}, + [641] = {.lex_state = 194, .external_lex_state = 12}, + [642] = {.lex_state = 194, .external_lex_state = 12}, + [643] = {.lex_state = 431, .external_lex_state = 3}, + [644] = {.lex_state = 170, .external_lex_state = 3}, + [645] = {.lex_state = 170, .external_lex_state = 3}, + [646] = {.lex_state = 431, .external_lex_state = 3}, + [647] = {.lex_state = 172, .external_lex_state = 3}, + [648] = {.lex_state = 430, .external_lex_state = 10}, + [649] = {.lex_state = 170, .external_lex_state = 3}, + [650] = {.lex_state = 172, .external_lex_state = 3}, + [651] = {.lex_state = 210, .external_lex_state = 14}, + [652] = {.lex_state = 208, .external_lex_state = 14}, + [653] = {.lex_state = 167, .external_lex_state = 11}, + [654] = {.lex_state = 173, .external_lex_state = 19}, + [655] = {.lex_state = 170, .external_lex_state = 3}, + [656] = {.lex_state = 170, .external_lex_state = 3}, + [657] = {.lex_state = 173, .external_lex_state = 19}, + [658] = {.lex_state = 208, .external_lex_state = 14}, + [659] = {.lex_state = 173, .external_lex_state = 19}, + [660] = {.lex_state = 173, .external_lex_state = 19}, + [661] = {.lex_state = 173, .external_lex_state = 19}, + [662] = {.lex_state = 170, .external_lex_state = 3}, + [663] = {.lex_state = 207, .external_lex_state = 14}, + [664] = {.lex_state = 173, .external_lex_state = 19}, + [665] = {.lex_state = 207, .external_lex_state = 14}, + [666] = {.lex_state = 167, .external_lex_state = 11}, + [667] = {.lex_state = 210, .external_lex_state = 14}, + [668] = {.lex_state = 430, .external_lex_state = 10}, + [669] = {.lex_state = 170, .external_lex_state = 3}, + [670] = {.lex_state = 172, .external_lex_state = 3}, + [671] = {.lex_state = 430, .external_lex_state = 10}, + [672] = {.lex_state = 173, .external_lex_state = 19}, + [673] = {.lex_state = 173, .external_lex_state = 19}, + [674] = {.lex_state = 173, .external_lex_state = 20}, + [675] = {.lex_state = 175, .external_lex_state = 19}, + [676] = {.lex_state = 176, .external_lex_state = 19}, + [677] = {.lex_state = 176, .external_lex_state = 19}, + [678] = {.lex_state = 194, .external_lex_state = 16}, + [679] = {.lex_state = 172, .external_lex_state = 3}, + [680] = {.lex_state = 194, .external_lex_state = 16}, + [681] = {.lex_state = 173, .external_lex_state = 20}, + [682] = {.lex_state = 173, .external_lex_state = 20}, + [683] = {.lex_state = 175, .external_lex_state = 19}, [684] = {.lex_state = 173, .external_lex_state = 20}, - [685] = {.lex_state = 173, .external_lex_state = 18}, - [686] = {.lex_state = 176, .external_lex_state = 18}, - [687] = {.lex_state = 176, .external_lex_state = 18}, - [688] = {.lex_state = 175, .external_lex_state = 18}, - [689] = {.lex_state = 173, .external_lex_state = 20}, - [690] = {.lex_state = 194, .external_lex_state = 17}, - [691] = {.lex_state = 431, .external_lex_state = 3}, - [692] = {.lex_state = 145, .external_lex_state = 8}, - [693] = {.lex_state = 194, .external_lex_state = 17}, - [694] = {.lex_state = 175, .external_lex_state = 18}, - [695] = {.lex_state = 171, .external_lex_state = 3}, - [696] = {.lex_state = 175, .external_lex_state = 18}, - [697] = {.lex_state = 171, .external_lex_state = 3}, - [698] = {.lex_state = 171, .external_lex_state = 3}, - [699] = {.lex_state = 171, .external_lex_state = 3}, - [700] = {.lex_state = 173, .external_lex_state = 18}, - [701] = {.lex_state = 173, .external_lex_state = 18}, - [702] = {.lex_state = 145, .external_lex_state = 8}, - [703] = {.lex_state = 171, .external_lex_state = 3}, - [704] = {.lex_state = 171, .external_lex_state = 3}, - [705] = {.lex_state = 173, .external_lex_state = 18}, - [706] = {.lex_state = 171, .external_lex_state = 3}, - [707] = {.lex_state = 173, .external_lex_state = 20}, - [708] = {.lex_state = 431, .external_lex_state = 3}, - [709] = {.lex_state = 431, .external_lex_state = 3}, - [710] = {.lex_state = 171, .external_lex_state = 3}, - [711] = {.lex_state = 171, .external_lex_state = 3}, - [712] = {.lex_state = 171, .external_lex_state = 3}, - [713] = {.lex_state = 173, .external_lex_state = 18}, - [714] = {.lex_state = 171, .external_lex_state = 3}, - [715] = {.lex_state = 176, .external_lex_state = 18}, - [716] = {.lex_state = 431, .external_lex_state = 3}, - [717] = {.lex_state = 171, .external_lex_state = 3}, + [685] = {.lex_state = 173, .external_lex_state = 19}, + [686] = {.lex_state = 175, .external_lex_state = 19}, + [687] = {.lex_state = 173, .external_lex_state = 19}, + [688] = {.lex_state = 431, .external_lex_state = 3}, + [689] = {.lex_state = 175, .external_lex_state = 19}, + [690] = {.lex_state = 431, .external_lex_state = 3}, + [691] = {.lex_state = 172, .external_lex_state = 3}, + [692] = {.lex_state = 431, .external_lex_state = 3}, + [693] = {.lex_state = 431, .external_lex_state = 3}, + [694] = {.lex_state = 173, .external_lex_state = 19}, + [695] = {.lex_state = 173, .external_lex_state = 20}, + [696] = {.lex_state = 172, .external_lex_state = 3}, + [697] = {.lex_state = 153, .external_lex_state = 8}, + [698] = {.lex_state = 175, .external_lex_state = 19}, + [699] = {.lex_state = 173, .external_lex_state = 20}, + [700] = {.lex_state = 431, .external_lex_state = 3}, + [701] = {.lex_state = 431, .external_lex_state = 3}, + [702] = {.lex_state = 172, .external_lex_state = 3}, + [703] = {.lex_state = 172, .external_lex_state = 3}, + [704] = {.lex_state = 175, .external_lex_state = 19}, + [705] = {.lex_state = 173, .external_lex_state = 19}, + [706] = {.lex_state = 173, .external_lex_state = 19}, + [707] = {.lex_state = 153, .external_lex_state = 8}, + [708] = {.lex_state = 175, .external_lex_state = 19}, + [709] = {.lex_state = 172, .external_lex_state = 3}, + [710] = {.lex_state = 173, .external_lex_state = 19}, + [711] = {.lex_state = 431, .external_lex_state = 3}, + [712] = {.lex_state = 172, .external_lex_state = 3}, + [713] = {.lex_state = 431, .external_lex_state = 3}, + [714] = {.lex_state = 176, .external_lex_state = 19}, + [715] = {.lex_state = 176, .external_lex_state = 19}, + [716] = {.lex_state = 172, .external_lex_state = 3}, + [717] = {.lex_state = 431, .external_lex_state = 3}, [718] = {.lex_state = 431, .external_lex_state = 3}, - [719] = {.lex_state = 431, .external_lex_state = 3}, - [720] = {.lex_state = 173, .external_lex_state = 18}, + [719] = {.lex_state = 173, .external_lex_state = 19}, + [720] = {.lex_state = 431, .external_lex_state = 3}, [721] = {.lex_state = 431, .external_lex_state = 3}, - [722] = {.lex_state = 431, .external_lex_state = 3}, - [723] = {.lex_state = 176, .external_lex_state = 18}, - [724] = {.lex_state = 173, .external_lex_state = 20}, - [725] = {.lex_state = 431, .external_lex_state = 3}, + [722] = {.lex_state = 172, .external_lex_state = 3}, + [723] = {.lex_state = 172, .external_lex_state = 3}, + [724] = {.lex_state = 431, .external_lex_state = 3}, + [725] = {.lex_state = 173, .external_lex_state = 19}, [726] = {.lex_state = 431, .external_lex_state = 3}, - [727] = {.lex_state = 431, .external_lex_state = 3}, - [728] = {.lex_state = 431, .external_lex_state = 3}, - [729] = {.lex_state = 431, .external_lex_state = 3}, - [730] = {.lex_state = 171, .external_lex_state = 3}, - [731] = {.lex_state = 171, .external_lex_state = 3}, - [732] = {.lex_state = 171, .external_lex_state = 3}, - [733] = {.lex_state = 176, .external_lex_state = 18}, - [734] = {.lex_state = 176, .external_lex_state = 18}, - [735] = {.lex_state = 173, .external_lex_state = 18}, - [736] = {.lex_state = 171, .external_lex_state = 3}, - [737] = {.lex_state = 173, .external_lex_state = 18}, - [738] = {.lex_state = 431, .external_lex_state = 3}, - [739] = {.lex_state = 175, .external_lex_state = 18}, - [740] = {.lex_state = 431, .external_lex_state = 3}, - [741] = {.lex_state = 431, .external_lex_state = 3}, - [742] = {.lex_state = 431, .external_lex_state = 3}, - [743] = {.lex_state = 175, .external_lex_state = 18}, - [744] = {.lex_state = 175, .external_lex_state = 18}, - [745] = {.lex_state = 211, .external_lex_state = 16}, - [746] = {.lex_state = 211, .external_lex_state = 16}, - [747] = {.lex_state = 173, .external_lex_state = 20}, - [748] = {.lex_state = 176, .external_lex_state = 18}, - [749] = {.lex_state = 145, .external_lex_state = 8}, - [750] = {.lex_state = 175, .external_lex_state = 18}, - [751] = {.lex_state = 431, .external_lex_state = 3}, - [752] = {.lex_state = 175, .external_lex_state = 18}, - [753] = {.lex_state = 173, .external_lex_state = 18}, - [754] = {.lex_state = 431, .external_lex_state = 3}, - [755] = {.lex_state = 175, .external_lex_state = 18}, - [756] = {.lex_state = 173, .external_lex_state = 18}, - [757] = {.lex_state = 173, .external_lex_state = 18}, - [758] = {.lex_state = 175, .external_lex_state = 18}, - [759] = {.lex_state = 432, .external_lex_state = 18}, - [760] = {.lex_state = 432, .external_lex_state = 18}, - [761] = {.lex_state = 173, .external_lex_state = 20}, - [762] = {.lex_state = 432, .external_lex_state = 18}, - [763] = {.lex_state = 432, .external_lex_state = 18}, - [764] = {.lex_state = 432, .external_lex_state = 18}, - [765] = {.lex_state = 175, .external_lex_state = 18}, + [727] = {.lex_state = 173, .external_lex_state = 19}, + [728] = {.lex_state = 176, .external_lex_state = 19}, + [729] = {.lex_state = 172, .external_lex_state = 3}, + [730] = {.lex_state = 176, .external_lex_state = 19}, + [731] = {.lex_state = 175, .external_lex_state = 19}, + [732] = {.lex_state = 172, .external_lex_state = 3}, + [733] = {.lex_state = 173, .external_lex_state = 19}, + [734] = {.lex_state = 172, .external_lex_state = 3}, + [735] = {.lex_state = 176, .external_lex_state = 19}, + [736] = {.lex_state = 211, .external_lex_state = 14}, + [737] = {.lex_state = 211, .external_lex_state = 14}, + [738] = {.lex_state = 173, .external_lex_state = 19}, + [739] = {.lex_state = 431, .external_lex_state = 3}, + [740] = {.lex_state = 172, .external_lex_state = 3}, + [741] = {.lex_state = 173, .external_lex_state = 19}, + [742] = {.lex_state = 176, .external_lex_state = 19}, + [743] = {.lex_state = 431, .external_lex_state = 3}, + [744] = {.lex_state = 172, .external_lex_state = 3}, + [745] = {.lex_state = 173, .external_lex_state = 19}, + [746] = {.lex_state = 173, .external_lex_state = 19}, + [747] = {.lex_state = 431, .external_lex_state = 3}, + [748] = {.lex_state = 431, .external_lex_state = 3}, + [749] = {.lex_state = 172, .external_lex_state = 3}, + [750] = {.lex_state = 172, .external_lex_state = 3}, + [751] = {.lex_state = 173, .external_lex_state = 19}, + [752] = {.lex_state = 431, .external_lex_state = 3}, + [753] = {.lex_state = 431, .external_lex_state = 3}, + [754] = {.lex_state = 153, .external_lex_state = 8}, + [755] = {.lex_state = 173, .external_lex_state = 19}, + [756] = {.lex_state = 173, .external_lex_state = 19}, + [757] = {.lex_state = 153, .external_lex_state = 8}, + [758] = {.lex_state = 172, .external_lex_state = 3}, + [759] = {.lex_state = 431, .external_lex_state = 3}, + [760] = {.lex_state = 176, .external_lex_state = 19}, + [761] = {.lex_state = 431, .external_lex_state = 3}, + [762] = {.lex_state = 172, .external_lex_state = 3}, + [763] = {.lex_state = 176, .external_lex_state = 19}, + [764] = {.lex_state = 175, .external_lex_state = 19}, + [765] = {.lex_state = 175, .external_lex_state = 20}, [766] = {.lex_state = 431, .external_lex_state = 3}, [767] = {.lex_state = 431, .external_lex_state = 3}, - [768] = {.lex_state = 156, .external_lex_state = 8}, - [769] = {.lex_state = 432, .external_lex_state = 18}, - [770] = {.lex_state = 176, .external_lex_state = 18}, - [771] = {.lex_state = 176, .external_lex_state = 18}, - [772] = {.lex_state = 431, .external_lex_state = 3}, - [773] = {.lex_state = 431, .external_lex_state = 3}, - [774] = {.lex_state = 432, .external_lex_state = 18}, - [775] = {.lex_state = 431, .external_lex_state = 3}, - [776] = {.lex_state = 173, .external_lex_state = 20}, - [777] = {.lex_state = 431, .external_lex_state = 3}, + [768] = {.lex_state = 431, .external_lex_state = 3}, + [769] = {.lex_state = 431, .external_lex_state = 3}, + [770] = {.lex_state = 153, .external_lex_state = 8}, + [771] = {.lex_state = 432, .external_lex_state = 19}, + [772] = {.lex_state = 432, .external_lex_state = 19}, + [773] = {.lex_state = 432, .external_lex_state = 19}, + [774] = {.lex_state = 432, .external_lex_state = 19}, + [775] = {.lex_state = 176, .external_lex_state = 19}, + [776] = {.lex_state = 431, .external_lex_state = 3}, + [777] = {.lex_state = 176, .external_lex_state = 19}, [778] = {.lex_state = 431, .external_lex_state = 3}, - [779] = {.lex_state = 176, .external_lex_state = 18}, - [780] = {.lex_state = 175, .external_lex_state = 18}, - [781] = {.lex_state = 176, .external_lex_state = 18}, - [782] = {.lex_state = 175, .external_lex_state = 18}, - [783] = {.lex_state = 176, .external_lex_state = 18}, - [784] = {.lex_state = 173, .external_lex_state = 20}, - [785] = {.lex_state = 178, .external_lex_state = 18}, - [786] = {.lex_state = 178, .external_lex_state = 18}, - [787] = {.lex_state = 176, .external_lex_state = 20}, - [788] = {.lex_state = 176, .external_lex_state = 18}, - [789] = {.lex_state = 431, .external_lex_state = 3}, - [790] = {.lex_state = 431, .external_lex_state = 3}, - [791] = {.lex_state = 432, .external_lex_state = 18}, - [792] = {.lex_state = 176, .external_lex_state = 18}, - [793] = {.lex_state = 432, .external_lex_state = 18}, + [779] = {.lex_state = 431, .external_lex_state = 3}, + [780] = {.lex_state = 175, .external_lex_state = 19}, + [781] = {.lex_state = 432, .external_lex_state = 19}, + [782] = {.lex_state = 176, .external_lex_state = 19}, + [783] = {.lex_state = 432, .external_lex_state = 19}, + [784] = {.lex_state = 175, .external_lex_state = 19}, + [785] = {.lex_state = 431, .external_lex_state = 3}, + [786] = {.lex_state = 431, .external_lex_state = 3}, + [787] = {.lex_state = 432, .external_lex_state = 19}, + [788] = {.lex_state = 431, .external_lex_state = 3}, + [789] = {.lex_state = 178, .external_lex_state = 19}, + [790] = {.lex_state = 175, .external_lex_state = 19}, + [791] = {.lex_state = 431, .external_lex_state = 3}, + [792] = {.lex_state = 431, .external_lex_state = 3}, + [793] = {.lex_state = 432, .external_lex_state = 19}, [794] = {.lex_state = 431, .external_lex_state = 3}, - [795] = {.lex_state = 178, .external_lex_state = 18}, - [796] = {.lex_state = 176, .external_lex_state = 18}, - [797] = {.lex_state = 432, .external_lex_state = 18}, - [798] = {.lex_state = 431, .external_lex_state = 3}, - [799] = {.lex_state = 176, .external_lex_state = 18}, - [800] = {.lex_state = 176, .external_lex_state = 18}, - [801] = {.lex_state = 432, .external_lex_state = 18}, - [802] = {.lex_state = 176, .external_lex_state = 18}, - [803] = {.lex_state = 176, .external_lex_state = 18}, - [804] = {.lex_state = 176, .external_lex_state = 20}, - [805] = {.lex_state = 178, .external_lex_state = 18}, - [806] = {.lex_state = 178, .external_lex_state = 18}, - [807] = {.lex_state = 156, .external_lex_state = 8}, - [808] = {.lex_state = 431, .external_lex_state = 3}, - [809] = {.lex_state = 173, .external_lex_state = 20}, - [810] = {.lex_state = 176, .external_lex_state = 18}, + [795] = {.lex_state = 175, .external_lex_state = 19}, + [796] = {.lex_state = 178, .external_lex_state = 19}, + [797] = {.lex_state = 173, .external_lex_state = 20}, + [798] = {.lex_state = 173, .external_lex_state = 20}, + [799] = {.lex_state = 173, .external_lex_state = 20}, + [800] = {.lex_state = 432, .external_lex_state = 19}, + [801] = {.lex_state = 176, .external_lex_state = 19}, + [802] = {.lex_state = 431, .external_lex_state = 3}, + [803] = {.lex_state = 432, .external_lex_state = 19}, + [804] = {.lex_state = 175, .external_lex_state = 19}, + [805] = {.lex_state = 431, .external_lex_state = 3}, + [806] = {.lex_state = 432, .external_lex_state = 19}, + [807] = {.lex_state = 431, .external_lex_state = 3}, + [808] = {.lex_state = 234, .external_lex_state = 2}, + [809] = {.lex_state = 431, .external_lex_state = 3}, + [810] = {.lex_state = 159, .external_lex_state = 8}, [811] = {.lex_state = 431, .external_lex_state = 3}, - [812] = {.lex_state = 431, .external_lex_state = 3}, - [813] = {.lex_state = 431, .external_lex_state = 3}, - [814] = {.lex_state = 431, .external_lex_state = 3}, - [815] = {.lex_state = 431, .external_lex_state = 3}, - [816] = {.lex_state = 178, .external_lex_state = 18}, - [817] = {.lex_state = 145, .external_lex_state = 8}, - [818] = {.lex_state = 173, .external_lex_state = 20}, - [819] = {.lex_state = 178, .external_lex_state = 18}, + [812] = {.lex_state = 176, .external_lex_state = 19}, + [813] = {.lex_state = 176, .external_lex_state = 19}, + [814] = {.lex_state = 234, .external_lex_state = 2}, + [815] = {.lex_state = 178, .external_lex_state = 19}, + [816] = {.lex_state = 431, .external_lex_state = 3}, + [817] = {.lex_state = 175, .external_lex_state = 19}, + [818] = {.lex_state = 431, .external_lex_state = 3}, + [819] = {.lex_state = 175, .external_lex_state = 19}, [820] = {.lex_state = 431, .external_lex_state = 3}, - [821] = {.lex_state = 235, .external_lex_state = 2}, - [822] = {.lex_state = 176, .external_lex_state = 18}, - [823] = {.lex_state = 432, .external_lex_state = 18}, - [824] = {.lex_state = 431, .external_lex_state = 3}, - [825] = {.lex_state = 431, .external_lex_state = 3}, - [826] = {.lex_state = 135, .external_lex_state = 10}, - [827] = {.lex_state = 176, .external_lex_state = 20}, - [828] = {.lex_state = 176, .external_lex_state = 18}, - [829] = {.lex_state = 175, .external_lex_state = 18}, - [830] = {.lex_state = 432, .external_lex_state = 18}, - [831] = {.lex_state = 175, .external_lex_state = 18}, - [832] = {.lex_state = 431, .external_lex_state = 3}, - [833] = {.lex_state = 431, .external_lex_state = 3}, - [834] = {.lex_state = 175, .external_lex_state = 18}, - [835] = {.lex_state = 178, .external_lex_state = 18}, - [836] = {.lex_state = 176, .external_lex_state = 18}, - [837] = {.lex_state = 175, .external_lex_state = 18}, - [838] = {.lex_state = 431, .external_lex_state = 3}, - [839] = {.lex_state = 432, .external_lex_state = 18}, - [840] = {.lex_state = 173, .external_lex_state = 20}, - [841] = {.lex_state = 235, .external_lex_state = 2}, + [821] = {.lex_state = 176, .external_lex_state = 19}, + [822] = {.lex_state = 431, .external_lex_state = 3}, + [823] = {.lex_state = 173, .external_lex_state = 20}, + [824] = {.lex_state = 159, .external_lex_state = 8}, + [825] = {.lex_state = 432, .external_lex_state = 19}, + [826] = {.lex_state = 173, .external_lex_state = 20}, + [827] = {.lex_state = 178, .external_lex_state = 19}, + [828] = {.lex_state = 175, .external_lex_state = 19}, + [829] = {.lex_state = 159, .external_lex_state = 8}, + [830] = {.lex_state = 153, .external_lex_state = 8}, + [831] = {.lex_state = 176, .external_lex_state = 19}, + [832] = {.lex_state = 173, .external_lex_state = 20}, + [833] = {.lex_state = 234, .external_lex_state = 2}, + [834] = {.lex_state = 173, .external_lex_state = 20}, + [835] = {.lex_state = 431, .external_lex_state = 3}, + [836] = {.lex_state = 431, .external_lex_state = 3}, + [837] = {.lex_state = 234, .external_lex_state = 2}, + [838] = {.lex_state = 176, .external_lex_state = 19}, + [839] = {.lex_state = 176, .external_lex_state = 19}, + [840] = {.lex_state = 176, .external_lex_state = 19}, + [841] = {.lex_state = 432, .external_lex_state = 19}, [842] = {.lex_state = 431, .external_lex_state = 3}, - [843] = {.lex_state = 235, .external_lex_state = 2}, - [844] = {.lex_state = 431, .external_lex_state = 3}, - [845] = {.lex_state = 431, .external_lex_state = 3}, - [846] = {.lex_state = 431, .external_lex_state = 3}, - [847] = {.lex_state = 431, .external_lex_state = 3}, - [848] = {.lex_state = 176, .external_lex_state = 18}, - [849] = {.lex_state = 431, .external_lex_state = 3}, - [850] = {.lex_state = 431, .external_lex_state = 3}, + [843] = {.lex_state = 178, .external_lex_state = 19}, + [844] = {.lex_state = 175, .external_lex_state = 19}, + [845] = {.lex_state = 173, .external_lex_state = 20}, + [846] = {.lex_state = 173, .external_lex_state = 20}, + [847] = {.lex_state = 175, .external_lex_state = 20}, + [848] = {.lex_state = 431, .external_lex_state = 3}, + [849] = {.lex_state = 150, .external_lex_state = 10}, + [850] = {.lex_state = 175, .external_lex_state = 19}, [851] = {.lex_state = 173, .external_lex_state = 20}, - [852] = {.lex_state = 431, .external_lex_state = 3}, - [853] = {.lex_state = 173, .external_lex_state = 20}, - [854] = {.lex_state = 235, .external_lex_state = 2}, - [855] = {.lex_state = 431, .external_lex_state = 3}, - [856] = {.lex_state = 178, .external_lex_state = 18}, - [857] = {.lex_state = 145, .external_lex_state = 8}, - [858] = {.lex_state = 135, .external_lex_state = 10}, - [859] = {.lex_state = 173, .external_lex_state = 20}, - [860] = {.lex_state = 431, .external_lex_state = 3}, + [852] = {.lex_state = 150, .external_lex_state = 10}, + [853] = {.lex_state = 431, .external_lex_state = 3}, + [854] = {.lex_state = 173, .external_lex_state = 20}, + [855] = {.lex_state = 175, .external_lex_state = 19}, + [856] = {.lex_state = 175, .external_lex_state = 19}, + [857] = {.lex_state = 431, .external_lex_state = 3}, + [858] = {.lex_state = 173, .external_lex_state = 20}, + [859] = {.lex_state = 431, .external_lex_state = 3}, + [860] = {.lex_state = 178, .external_lex_state = 19}, [861] = {.lex_state = 431, .external_lex_state = 3}, - [862] = {.lex_state = 176, .external_lex_state = 18}, - [863] = {.lex_state = 175, .external_lex_state = 18}, + [862] = {.lex_state = 175, .external_lex_state = 19}, + [863] = {.lex_state = 431, .external_lex_state = 3}, [864] = {.lex_state = 431, .external_lex_state = 3}, - [865] = {.lex_state = 431, .external_lex_state = 3}, - [866] = {.lex_state = 235, .external_lex_state = 2}, - [867] = {.lex_state = 176, .external_lex_state = 18}, - [868] = {.lex_state = 432, .external_lex_state = 18}, - [869] = {.lex_state = 432, .external_lex_state = 18}, - [870] = {.lex_state = 176, .external_lex_state = 20}, - [871] = {.lex_state = 175, .external_lex_state = 18}, - [872] = {.lex_state = 173, .external_lex_state = 20}, + [865] = {.lex_state = 234, .external_lex_state = 2}, + [866] = {.lex_state = 431, .external_lex_state = 3}, + [867] = {.lex_state = 431, .external_lex_state = 3}, + [868] = {.lex_state = 173, .external_lex_state = 20}, + [869] = {.lex_state = 173, .external_lex_state = 20}, + [870] = {.lex_state = 431, .external_lex_state = 3}, + [871] = {.lex_state = 431, .external_lex_state = 3}, + [872] = {.lex_state = 431, .external_lex_state = 3}, [873] = {.lex_state = 173, .external_lex_state = 20}, - [874] = {.lex_state = 173, .external_lex_state = 20}, - [875] = {.lex_state = 173, .external_lex_state = 20}, - [876] = {.lex_state = 175, .external_lex_state = 18}, - [877] = {.lex_state = 175, .external_lex_state = 18}, - [878] = {.lex_state = 235, .external_lex_state = 2}, - [879] = {.lex_state = 431, .external_lex_state = 3}, - [880] = {.lex_state = 431, .external_lex_state = 3}, - [881] = {.lex_state = 145, .external_lex_state = 8}, - [882] = {.lex_state = 156, .external_lex_state = 8}, - [883] = {.lex_state = 175, .external_lex_state = 18}, - [884] = {.lex_state = 431, .external_lex_state = 3}, - [885] = {.lex_state = 235, .external_lex_state = 2}, - [886] = {.lex_state = 175, .external_lex_state = 18}, - [887] = {.lex_state = 431, .external_lex_state = 3}, - [888] = {.lex_state = 173, .external_lex_state = 20}, - [889] = {.lex_state = 175, .external_lex_state = 18}, - [890] = {.lex_state = 178, .external_lex_state = 18}, - [891] = {.lex_state = 173, .external_lex_state = 20}, - [892] = {.lex_state = 176, .external_lex_state = 20}, - [893] = {.lex_state = 135, .external_lex_state = 10}, - [894] = {.lex_state = 431, .external_lex_state = 3}, - [895] = {.lex_state = 175, .external_lex_state = 18}, - [896] = {.lex_state = 173, .external_lex_state = 20}, - [897] = {.lex_state = 431, .external_lex_state = 3}, - [898] = {.lex_state = 175, .external_lex_state = 18}, - [899] = {.lex_state = 431, .external_lex_state = 3}, - [900] = {.lex_state = 175, .external_lex_state = 18}, - [901] = {.lex_state = 431, .external_lex_state = 3}, - [902] = {.lex_state = 173, .external_lex_state = 20}, - [903] = {.lex_state = 175, .external_lex_state = 18}, - [904] = {.lex_state = 145, .external_lex_state = 8}, - [905] = {.lex_state = 173, .external_lex_state = 20}, - [906] = {.lex_state = 156, .external_lex_state = 8}, - [907] = {.lex_state = 431, .external_lex_state = 3}, - [908] = {.lex_state = 235, .external_lex_state = 2}, - [909] = {.lex_state = 176, .external_lex_state = 20}, - [910] = {.lex_state = 431, .external_lex_state = 3}, - [911] = {.lex_state = 431, .external_lex_state = 3}, - [912] = {.lex_state = 173, .external_lex_state = 20}, - [913] = {.lex_state = 176, .external_lex_state = 20}, - [914] = {.lex_state = 432, .external_lex_state = 20}, - [915] = {.lex_state = 432, .external_lex_state = 18}, - [916] = {.lex_state = 432, .external_lex_state = 18}, - [917] = {.lex_state = 135, .external_lex_state = 11}, - [918] = {.lex_state = 167, .external_lex_state = 10}, - [919] = {.lex_state = 167, .external_lex_state = 10}, - [920] = {.lex_state = 432, .external_lex_state = 18}, - [921] = {.lex_state = 432, .external_lex_state = 18}, - [922] = {.lex_state = 432, .external_lex_state = 18}, - [923] = {.lex_state = 432, .external_lex_state = 18}, - [924] = {.lex_state = 432, .external_lex_state = 18}, - [925] = {.lex_state = 432, .external_lex_state = 18}, - [926] = {.lex_state = 432, .external_lex_state = 18}, - [927] = {.lex_state = 432, .external_lex_state = 18}, - [928] = {.lex_state = 432, .external_lex_state = 18}, - [929] = {.lex_state = 135, .external_lex_state = 11}, - [930] = {.lex_state = 178, .external_lex_state = 18}, - [931] = {.lex_state = 176, .external_lex_state = 20}, - [932] = {.lex_state = 178, .external_lex_state = 18}, - [933] = {.lex_state = 176, .external_lex_state = 20}, - [934] = {.lex_state = 176, .external_lex_state = 20}, - [935] = {.lex_state = 176, .external_lex_state = 20}, - [936] = {.lex_state = 432, .external_lex_state = 20}, - [937] = {.lex_state = 432, .external_lex_state = 18}, - [938] = {.lex_state = 149, .external_lex_state = 10}, - [939] = {.lex_state = 156, .external_lex_state = 8}, - [940] = {.lex_state = 432, .external_lex_state = 18}, - [941] = {.lex_state = 432, .external_lex_state = 18}, - [942] = {.lex_state = 432, .external_lex_state = 20}, - [943] = {.lex_state = 432, .external_lex_state = 20}, - [944] = {.lex_state = 432, .external_lex_state = 18}, - [945] = {.lex_state = 202, .external_lex_state = 21}, - [946] = {.lex_state = 433, .external_lex_state = 18}, - [947] = {.lex_state = 433, .external_lex_state = 18}, - [948] = {.lex_state = 432, .external_lex_state = 18}, - [949] = {.lex_state = 432, .external_lex_state = 18}, - [950] = {.lex_state = 432, .external_lex_state = 18}, - [951] = {.lex_state = 178, .external_lex_state = 18}, - [952] = {.lex_state = 178, .external_lex_state = 18}, - [953] = {.lex_state = 202, .external_lex_state = 21}, - [954] = {.lex_state = 432, .external_lex_state = 18}, - [955] = {.lex_state = 156, .external_lex_state = 8}, - [956] = {.lex_state = 432, .external_lex_state = 18}, - [957] = {.lex_state = 135, .external_lex_state = 10}, - [958] = {.lex_state = 178, .external_lex_state = 18}, - [959] = {.lex_state = 432, .external_lex_state = 18}, - [960] = {.lex_state = 432, .external_lex_state = 18}, + [874] = {.lex_state = 431, .external_lex_state = 3}, + [875] = {.lex_state = 431, .external_lex_state = 3}, + [876] = {.lex_state = 153, .external_lex_state = 8}, + [877] = {.lex_state = 234, .external_lex_state = 2}, + [878] = {.lex_state = 173, .external_lex_state = 20}, + [879] = {.lex_state = 176, .external_lex_state = 19}, + [880] = {.lex_state = 175, .external_lex_state = 20}, + [881] = {.lex_state = 173, .external_lex_state = 20}, + [882] = {.lex_state = 432, .external_lex_state = 19}, + [883] = {.lex_state = 176, .external_lex_state = 19}, + [884] = {.lex_state = 176, .external_lex_state = 19}, + [885] = {.lex_state = 431, .external_lex_state = 3}, + [886] = {.lex_state = 432, .external_lex_state = 19}, + [887] = {.lex_state = 176, .external_lex_state = 19}, + [888] = {.lex_state = 175, .external_lex_state = 20}, + [889] = {.lex_state = 173, .external_lex_state = 20}, + [890] = {.lex_state = 175, .external_lex_state = 20}, + [891] = {.lex_state = 175, .external_lex_state = 19}, + [892] = {.lex_state = 431, .external_lex_state = 3}, + [893] = {.lex_state = 431, .external_lex_state = 3}, + [894] = {.lex_state = 176, .external_lex_state = 19}, + [895] = {.lex_state = 431, .external_lex_state = 3}, + [896] = {.lex_state = 431, .external_lex_state = 3}, + [897] = {.lex_state = 234, .external_lex_state = 2}, + [898] = {.lex_state = 173, .external_lex_state = 20}, + [899] = {.lex_state = 234, .external_lex_state = 2}, + [900] = {.lex_state = 175, .external_lex_state = 19}, + [901] = {.lex_state = 176, .external_lex_state = 19}, + [902] = {.lex_state = 175, .external_lex_state = 19}, + [903] = {.lex_state = 431, .external_lex_state = 3}, + [904] = {.lex_state = 431, .external_lex_state = 3}, + [905] = {.lex_state = 150, .external_lex_state = 10}, + [906] = {.lex_state = 175, .external_lex_state = 20}, + [907] = {.lex_state = 175, .external_lex_state = 19}, + [908] = {.lex_state = 159, .external_lex_state = 8}, + [909] = {.lex_state = 178, .external_lex_state = 19}, + [910] = {.lex_state = 153, .external_lex_state = 8}, + [911] = {.lex_state = 178, .external_lex_state = 19}, + [912] = {.lex_state = 175, .external_lex_state = 19}, + [913] = {.lex_state = 176, .external_lex_state = 19}, + [914] = {.lex_state = 178, .external_lex_state = 19}, + [915] = {.lex_state = 178, .external_lex_state = 19}, + [916] = {.lex_state = 176, .external_lex_state = 19}, + [917] = {.lex_state = 432, .external_lex_state = 19}, + [918] = {.lex_state = 431, .external_lex_state = 3}, + [919] = {.lex_state = 432, .external_lex_state = 20}, + [920] = {.lex_state = 433, .external_lex_state = 19}, + [921] = {.lex_state = 432, .external_lex_state = 19}, + [922] = {.lex_state = 432, .external_lex_state = 19}, + [923] = {.lex_state = 432, .external_lex_state = 19}, + [924] = {.lex_state = 432, .external_lex_state = 19}, + [925] = {.lex_state = 432, .external_lex_state = 19}, + [926] = {.lex_state = 432, .external_lex_state = 20}, + [927] = {.lex_state = 178, .external_lex_state = 19}, + [928] = {.lex_state = 433, .external_lex_state = 19}, + [929] = {.lex_state = 433, .external_lex_state = 19}, + [930] = {.lex_state = 429, .external_lex_state = 8}, + [931] = {.lex_state = 432, .external_lex_state = 19}, + [932] = {.lex_state = 432, .external_lex_state = 19}, + [933] = {.lex_state = 432, .external_lex_state = 20}, + [934] = {.lex_state = 432, .external_lex_state = 19}, + [935] = {.lex_state = 432, .external_lex_state = 19}, + [936] = {.lex_state = 178, .external_lex_state = 19}, + [937] = {.lex_state = 432, .external_lex_state = 20}, + [938] = {.lex_state = 432, .external_lex_state = 19}, + [939] = {.lex_state = 432, .external_lex_state = 20}, + [940] = {.lex_state = 166, .external_lex_state = 10}, + [941] = {.lex_state = 432, .external_lex_state = 19}, + [942] = {.lex_state = 178, .external_lex_state = 19}, + [943] = {.lex_state = 432, .external_lex_state = 19}, + [944] = {.lex_state = 432, .external_lex_state = 19}, + [945] = {.lex_state = 178, .external_lex_state = 19}, + [946] = {.lex_state = 433, .external_lex_state = 19}, + [947] = {.lex_state = 432, .external_lex_state = 19}, + [948] = {.lex_state = 432, .external_lex_state = 19}, + [949] = {.lex_state = 432, .external_lex_state = 19}, + [950] = {.lex_state = 178, .external_lex_state = 19}, + [951] = {.lex_state = 432, .external_lex_state = 19}, + [952] = {.lex_state = 432, .external_lex_state = 19}, + [953] = {.lex_state = 433, .external_lex_state = 19}, + [954] = {.lex_state = 433, .external_lex_state = 19}, + [955] = {.lex_state = 166, .external_lex_state = 10}, + [956] = {.lex_state = 432, .external_lex_state = 19}, + [957] = {.lex_state = 432, .external_lex_state = 19}, + [958] = {.lex_state = 166, .external_lex_state = 10}, + [959] = {.lex_state = 168, .external_lex_state = 10}, + [960] = {.lex_state = 168, .external_lex_state = 10}, [961] = {.lex_state = 202, .external_lex_state = 21}, - [962] = {.lex_state = 202, .external_lex_state = 21}, - [963] = {.lex_state = 432, .external_lex_state = 18}, - [964] = {.lex_state = 178, .external_lex_state = 18}, - [965] = {.lex_state = 432, .external_lex_state = 18}, - [966] = {.lex_state = 432, .external_lex_state = 18}, - [967] = {.lex_state = 432, .external_lex_state = 20}, - [968] = {.lex_state = 176, .external_lex_state = 20}, - [969] = {.lex_state = 428, .external_lex_state = 8}, - [970] = {.lex_state = 202, .external_lex_state = 21}, - [971] = {.lex_state = 432, .external_lex_state = 18}, - [972] = {.lex_state = 428, .external_lex_state = 8}, - [973] = {.lex_state = 432, .external_lex_state = 18}, - [974] = {.lex_state = 432, .external_lex_state = 18}, - [975] = {.lex_state = 432, .external_lex_state = 18}, - [976] = {.lex_state = 202, .external_lex_state = 21}, - [977] = {.lex_state = 432, .external_lex_state = 18}, - [978] = {.lex_state = 432, .external_lex_state = 18}, - [979] = {.lex_state = 178, .external_lex_state = 18}, - [980] = {.lex_state = 433, .external_lex_state = 18}, - [981] = {.lex_state = 432, .external_lex_state = 18}, - [982] = {.lex_state = 433, .external_lex_state = 18}, - [983] = {.lex_state = 432, .external_lex_state = 18}, - [984] = {.lex_state = 433, .external_lex_state = 18}, - [985] = {.lex_state = 156, .external_lex_state = 8}, - [986] = {.lex_state = 433, .external_lex_state = 18}, - [987] = {.lex_state = 202, .external_lex_state = 21}, - [988] = {.lex_state = 432, .external_lex_state = 18}, - [989] = {.lex_state = 432, .external_lex_state = 18}, - [990] = {.lex_state = 176, .external_lex_state = 20}, - [991] = {.lex_state = 432, .external_lex_state = 18}, - [992] = {.lex_state = 162, .external_lex_state = 10}, - [993] = {.lex_state = 428, .external_lex_state = 8}, - [994] = {.lex_state = 433, .external_lex_state = 18}, - [995] = {.lex_state = 432, .external_lex_state = 20}, - [996] = {.lex_state = 432, .external_lex_state = 18}, - [997] = {.lex_state = 432, .external_lex_state = 20}, - [998] = {.lex_state = 433, .external_lex_state = 18}, - [999] = {.lex_state = 176, .external_lex_state = 20}, - [1000] = {.lex_state = 432, .external_lex_state = 20}, - [1001] = {.lex_state = 432, .external_lex_state = 18}, - [1002] = {.lex_state = 135, .external_lex_state = 10}, - [1003] = {.lex_state = 178, .external_lex_state = 18}, - [1004] = {.lex_state = 176, .external_lex_state = 20}, - [1005] = {.lex_state = 135, .external_lex_state = 10}, - [1006] = {.lex_state = 432, .external_lex_state = 18}, - [1007] = {.lex_state = 176, .external_lex_state = 20}, - [1008] = {.lex_state = 176, .external_lex_state = 20}, - [1009] = {.lex_state = 433, .external_lex_state = 18}, - [1010] = {.lex_state = 432, .external_lex_state = 18}, - [1011] = {.lex_state = 433, .external_lex_state = 18}, - [1012] = {.lex_state = 432, .external_lex_state = 18}, - [1013] = {.lex_state = 176, .external_lex_state = 20}, - [1014] = {.lex_state = 433, .external_lex_state = 18}, - [1015] = {.lex_state = 162, .external_lex_state = 10}, - [1016] = {.lex_state = 433, .external_lex_state = 18}, - [1017] = {.lex_state = 176, .external_lex_state = 20}, - [1018] = {.lex_state = 432, .external_lex_state = 18}, - [1019] = {.lex_state = 202, .external_lex_state = 21}, - [1020] = {.lex_state = 162, .external_lex_state = 10}, - [1021] = {.lex_state = 428, .external_lex_state = 8}, - [1022] = {.lex_state = 162, .external_lex_state = 10}, - [1023] = {.lex_state = 432, .external_lex_state = 18}, - [1024] = {.lex_state = 178, .external_lex_state = 18}, - [1025] = {.lex_state = 156, .external_lex_state = 8}, - [1026] = {.lex_state = 178, .external_lex_state = 18}, - [1027] = {.lex_state = 433, .external_lex_state = 18}, - [1028] = {.lex_state = 433, .external_lex_state = 18}, - [1029] = {.lex_state = 432, .external_lex_state = 18}, - [1030] = {.lex_state = 432, .external_lex_state = 20}, - [1031] = {.lex_state = 432, .external_lex_state = 20}, - [1032] = {.lex_state = 433, .external_lex_state = 18}, - [1033] = {.lex_state = 432, .external_lex_state = 18}, - [1034] = {.lex_state = 433, .external_lex_state = 18}, - [1035] = {.lex_state = 176, .external_lex_state = 20}, - [1036] = {.lex_state = 428, .external_lex_state = 8}, - [1037] = {.lex_state = 432, .external_lex_state = 20}, - [1038] = {.lex_state = 149, .external_lex_state = 10}, - [1039] = {.lex_state = 432, .external_lex_state = 20}, - [1040] = {.lex_state = 178, .external_lex_state = 18}, - [1041] = {.lex_state = 178, .external_lex_state = 18}, - [1042] = {.lex_state = 178, .external_lex_state = 18}, - [1043] = {.lex_state = 178, .external_lex_state = 18}, - [1044] = {.lex_state = 178, .external_lex_state = 18}, - [1045] = {.lex_state = 433, .external_lex_state = 18}, - [1046] = {.lex_state = 433, .external_lex_state = 18}, - [1047] = {.lex_state = 428, .external_lex_state = 8}, - [1048] = {.lex_state = 176, .external_lex_state = 20}, - [1049] = {.lex_state = 135, .external_lex_state = 10}, - [1050] = {.lex_state = 176, .external_lex_state = 20}, - [1051] = {.lex_state = 178, .external_lex_state = 18}, - [1052] = {.lex_state = 428, .external_lex_state = 8}, - [1053] = {.lex_state = 176, .external_lex_state = 20}, - [1054] = {.lex_state = 178, .external_lex_state = 18}, - [1055] = {.lex_state = 433, .external_lex_state = 18}, - [1056] = {.lex_state = 178, .external_lex_state = 18}, - [1057] = {.lex_state = 176, .external_lex_state = 20}, - [1058] = {.lex_state = 178, .external_lex_state = 18}, - [1059] = {.lex_state = 167, .external_lex_state = 10}, - [1060] = {.lex_state = 176, .external_lex_state = 20}, - [1061] = {.lex_state = 428, .external_lex_state = 8}, - [1062] = {.lex_state = 149, .external_lex_state = 10}, - [1063] = {.lex_state = 433, .external_lex_state = 18}, - [1064] = {.lex_state = 432, .external_lex_state = 20}, - [1065] = {.lex_state = 432, .external_lex_state = 20}, - [1066] = {.lex_state = 433, .external_lex_state = 18}, - [1067] = {.lex_state = 433, .external_lex_state = 18}, - [1068] = {.lex_state = 149, .external_lex_state = 11}, - [1069] = {.lex_state = 162, .external_lex_state = 10}, - [1070] = {.lex_state = 426, .external_lex_state = 10}, - [1071] = {.lex_state = 433, .external_lex_state = 18}, - [1072] = {.lex_state = 202, .external_lex_state = 22}, - [1073] = {.lex_state = 243, .external_lex_state = 12}, - [1074] = {.lex_state = 433, .external_lex_state = 18}, - [1075] = {.lex_state = 433, .external_lex_state = 18}, - [1076] = {.lex_state = 433, .external_lex_state = 18}, - [1077] = {.lex_state = 162, .external_lex_state = 10}, - [1078] = {.lex_state = 202, .external_lex_state = 22}, - [1079] = {.lex_state = 433, .external_lex_state = 18}, - [1080] = {.lex_state = 167, .external_lex_state = 10}, - [1081] = {.lex_state = 202, .external_lex_state = 22}, - [1082] = {.lex_state = 202, .external_lex_state = 22}, - [1083] = {.lex_state = 202, .external_lex_state = 22}, - [1084] = {.lex_state = 243, .external_lex_state = 12}, - [1085] = {.lex_state = 433, .external_lex_state = 18}, - [1086] = {.lex_state = 433, .external_lex_state = 18}, - [1087] = {.lex_state = 433, .external_lex_state = 18}, - [1088] = {.lex_state = 167, .external_lex_state = 10}, - [1089] = {.lex_state = 426, .external_lex_state = 10}, - [1090] = {.lex_state = 162, .external_lex_state = 10}, - [1091] = {.lex_state = 202, .external_lex_state = 22}, - [1092] = {.lex_state = 162, .external_lex_state = 10}, - [1093] = {.lex_state = 202, .external_lex_state = 22}, - [1094] = {.lex_state = 432, .external_lex_state = 20}, - [1095] = {.lex_state = 202, .external_lex_state = 22}, - [1096] = {.lex_state = 202, .external_lex_state = 22}, + [962] = {.lex_state = 433, .external_lex_state = 19}, + [963] = {.lex_state = 432, .external_lex_state = 20}, + [964] = {.lex_state = 432, .external_lex_state = 20}, + [965] = {.lex_state = 429, .external_lex_state = 8}, + [966] = {.lex_state = 429, .external_lex_state = 8}, + [967] = {.lex_state = 433, .external_lex_state = 19}, + [968] = {.lex_state = 433, .external_lex_state = 19}, + [969] = {.lex_state = 150, .external_lex_state = 10}, + [970] = {.lex_state = 433, .external_lex_state = 19}, + [971] = {.lex_state = 433, .external_lex_state = 19}, + [972] = {.lex_state = 175, .external_lex_state = 20}, + [973] = {.lex_state = 175, .external_lex_state = 20}, + [974] = {.lex_state = 150, .external_lex_state = 10}, + [975] = {.lex_state = 175, .external_lex_state = 20}, + [976] = {.lex_state = 159, .external_lex_state = 8}, + [977] = {.lex_state = 178, .external_lex_state = 19}, + [978] = {.lex_state = 202, .external_lex_state = 21}, + [979] = {.lex_state = 202, .external_lex_state = 21}, + [980] = {.lex_state = 175, .external_lex_state = 20}, + [981] = {.lex_state = 178, .external_lex_state = 19}, + [982] = {.lex_state = 175, .external_lex_state = 20}, + [983] = {.lex_state = 150, .external_lex_state = 11}, + [984] = {.lex_state = 429, .external_lex_state = 8}, + [985] = {.lex_state = 432, .external_lex_state = 19}, + [986] = {.lex_state = 166, .external_lex_state = 10}, + [987] = {.lex_state = 159, .external_lex_state = 8}, + [988] = {.lex_state = 178, .external_lex_state = 19}, + [989] = {.lex_state = 156, .external_lex_state = 10}, + [990] = {.lex_state = 175, .external_lex_state = 20}, + [991] = {.lex_state = 156, .external_lex_state = 10}, + [992] = {.lex_state = 168, .external_lex_state = 10}, + [993] = {.lex_state = 178, .external_lex_state = 19}, + [994] = {.lex_state = 175, .external_lex_state = 20}, + [995] = {.lex_state = 178, .external_lex_state = 19}, + [996] = {.lex_state = 159, .external_lex_state = 8}, + [997] = {.lex_state = 202, .external_lex_state = 21}, + [998] = {.lex_state = 432, .external_lex_state = 19}, + [999] = {.lex_state = 429, .external_lex_state = 8}, + [1000] = {.lex_state = 432, .external_lex_state = 19}, + [1001] = {.lex_state = 432, .external_lex_state = 19}, + [1002] = {.lex_state = 150, .external_lex_state = 10}, + [1003] = {.lex_state = 150, .external_lex_state = 10}, + [1004] = {.lex_state = 429, .external_lex_state = 8}, + [1005] = {.lex_state = 432, .external_lex_state = 19}, + [1006] = {.lex_state = 432, .external_lex_state = 20}, + [1007] = {.lex_state = 432, .external_lex_state = 20}, + [1008] = {.lex_state = 432, .external_lex_state = 19}, + [1009] = {.lex_state = 432, .external_lex_state = 20}, + [1010] = {.lex_state = 178, .external_lex_state = 19}, + [1011] = {.lex_state = 175, .external_lex_state = 20}, + [1012] = {.lex_state = 178, .external_lex_state = 19}, + [1013] = {.lex_state = 175, .external_lex_state = 20}, + [1014] = {.lex_state = 202, .external_lex_state = 21}, + [1015] = {.lex_state = 432, .external_lex_state = 19}, + [1016] = {.lex_state = 432, .external_lex_state = 20}, + [1017] = {.lex_state = 432, .external_lex_state = 19}, + [1018] = {.lex_state = 175, .external_lex_state = 20}, + [1019] = {.lex_state = 432, .external_lex_state = 19}, + [1020] = {.lex_state = 178, .external_lex_state = 19}, + [1021] = {.lex_state = 178, .external_lex_state = 19}, + [1022] = {.lex_state = 202, .external_lex_state = 21}, + [1023] = {.lex_state = 202, .external_lex_state = 21}, + [1024] = {.lex_state = 432, .external_lex_state = 19}, + [1025] = {.lex_state = 432, .external_lex_state = 19}, + [1026] = {.lex_state = 432, .external_lex_state = 19}, + [1027] = {.lex_state = 432, .external_lex_state = 19}, + [1028] = {.lex_state = 432, .external_lex_state = 19}, + [1029] = {.lex_state = 202, .external_lex_state = 21}, + [1030] = {.lex_state = 156, .external_lex_state = 10}, + [1031] = {.lex_state = 175, .external_lex_state = 20}, + [1032] = {.lex_state = 175, .external_lex_state = 20}, + [1033] = {.lex_state = 175, .external_lex_state = 20}, + [1034] = {.lex_state = 432, .external_lex_state = 19}, + [1035] = {.lex_state = 432, .external_lex_state = 19}, + [1036] = {.lex_state = 175, .external_lex_state = 20}, + [1037] = {.lex_state = 175, .external_lex_state = 20}, + [1038] = {.lex_state = 150, .external_lex_state = 11}, + [1039] = {.lex_state = 178, .external_lex_state = 19}, + [1040] = {.lex_state = 178, .external_lex_state = 19}, + [1041] = {.lex_state = 175, .external_lex_state = 20}, + [1042] = {.lex_state = 175, .external_lex_state = 20}, + [1043] = {.lex_state = 433, .external_lex_state = 19}, + [1044] = {.lex_state = 429, .external_lex_state = 8}, + [1045] = {.lex_state = 433, .external_lex_state = 19}, + [1046] = {.lex_state = 178, .external_lex_state = 19}, + [1047] = {.lex_state = 433, .external_lex_state = 19}, + [1048] = {.lex_state = 178, .external_lex_state = 19}, + [1049] = {.lex_state = 432, .external_lex_state = 19}, + [1050] = {.lex_state = 433, .external_lex_state = 19}, + [1051] = {.lex_state = 159, .external_lex_state = 8}, + [1052] = {.lex_state = 178, .external_lex_state = 19}, + [1053] = {.lex_state = 432, .external_lex_state = 19}, + [1054] = {.lex_state = 175, .external_lex_state = 20}, + [1055] = {.lex_state = 175, .external_lex_state = 20}, + [1056] = {.lex_state = 429, .external_lex_state = 8}, + [1057] = {.lex_state = 433, .external_lex_state = 19}, + [1058] = {.lex_state = 433, .external_lex_state = 19}, + [1059] = {.lex_state = 432, .external_lex_state = 19}, + [1060] = {.lex_state = 432, .external_lex_state = 20}, + [1061] = {.lex_state = 433, .external_lex_state = 19}, + [1062] = {.lex_state = 432, .external_lex_state = 19}, + [1063] = {.lex_state = 432, .external_lex_state = 19}, + [1064] = {.lex_state = 432, .external_lex_state = 19}, + [1065] = {.lex_state = 432, .external_lex_state = 19}, + [1066] = {.lex_state = 433, .external_lex_state = 19}, + [1067] = {.lex_state = 432, .external_lex_state = 19}, + [1068] = {.lex_state = 433, .external_lex_state = 19}, + [1069] = {.lex_state = 432, .external_lex_state = 19}, + [1070] = {.lex_state = 432, .external_lex_state = 20}, + [1071] = {.lex_state = 433, .external_lex_state = 19}, + [1072] = {.lex_state = 433, .external_lex_state = 19}, + [1073] = {.lex_state = 432, .external_lex_state = 20}, + [1074] = {.lex_state = 433, .external_lex_state = 19}, + [1075] = {.lex_state = 427, .external_lex_state = 10}, + [1076] = {.lex_state = 433, .external_lex_state = 19}, + [1077] = {.lex_state = 202, .external_lex_state = 22}, + [1078] = {.lex_state = 156, .external_lex_state = 10}, + [1079] = {.lex_state = 433, .external_lex_state = 19}, + [1080] = {.lex_state = 427, .external_lex_state = 10}, + [1081] = {.lex_state = 432, .external_lex_state = 20}, + [1082] = {.lex_state = 156, .external_lex_state = 11}, + [1083] = {.lex_state = 432, .external_lex_state = 20}, + [1084] = {.lex_state = 202, .external_lex_state = 22}, + [1085] = {.lex_state = 432, .external_lex_state = 20}, + [1086] = {.lex_state = 432, .external_lex_state = 20}, + [1087] = {.lex_state = 429, .external_lex_state = 8}, + [1088] = {.lex_state = 432, .external_lex_state = 20}, + [1089] = {.lex_state = 432, .external_lex_state = 20}, + [1090] = {.lex_state = 432, .external_lex_state = 20}, + [1091] = {.lex_state = 432, .external_lex_state = 20}, + [1092] = {.lex_state = 433, .external_lex_state = 19}, + [1093] = {.lex_state = 433, .external_lex_state = 19}, + [1094] = {.lex_state = 202, .external_lex_state = 22}, + [1095] = {.lex_state = 433, .external_lex_state = 19}, + [1096] = {.lex_state = 427, .external_lex_state = 10}, [1097] = {.lex_state = 202, .external_lex_state = 22}, - [1098] = {.lex_state = 433, .external_lex_state = 18}, - [1099] = {.lex_state = 432, .external_lex_state = 20}, - [1100] = {.lex_state = 433, .external_lex_state = 18}, + [1098] = {.lex_state = 432, .external_lex_state = 20}, + [1099] = {.lex_state = 202, .external_lex_state = 22}, + [1100] = {.lex_state = 432, .external_lex_state = 20}, [1101] = {.lex_state = 202, .external_lex_state = 22}, - [1102] = {.lex_state = 433, .external_lex_state = 18}, - [1103] = {.lex_state = 162, .external_lex_state = 10}, - [1104] = {.lex_state = 428, .external_lex_state = 8}, + [1102] = {.lex_state = 432, .external_lex_state = 20}, + [1103] = {.lex_state = 202, .external_lex_state = 22}, + [1104] = {.lex_state = 166, .external_lex_state = 10}, [1105] = {.lex_state = 202, .external_lex_state = 22}, - [1106] = {.lex_state = 135, .external_lex_state = 11}, - [1107] = {.lex_state = 167, .external_lex_state = 10}, + [1106] = {.lex_state = 432, .external_lex_state = 20}, + [1107] = {.lex_state = 168, .external_lex_state = 10}, [1108] = {.lex_state = 432, .external_lex_state = 20}, [1109] = {.lex_state = 432, .external_lex_state = 20}, - [1110] = {.lex_state = 433, .external_lex_state = 18}, - [1111] = {.lex_state = 202, .external_lex_state = 22}, - [1112] = {.lex_state = 432, .external_lex_state = 20}, - [1113] = {.lex_state = 202, .external_lex_state = 22}, + [1110] = {.lex_state = 156, .external_lex_state = 10}, + [1111] = {.lex_state = 432, .external_lex_state = 20}, + [1112] = {.lex_state = 242, .external_lex_state = 12}, + [1113] = {.lex_state = 156, .external_lex_state = 10}, [1114] = {.lex_state = 202, .external_lex_state = 22}, - [1115] = {.lex_state = 432, .external_lex_state = 20}, - [1116] = {.lex_state = 432, .external_lex_state = 20}, - [1117] = {.lex_state = 432, .external_lex_state = 20}, - [1118] = {.lex_state = 433, .external_lex_state = 18}, - [1119] = {.lex_state = 433, .external_lex_state = 18}, - [1120] = {.lex_state = 432, .external_lex_state = 20}, - [1121] = {.lex_state = 433, .external_lex_state = 18}, - [1122] = {.lex_state = 432, .external_lex_state = 20}, - [1123] = {.lex_state = 432, .external_lex_state = 20}, - [1124] = {.lex_state = 433, .external_lex_state = 18}, - [1125] = {.lex_state = 433, .external_lex_state = 18}, - [1126] = {.lex_state = 433, .external_lex_state = 18}, - [1127] = {.lex_state = 432, .external_lex_state = 20}, - [1128] = {.lex_state = 162, .external_lex_state = 10}, - [1129] = {.lex_state = 433, .external_lex_state = 18}, - [1130] = {.lex_state = 433, .external_lex_state = 18}, - [1131] = {.lex_state = 433, .external_lex_state = 18}, - [1132] = {.lex_state = 433, .external_lex_state = 18}, - [1133] = {.lex_state = 432, .external_lex_state = 20}, - [1134] = {.lex_state = 432, .external_lex_state = 20}, + [1115] = {.lex_state = 433, .external_lex_state = 19}, + [1116] = {.lex_state = 433, .external_lex_state = 19}, + [1117] = {.lex_state = 433, .external_lex_state = 19}, + [1118] = {.lex_state = 202, .external_lex_state = 22}, + [1119] = {.lex_state = 432, .external_lex_state = 20}, + [1120] = {.lex_state = 202, .external_lex_state = 22}, + [1121] = {.lex_state = 172, .external_lex_state = 3}, + [1122] = {.lex_state = 202, .external_lex_state = 22}, + [1123] = {.lex_state = 202, .external_lex_state = 22}, + [1124] = {.lex_state = 432, .external_lex_state = 20}, + [1125] = {.lex_state = 432, .external_lex_state = 20}, + [1126] = {.lex_state = 202, .external_lex_state = 22}, + [1127] = {.lex_state = 429, .external_lex_state = 8}, + [1128] = {.lex_state = 432, .external_lex_state = 20}, + [1129] = {.lex_state = 427, .external_lex_state = 10}, + [1130] = {.lex_state = 429, .external_lex_state = 8}, + [1131] = {.lex_state = 156, .external_lex_state = 11}, + [1132] = {.lex_state = 202, .external_lex_state = 22}, + [1133] = {.lex_state = 150, .external_lex_state = 11}, + [1134] = {.lex_state = 429, .external_lex_state = 8}, [1135] = {.lex_state = 202, .external_lex_state = 22}, - [1136] = {.lex_state = 433, .external_lex_state = 18}, + [1136] = {.lex_state = 429, .external_lex_state = 8}, [1137] = {.lex_state = 432, .external_lex_state = 20}, - [1138] = {.lex_state = 202, .external_lex_state = 22}, - [1139] = {.lex_state = 432, .external_lex_state = 20}, - [1140] = {.lex_state = 432, .external_lex_state = 20}, - [1141] = {.lex_state = 433, .external_lex_state = 18}, + [1138] = {.lex_state = 432, .external_lex_state = 20}, + [1139] = {.lex_state = 166, .external_lex_state = 10}, + [1140] = {.lex_state = 202, .external_lex_state = 22}, + [1141] = {.lex_state = 242, .external_lex_state = 12}, [1142] = {.lex_state = 202, .external_lex_state = 22}, [1143] = {.lex_state = 432, .external_lex_state = 20}, - [1144] = {.lex_state = 432, .external_lex_state = 20}, - [1145] = {.lex_state = 432, .external_lex_state = 20}, - [1146] = {.lex_state = 202, .external_lex_state = 22}, - [1147] = {.lex_state = 202, .external_lex_state = 22}, + [1144] = {.lex_state = 433, .external_lex_state = 19}, + [1145] = {.lex_state = 433, .external_lex_state = 19}, + [1146] = {.lex_state = 432, .external_lex_state = 20}, + [1147] = {.lex_state = 432, .external_lex_state = 20}, [1148] = {.lex_state = 432, .external_lex_state = 20}, - [1149] = {.lex_state = 433, .external_lex_state = 18}, - [1150] = {.lex_state = 149, .external_lex_state = 10}, - [1151] = {.lex_state = 432, .external_lex_state = 20}, - [1152] = {.lex_state = 432, .external_lex_state = 20}, + [1149] = {.lex_state = 433, .external_lex_state = 19}, + [1150] = {.lex_state = 433, .external_lex_state = 19}, + [1151] = {.lex_state = 433, .external_lex_state = 19}, + [1152] = {.lex_state = 202, .external_lex_state = 22}, [1153] = {.lex_state = 202, .external_lex_state = 22}, - [1154] = {.lex_state = 433, .external_lex_state = 18}, - [1155] = {.lex_state = 432, .external_lex_state = 20}, - [1156] = {.lex_state = 433, .external_lex_state = 18}, - [1157] = {.lex_state = 243, .external_lex_state = 12}, - [1158] = {.lex_state = 202, .external_lex_state = 22}, - [1159] = {.lex_state = 432, .external_lex_state = 20}, - [1160] = {.lex_state = 432, .external_lex_state = 20}, - [1161] = {.lex_state = 432, .external_lex_state = 20}, - [1162] = {.lex_state = 432, .external_lex_state = 20}, - [1163] = {.lex_state = 171, .external_lex_state = 3}, - [1164] = {.lex_state = 202, .external_lex_state = 22}, + [1154] = {.lex_state = 202, .external_lex_state = 22}, + [1155] = {.lex_state = 166, .external_lex_state = 10}, + [1156] = {.lex_state = 168, .external_lex_state = 10}, + [1157] = {.lex_state = 202, .external_lex_state = 22}, + [1158] = {.lex_state = 432, .external_lex_state = 20}, + [1159] = {.lex_state = 429, .external_lex_state = 8}, + [1160] = {.lex_state = 433, .external_lex_state = 19}, + [1161] = {.lex_state = 202, .external_lex_state = 22}, + [1162] = {.lex_state = 202, .external_lex_state = 22}, + [1163] = {.lex_state = 202, .external_lex_state = 22}, + [1164] = {.lex_state = 432, .external_lex_state = 20}, [1165] = {.lex_state = 202, .external_lex_state = 22}, - [1166] = {.lex_state = 149, .external_lex_state = 10}, + [1166] = {.lex_state = 242, .external_lex_state = 12}, [1167] = {.lex_state = 202, .external_lex_state = 22}, - [1168] = {.lex_state = 149, .external_lex_state = 10}, - [1169] = {.lex_state = 432, .external_lex_state = 20}, - [1170] = {.lex_state = 432, .external_lex_state = 20}, - [1171] = {.lex_state = 202, .external_lex_state = 22}, - [1172] = {.lex_state = 202, .external_lex_state = 22}, + [1168] = {.lex_state = 432, .external_lex_state = 20}, + [1169] = {.lex_state = 433, .external_lex_state = 19}, + [1170] = {.lex_state = 433, .external_lex_state = 19}, + [1171] = {.lex_state = 432, .external_lex_state = 20}, + [1172] = {.lex_state = 432, .external_lex_state = 20}, [1173] = {.lex_state = 202, .external_lex_state = 22}, - [1174] = {.lex_state = 202, .external_lex_state = 22}, - [1175] = {.lex_state = 432, .external_lex_state = 20}, + [1174] = {.lex_state = 433, .external_lex_state = 19}, + [1175] = {.lex_state = 433, .external_lex_state = 19}, [1176] = {.lex_state = 432, .external_lex_state = 20}, [1177] = {.lex_state = 432, .external_lex_state = 20}, - [1178] = {.lex_state = 432, .external_lex_state = 20}, - [1179] = {.lex_state = 432, .external_lex_state = 20}, - [1180] = {.lex_state = 432, .external_lex_state = 20}, - [1181] = {.lex_state = 202, .external_lex_state = 22}, - [1182] = {.lex_state = 433, .external_lex_state = 18}, + [1178] = {.lex_state = 433, .external_lex_state = 19}, + [1179] = {.lex_state = 429, .external_lex_state = 8}, + [1180] = {.lex_state = 166, .external_lex_state = 10}, + [1181] = {.lex_state = 166, .external_lex_state = 10}, + [1182] = {.lex_state = 433, .external_lex_state = 19}, [1183] = {.lex_state = 202, .external_lex_state = 22}, - [1184] = {.lex_state = 426, .external_lex_state = 10}, - [1185] = {.lex_state = 432, .external_lex_state = 20}, - [1186] = {.lex_state = 433, .external_lex_state = 18}, - [1187] = {.lex_state = 432, .external_lex_state = 20}, - [1188] = {.lex_state = 426, .external_lex_state = 10}, - [1189] = {.lex_state = 432, .external_lex_state = 20}, - [1190] = {.lex_state = 433, .external_lex_state = 18}, - [1191] = {.lex_state = 202, .external_lex_state = 22}, - [1192] = {.lex_state = 202, .external_lex_state = 22}, - [1193] = {.lex_state = 202, .external_lex_state = 22}, + [1184] = {.lex_state = 432, .external_lex_state = 20}, + [1185] = {.lex_state = 166, .external_lex_state = 10}, + [1186] = {.lex_state = 433, .external_lex_state = 19}, + [1187] = {.lex_state = 433, .external_lex_state = 19}, + [1188] = {.lex_state = 433, .external_lex_state = 19}, + [1189] = {.lex_state = 156, .external_lex_state = 10}, + [1190] = {.lex_state = 202, .external_lex_state = 22}, + [1191] = {.lex_state = 433, .external_lex_state = 19}, + [1192] = {.lex_state = 433, .external_lex_state = 19}, + [1193] = {.lex_state = 427, .external_lex_state = 10}, [1194] = {.lex_state = 202, .external_lex_state = 22}, - [1195] = {.lex_state = 202, .external_lex_state = 22}, - [1196] = {.lex_state = 202, .external_lex_state = 22}, - [1197] = {.lex_state = 433, .external_lex_state = 18}, - [1198] = {.lex_state = 433, .external_lex_state = 18}, - [1199] = {.lex_state = 428, .external_lex_state = 8}, - [1200] = {.lex_state = 202, .external_lex_state = 22}, + [1195] = {.lex_state = 432, .external_lex_state = 20}, + [1196] = {.lex_state = 433, .external_lex_state = 19}, + [1197] = {.lex_state = 427, .external_lex_state = 10}, + [1198] = {.lex_state = 432, .external_lex_state = 20}, + [1199] = {.lex_state = 433, .external_lex_state = 19}, + [1200] = {.lex_state = 433, .external_lex_state = 19}, [1201] = {.lex_state = 202, .external_lex_state = 22}, - [1202] = {.lex_state = 428, .external_lex_state = 8}, + [1202] = {.lex_state = 432, .external_lex_state = 20}, [1203] = {.lex_state = 202, .external_lex_state = 22}, - [1204] = {.lex_state = 433, .external_lex_state = 18}, + [1204] = {.lex_state = 202, .external_lex_state = 22}, [1205] = {.lex_state = 202, .external_lex_state = 22}, - [1206] = {.lex_state = 202, .external_lex_state = 22}, - [1207] = {.lex_state = 426, .external_lex_state = 10}, - [1208] = {.lex_state = 433, .external_lex_state = 18}, - [1209] = {.lex_state = 433, .external_lex_state = 18}, - [1210] = {.lex_state = 433, .external_lex_state = 18}, - [1211] = {.lex_state = 433, .external_lex_state = 18}, - [1212] = {.lex_state = 433, .external_lex_state = 18}, - [1213] = {.lex_state = 426, .external_lex_state = 10}, - [1214] = {.lex_state = 433, .external_lex_state = 18}, - [1215] = {.lex_state = 433, .external_lex_state = 18}, - [1216] = {.lex_state = 433, .external_lex_state = 18}, + [1206] = {.lex_state = 433, .external_lex_state = 19}, + [1207] = {.lex_state = 202, .external_lex_state = 22}, + [1208] = {.lex_state = 202, .external_lex_state = 22}, + [1209] = {.lex_state = 433, .external_lex_state = 19}, + [1210] = {.lex_state = 202, .external_lex_state = 22}, + [1211] = {.lex_state = 202, .external_lex_state = 22}, + [1212] = {.lex_state = 433, .external_lex_state = 19}, + [1213] = {.lex_state = 432, .external_lex_state = 20}, + [1214] = {.lex_state = 166, .external_lex_state = 10}, + [1215] = {.lex_state = 432, .external_lex_state = 20}, + [1216] = {.lex_state = 432, .external_lex_state = 20}, [1217] = {.lex_state = 202, .external_lex_state = 22}, - [1218] = {.lex_state = 202, .external_lex_state = 22}, - [1219] = {.lex_state = 433, .external_lex_state = 18}, - [1220] = {.lex_state = 433, .external_lex_state = 18}, - [1221] = {.lex_state = 432, .external_lex_state = 20}, - [1222] = {.lex_state = 432, .external_lex_state = 20}, - [1223] = {.lex_state = 162, .external_lex_state = 10}, - [1224] = {.lex_state = 428, .external_lex_state = 8}, - [1225] = {.lex_state = 433, .external_lex_state = 18}, + [1218] = {.lex_state = 433, .external_lex_state = 19}, + [1219] = {.lex_state = 202, .external_lex_state = 22}, + [1220] = {.lex_state = 433, .external_lex_state = 19}, + [1221] = {.lex_state = 202, .external_lex_state = 22}, + [1222] = {.lex_state = 202, .external_lex_state = 22}, + [1223] = {.lex_state = 432, .external_lex_state = 20}, + [1224] = {.lex_state = 433, .external_lex_state = 19}, + [1225] = {.lex_state = 202, .external_lex_state = 22}, [1226] = {.lex_state = 202, .external_lex_state = 22}, - [1227] = {.lex_state = 433, .external_lex_state = 18}, - [1228] = {.lex_state = 202, .external_lex_state = 22}, - [1229] = {.lex_state = 202, .external_lex_state = 22}, - [1230] = {.lex_state = 202, .external_lex_state = 22}, - [1231] = {.lex_state = 202, .external_lex_state = 22}, + [1227] = {.lex_state = 202, .external_lex_state = 22}, + [1228] = {.lex_state = 166, .external_lex_state = 10}, + [1229] = {.lex_state = 433, .external_lex_state = 19}, + [1230] = {.lex_state = 433, .external_lex_state = 19}, + [1231] = {.lex_state = 433, .external_lex_state = 19}, [1232] = {.lex_state = 202, .external_lex_state = 22}, - [1233] = {.lex_state = 167, .external_lex_state = 10}, - [1234] = {.lex_state = 202, .external_lex_state = 22}, - [1235] = {.lex_state = 149, .external_lex_state = 10}, - [1236] = {.lex_state = 428, .external_lex_state = 8}, - [1237] = {.lex_state = 428, .external_lex_state = 8}, - [1238] = {.lex_state = 428, .external_lex_state = 8}, - [1239] = {.lex_state = 149, .external_lex_state = 11}, - [1240] = {.lex_state = 428, .external_lex_state = 8}, + [1233] = {.lex_state = 168, .external_lex_state = 10}, + [1234] = {.lex_state = 433, .external_lex_state = 19}, + [1235] = {.lex_state = 202, .external_lex_state = 22}, + [1236] = {.lex_state = 433, .external_lex_state = 19}, + [1237] = {.lex_state = 202, .external_lex_state = 22}, + [1238] = {.lex_state = 429, .external_lex_state = 8}, + [1239] = {.lex_state = 433, .external_lex_state = 19}, + [1240] = {.lex_state = 433, .external_lex_state = 19}, [1241] = {.lex_state = 202, .external_lex_state = 22}, - [1242] = {.lex_state = 162, .external_lex_state = 10}, - [1243] = {.lex_state = 167, .external_lex_state = 10}, - [1244] = {.lex_state = 149, .external_lex_state = 11}, - [1245] = {.lex_state = 426, .external_lex_state = 10}, - [1246] = {.lex_state = 430, .external_lex_state = 10}, - [1247] = {.lex_state = 214, .external_lex_state = 23}, - [1248] = {.lex_state = 167, .external_lex_state = 10}, - [1249] = {.lex_state = 171, .external_lex_state = 3}, - [1250] = {.lex_state = 426, .external_lex_state = 11}, - [1251] = {.lex_state = 171, .external_lex_state = 3}, - [1252] = {.lex_state = 167, .external_lex_state = 10}, - [1253] = {.lex_state = 426, .external_lex_state = 10}, - [1254] = {.lex_state = 430, .external_lex_state = 10}, - [1255] = {.lex_state = 430, .external_lex_state = 10}, - [1256] = {.lex_state = 430, .external_lex_state = 10}, - [1257] = {.lex_state = 430, .external_lex_state = 10}, - [1258] = {.lex_state = 426, .external_lex_state = 10}, - [1259] = {.lex_state = 426, .external_lex_state = 10}, - [1260] = {.lex_state = 426, .external_lex_state = 10}, - [1261] = {.lex_state = 213, .external_lex_state = 23}, - [1262] = {.lex_state = 430, .external_lex_state = 10}, - [1263] = {.lex_state = 171, .external_lex_state = 3}, - [1264] = {.lex_state = 430, .external_lex_state = 10}, - [1265] = {.lex_state = 426, .external_lex_state = 11}, - [1266] = {.lex_state = 171, .external_lex_state = 3}, - [1267] = {.lex_state = 171, .external_lex_state = 3}, - [1268] = {.lex_state = 426, .external_lex_state = 11}, - [1269] = {.lex_state = 167, .external_lex_state = 10}, - [1270] = {.lex_state = 167, .external_lex_state = 10}, - [1271] = {.lex_state = 238, .external_lex_state = 24}, - [1272] = {.lex_state = 426, .external_lex_state = 10}, - [1273] = {.lex_state = 426, .external_lex_state = 10}, - [1274] = {.lex_state = 167, .external_lex_state = 10}, - [1275] = {.lex_state = 171, .external_lex_state = 3}, - [1276] = {.lex_state = 171, .external_lex_state = 3}, - [1277] = {.lex_state = 426, .external_lex_state = 11}, - [1278] = {.lex_state = 430, .external_lex_state = 10}, - [1279] = {.lex_state = 167, .external_lex_state = 10}, - [1280] = {.lex_state = 167, .external_lex_state = 10}, - [1281] = {.lex_state = 426, .external_lex_state = 10}, - [1282] = {.lex_state = 171, .external_lex_state = 3}, - [1283] = {.lex_state = 171, .external_lex_state = 3}, - [1284] = {.lex_state = 430, .external_lex_state = 10}, - [1285] = {.lex_state = 214, .external_lex_state = 23}, - [1286] = {.lex_state = 213, .external_lex_state = 23}, - [1287] = {.lex_state = 216, .external_lex_state = 23}, - [1288] = {.lex_state = 213, .external_lex_state = 23}, - [1289] = {.lex_state = 238, .external_lex_state = 24}, + [1242] = {.lex_state = 202, .external_lex_state = 22}, + [1243] = {.lex_state = 433, .external_lex_state = 19}, + [1244] = {.lex_state = 432, .external_lex_state = 20}, + [1245] = {.lex_state = 202, .external_lex_state = 22}, + [1246] = {.lex_state = 433, .external_lex_state = 19}, + [1247] = {.lex_state = 168, .external_lex_state = 10}, + [1248] = {.lex_state = 433, .external_lex_state = 19}, + [1249] = {.lex_state = 172, .external_lex_state = 3}, + [1250] = {.lex_state = 430, .external_lex_state = 10}, + [1251] = {.lex_state = 168, .external_lex_state = 10}, + [1252] = {.lex_state = 237, .external_lex_state = 23}, + [1253] = {.lex_state = 427, .external_lex_state = 11}, + [1254] = {.lex_state = 172, .external_lex_state = 3}, + [1255] = {.lex_state = 168, .external_lex_state = 10}, + [1256] = {.lex_state = 427, .external_lex_state = 10}, + [1257] = {.lex_state = 214, .external_lex_state = 24}, + [1258] = {.lex_state = 427, .external_lex_state = 10}, + [1259] = {.lex_state = 427, .external_lex_state = 11}, + [1260] = {.lex_state = 172, .external_lex_state = 3}, + [1261] = {.lex_state = 172, .external_lex_state = 3}, + [1262] = {.lex_state = 172, .external_lex_state = 3}, + [1263] = {.lex_state = 430, .external_lex_state = 10}, + [1264] = {.lex_state = 168, .external_lex_state = 10}, + [1265] = {.lex_state = 168, .external_lex_state = 10}, + [1266] = {.lex_state = 213, .external_lex_state = 24}, + [1267] = {.lex_state = 427, .external_lex_state = 10}, + [1268] = {.lex_state = 168, .external_lex_state = 10}, + [1269] = {.lex_state = 427, .external_lex_state = 10}, + [1270] = {.lex_state = 430, .external_lex_state = 10}, + [1271] = {.lex_state = 427, .external_lex_state = 10}, + [1272] = {.lex_state = 427, .external_lex_state = 10}, + [1273] = {.lex_state = 168, .external_lex_state = 10}, + [1274] = {.lex_state = 427, .external_lex_state = 10}, + [1275] = {.lex_state = 168, .external_lex_state = 10}, + [1276] = {.lex_state = 156, .external_lex_state = 11}, + [1277] = {.lex_state = 172, .external_lex_state = 3}, + [1278] = {.lex_state = 172, .external_lex_state = 3}, + [1279] = {.lex_state = 427, .external_lex_state = 10}, + [1280] = {.lex_state = 430, .external_lex_state = 10}, + [1281] = {.lex_state = 168, .external_lex_state = 10}, + [1282] = {.lex_state = 172, .external_lex_state = 3}, + [1283] = {.lex_state = 172, .external_lex_state = 3}, + [1284] = {.lex_state = 427, .external_lex_state = 11}, + [1285] = {.lex_state = 427, .external_lex_state = 11}, + [1286] = {.lex_state = 430, .external_lex_state = 10}, + [1287] = {.lex_state = 430, .external_lex_state = 10}, + [1288] = {.lex_state = 430, .external_lex_state = 10}, + [1289] = {.lex_state = 430, .external_lex_state = 10}, [1290] = {.lex_state = 430, .external_lex_state = 10}, - [1291] = {.lex_state = 238, .external_lex_state = 24}, - [1292] = {.lex_state = 238, .external_lex_state = 24}, - [1293] = {.lex_state = 238, .external_lex_state = 24}, - [1294] = {.lex_state = 220, .external_lex_state = 14}, + [1291] = {.lex_state = 430, .external_lex_state = 10}, + [1292] = {.lex_state = 430, .external_lex_state = 10}, + [1293] = {.lex_state = 430, .external_lex_state = 10}, + [1294] = {.lex_state = 237, .external_lex_state = 23}, [1295] = {.lex_state = 430, .external_lex_state = 10}, - [1296] = {.lex_state = 430, .external_lex_state = 10}, - [1297] = {.lex_state = 213, .external_lex_state = 23}, + [1296] = {.lex_state = 213, .external_lex_state = 24}, + [1297] = {.lex_state = 430, .external_lex_state = 10}, [1298] = {.lex_state = 430, .external_lex_state = 10}, [1299] = {.lex_state = 430, .external_lex_state = 10}, [1300] = {.lex_state = 430, .external_lex_state = 10}, - [1301] = {.lex_state = 430, .external_lex_state = 10}, + [1301] = {.lex_state = 427, .external_lex_state = 11}, [1302] = {.lex_state = 430, .external_lex_state = 10}, - [1303] = {.lex_state = 430, .external_lex_state = 10}, - [1304] = {.lex_state = 430, .external_lex_state = 10}, - [1305] = {.lex_state = 430, .external_lex_state = 10}, - [1306] = {.lex_state = 430, .external_lex_state = 10}, - [1307] = {.lex_state = 430, .external_lex_state = 10}, - [1308] = {.lex_state = 238, .external_lex_state = 24}, - [1309] = {.lex_state = 238, .external_lex_state = 24}, - [1310] = {.lex_state = 176, .external_lex_state = 18}, + [1303] = {.lex_state = 214, .external_lex_state = 24}, + [1304] = {.lex_state = 213, .external_lex_state = 24}, + [1305] = {.lex_state = 214, .external_lex_state = 24}, + [1306] = {.lex_state = 237, .external_lex_state = 23}, + [1307] = {.lex_state = 213, .external_lex_state = 24}, + [1308] = {.lex_state = 430, .external_lex_state = 10}, + [1309] = {.lex_state = 213, .external_lex_state = 24}, + [1310] = {.lex_state = 175, .external_lex_state = 19}, [1311] = {.lex_state = 430, .external_lex_state = 10}, [1312] = {.lex_state = 430, .external_lex_state = 10}, - [1313] = {.lex_state = 213, .external_lex_state = 23}, - [1314] = {.lex_state = 176, .external_lex_state = 18}, - [1315] = {.lex_state = 430, .external_lex_state = 10}, + [1313] = {.lex_state = 175, .external_lex_state = 19}, + [1314] = {.lex_state = 216, .external_lex_state = 24}, + [1315] = {.lex_state = 175, .external_lex_state = 19}, [1316] = {.lex_state = 430, .external_lex_state = 10}, - [1317] = {.lex_state = 238, .external_lex_state = 24}, - [1318] = {.lex_state = 238, .external_lex_state = 24}, - [1319] = {.lex_state = 176, .external_lex_state = 18}, - [1320] = {.lex_state = 426, .external_lex_state = 11}, + [1317] = {.lex_state = 430, .external_lex_state = 10}, + [1318] = {.lex_state = 430, .external_lex_state = 10}, + [1319] = {.lex_state = 430, .external_lex_state = 10}, + [1320] = {.lex_state = 430, .external_lex_state = 10}, [1321] = {.lex_state = 430, .external_lex_state = 10}, - [1322] = {.lex_state = 430, .external_lex_state = 10}, - [1323] = {.lex_state = 238, .external_lex_state = 24}, - [1324] = {.lex_state = 238, .external_lex_state = 24}, - [1325] = {.lex_state = 176, .external_lex_state = 18}, - [1326] = {.lex_state = 430, .external_lex_state = 10}, + [1322] = {.lex_state = 213, .external_lex_state = 24}, + [1323] = {.lex_state = 430, .external_lex_state = 10}, + [1324] = {.lex_state = 213, .external_lex_state = 24}, + [1325] = {.lex_state = 427, .external_lex_state = 11}, + [1326] = {.lex_state = 175, .external_lex_state = 19}, [1327] = {.lex_state = 430, .external_lex_state = 10}, - [1328] = {.lex_state = 176, .external_lex_state = 18}, + [1328] = {.lex_state = 175, .external_lex_state = 19}, [1329] = {.lex_state = 430, .external_lex_state = 10}, - [1330] = {.lex_state = 430, .external_lex_state = 10}, - [1331] = {.lex_state = 430, .external_lex_state = 10}, + [1330] = {.lex_state = 237, .external_lex_state = 23}, + [1331] = {.lex_state = 237, .external_lex_state = 23}, [1332] = {.lex_state = 430, .external_lex_state = 10}, [1333] = {.lex_state = 430, .external_lex_state = 10}, - [1334] = {.lex_state = 430, .external_lex_state = 10}, + [1334] = {.lex_state = 213, .external_lex_state = 24}, [1335] = {.lex_state = 430, .external_lex_state = 10}, [1336] = {.lex_state = 430, .external_lex_state = 10}, [1337] = {.lex_state = 430, .external_lex_state = 10}, [1338] = {.lex_state = 430, .external_lex_state = 10}, - [1339] = {.lex_state = 430, .external_lex_state = 10}, - [1340] = {.lex_state = 430, .external_lex_state = 10}, - [1341] = {.lex_state = 430, .external_lex_state = 10}, - [1342] = {.lex_state = 430, .external_lex_state = 10}, + [1339] = {.lex_state = 237, .external_lex_state = 23}, + [1340] = {.lex_state = 213, .external_lex_state = 24}, + [1341] = {.lex_state = 237, .external_lex_state = 23}, + [1342] = {.lex_state = 175, .external_lex_state = 19}, [1343] = {.lex_state = 430, .external_lex_state = 10}, [1344] = {.lex_state = 430, .external_lex_state = 10}, - [1345] = {.lex_state = 430, .external_lex_state = 10}, - [1346] = {.lex_state = 176, .external_lex_state = 18}, - [1347] = {.lex_state = 176, .external_lex_state = 18}, + [1345] = {.lex_state = 214, .external_lex_state = 24}, + [1346] = {.lex_state = 214, .external_lex_state = 24}, + [1347] = {.lex_state = 214, .external_lex_state = 24}, [1348] = {.lex_state = 430, .external_lex_state = 10}, - [1349] = {.lex_state = 430, .external_lex_state = 10}, + [1349] = {.lex_state = 237, .external_lex_state = 23}, [1350] = {.lex_state = 430, .external_lex_state = 10}, [1351] = {.lex_state = 430, .external_lex_state = 10}, - [1352] = {.lex_state = 430, .external_lex_state = 10}, - [1353] = {.lex_state = 430, .external_lex_state = 10}, + [1352] = {.lex_state = 214, .external_lex_state = 24}, + [1353] = {.lex_state = 213, .external_lex_state = 24}, [1354] = {.lex_state = 430, .external_lex_state = 10}, [1355] = {.lex_state = 430, .external_lex_state = 10}, - [1356] = {.lex_state = 214, .external_lex_state = 23}, + [1356] = {.lex_state = 430, .external_lex_state = 10}, [1357] = {.lex_state = 430, .external_lex_state = 10}, - [1358] = {.lex_state = 430, .external_lex_state = 10}, + [1358] = {.lex_state = 213, .external_lex_state = 24}, [1359] = {.lex_state = 430, .external_lex_state = 10}, - [1360] = {.lex_state = 220, .external_lex_state = 14}, + [1360] = {.lex_state = 430, .external_lex_state = 10}, [1361] = {.lex_state = 430, .external_lex_state = 10}, [1362] = {.lex_state = 430, .external_lex_state = 10}, [1363] = {.lex_state = 430, .external_lex_state = 10}, [1364] = {.lex_state = 430, .external_lex_state = 10}, - [1365] = {.lex_state = 426, .external_lex_state = 11}, - [1366] = {.lex_state = 430, .external_lex_state = 10}, - [1367] = {.lex_state = 213, .external_lex_state = 23}, - [1368] = {.lex_state = 430, .external_lex_state = 10}, + [1365] = {.lex_state = 430, .external_lex_state = 10}, + [1366] = {.lex_state = 213, .external_lex_state = 24}, + [1367] = {.lex_state = 213, .external_lex_state = 24}, + [1368] = {.lex_state = 213, .external_lex_state = 24}, [1369] = {.lex_state = 430, .external_lex_state = 10}, - [1370] = {.lex_state = 214, .external_lex_state = 23}, + [1370] = {.lex_state = 430, .external_lex_state = 10}, [1371] = {.lex_state = 430, .external_lex_state = 10}, - [1372] = {.lex_state = 214, .external_lex_state = 23}, - [1373] = {.lex_state = 214, .external_lex_state = 23}, + [1372] = {.lex_state = 237, .external_lex_state = 23}, + [1373] = {.lex_state = 430, .external_lex_state = 10}, [1374] = {.lex_state = 430, .external_lex_state = 10}, [1375] = {.lex_state = 430, .external_lex_state = 10}, [1376] = {.lex_state = 430, .external_lex_state = 10}, [1377] = {.lex_state = 430, .external_lex_state = 10}, - [1378] = {.lex_state = 430, .external_lex_state = 10}, - [1379] = {.lex_state = 214, .external_lex_state = 23}, - [1380] = {.lex_state = 214, .external_lex_state = 23}, - [1381] = {.lex_state = 214, .external_lex_state = 23}, - [1382] = {.lex_state = 214, .external_lex_state = 23}, - [1383] = {.lex_state = 214, .external_lex_state = 23}, - [1384] = {.lex_state = 214, .external_lex_state = 23}, - [1385] = {.lex_state = 214, .external_lex_state = 23}, - [1386] = {.lex_state = 214, .external_lex_state = 23}, - [1387] = {.lex_state = 213, .external_lex_state = 23}, - [1388] = {.lex_state = 214, .external_lex_state = 23}, - [1389] = {.lex_state = 214, .external_lex_state = 23}, - [1390] = {.lex_state = 214, .external_lex_state = 23}, - [1391] = {.lex_state = 214, .external_lex_state = 23}, - [1392] = {.lex_state = 214, .external_lex_state = 23}, - [1393] = {.lex_state = 430, .external_lex_state = 10}, - [1394] = {.lex_state = 214, .external_lex_state = 23}, - [1395] = {.lex_state = 214, .external_lex_state = 23}, - [1396] = {.lex_state = 241, .external_lex_state = 25}, - [1397] = {.lex_state = 176, .external_lex_state = 20}, - [1398] = {.lex_state = 238, .external_lex_state = 24}, - [1399] = {.lex_state = 238, .external_lex_state = 24}, - [1400] = {.lex_state = 213, .external_lex_state = 23}, - [1401] = {.lex_state = 176, .external_lex_state = 20}, - [1402] = {.lex_state = 238, .external_lex_state = 24}, - [1403] = {.lex_state = 213, .external_lex_state = 23}, - [1404] = {.lex_state = 213, .external_lex_state = 23}, - [1405] = {.lex_state = 176, .external_lex_state = 20}, - [1406] = {.lex_state = 213, .external_lex_state = 23}, - [1407] = {.lex_state = 213, .external_lex_state = 23}, - [1408] = {.lex_state = 213, .external_lex_state = 23}, - [1409] = {.lex_state = 238, .external_lex_state = 24}, - [1410] = {.lex_state = 213, .external_lex_state = 23}, - [1411] = {.lex_state = 213, .external_lex_state = 23}, - [1412] = {.lex_state = 238, .external_lex_state = 24}, - [1413] = {.lex_state = 213, .external_lex_state = 23}, - [1414] = {.lex_state = 213, .external_lex_state = 23}, - [1415] = {.lex_state = 238, .external_lex_state = 24}, - [1416] = {.lex_state = 213, .external_lex_state = 23}, - [1417] = {.lex_state = 213, .external_lex_state = 23}, - [1418] = {.lex_state = 212, .external_lex_state = 16}, - [1419] = {.lex_state = 238, .external_lex_state = 24}, - [1420] = {.lex_state = 238, .external_lex_state = 24}, - [1421] = {.lex_state = 214, .external_lex_state = 23}, - [1422] = {.lex_state = 214, .external_lex_state = 23}, - [1423] = {.lex_state = 241, .external_lex_state = 25}, - [1424] = {.lex_state = 212, .external_lex_state = 16}, - [1425] = {.lex_state = 238, .external_lex_state = 24}, - [1426] = {.lex_state = 213, .external_lex_state = 23}, - [1427] = {.lex_state = 213, .external_lex_state = 23}, - [1428] = {.lex_state = 220, .external_lex_state = 14}, - [1429] = {.lex_state = 214, .external_lex_state = 23}, - [1430] = {.lex_state = 213, .external_lex_state = 23}, - [1431] = {.lex_state = 213, .external_lex_state = 16}, - [1432] = {.lex_state = 220, .external_lex_state = 14}, - [1433] = {.lex_state = 220, .external_lex_state = 14}, - [1434] = {.lex_state = 245, .external_lex_state = 26}, - [1435] = {.lex_state = 245, .external_lex_state = 26}, - [1436] = {.lex_state = 214, .external_lex_state = 23}, - [1437] = {.lex_state = 213, .external_lex_state = 23}, - [1438] = {.lex_state = 238, .external_lex_state = 24}, - [1439] = {.lex_state = 216, .external_lex_state = 16}, - [1440] = {.lex_state = 220, .external_lex_state = 14}, - [1441] = {.lex_state = 220, .external_lex_state = 14}, - [1442] = {.lex_state = 220, .external_lex_state = 14}, - [1443] = {.lex_state = 220, .external_lex_state = 14}, - [1444] = {.lex_state = 220, .external_lex_state = 14}, - [1445] = {.lex_state = 212, .external_lex_state = 16}, - [1446] = {.lex_state = 214, .external_lex_state = 23}, - [1447] = {.lex_state = 214, .external_lex_state = 23}, - [1448] = {.lex_state = 214, .external_lex_state = 23}, - [1449] = {.lex_state = 213, .external_lex_state = 23}, - [1450] = {.lex_state = 212, .external_lex_state = 16}, - [1451] = {.lex_state = 178, .external_lex_state = 18}, - [1452] = {.lex_state = 180, .external_lex_state = 27}, - [1453] = {.lex_state = 220, .external_lex_state = 14}, - [1454] = {.lex_state = 220, .external_lex_state = 14}, - [1455] = {.lex_state = 213, .external_lex_state = 23}, - [1456] = {.lex_state = 213, .external_lex_state = 23}, - [1457] = {.lex_state = 220, .external_lex_state = 14}, - [1458] = {.lex_state = 176, .external_lex_state = 20}, - [1459] = {.lex_state = 178, .external_lex_state = 18}, - [1460] = {.lex_state = 180, .external_lex_state = 27}, - [1461] = {.lex_state = 180, .external_lex_state = 27}, - [1462] = {.lex_state = 180, .external_lex_state = 27}, - [1463] = {.lex_state = 180, .external_lex_state = 27}, - [1464] = {.lex_state = 176, .external_lex_state = 20}, - [1465] = {.lex_state = 241, .external_lex_state = 25}, - [1466] = {.lex_state = 241, .external_lex_state = 25}, - [1467] = {.lex_state = 238, .external_lex_state = 24}, - [1468] = {.lex_state = 213, .external_lex_state = 23}, - [1469] = {.lex_state = 241, .external_lex_state = 25}, - [1470] = {.lex_state = 216, .external_lex_state = 16}, - [1471] = {.lex_state = 178, .external_lex_state = 18}, - [1472] = {.lex_state = 180, .external_lex_state = 27}, - [1473] = {.lex_state = 245, .external_lex_state = 26}, - [1474] = {.lex_state = 241, .external_lex_state = 25}, - [1475] = {.lex_state = 212, .external_lex_state = 16}, - [1476] = {.lex_state = 178, .external_lex_state = 18}, - [1477] = {.lex_state = 245, .external_lex_state = 26}, - [1478] = {.lex_state = 180, .external_lex_state = 27}, - [1479] = {.lex_state = 245, .external_lex_state = 26}, - [1480] = {.lex_state = 245, .external_lex_state = 26}, - [1481] = {.lex_state = 245, .external_lex_state = 26}, - [1482] = {.lex_state = 180, .external_lex_state = 27}, - [1483] = {.lex_state = 238, .external_lex_state = 24}, - [1484] = {.lex_state = 245, .external_lex_state = 26}, - [1485] = {.lex_state = 213, .external_lex_state = 16}, - [1486] = {.lex_state = 238, .external_lex_state = 24}, - [1487] = {.lex_state = 220, .external_lex_state = 14}, - [1488] = {.lex_state = 220, .external_lex_state = 14}, - [1489] = {.lex_state = 238, .external_lex_state = 24}, - [1490] = {.lex_state = 178, .external_lex_state = 18}, - [1491] = {.lex_state = 213, .external_lex_state = 23}, - [1492] = {.lex_state = 214, .external_lex_state = 23}, - [1493] = {.lex_state = 238, .external_lex_state = 24}, - [1494] = {.lex_state = 430, .external_lex_state = 10}, - [1495] = {.lex_state = 238, .external_lex_state = 24}, - [1496] = {.lex_state = 238, .external_lex_state = 24}, - [1497] = {.lex_state = 241, .external_lex_state = 25}, - [1498] = {.lex_state = 213, .external_lex_state = 23}, - [1499] = {.lex_state = 178, .external_lex_state = 18}, + [1378] = {.lex_state = 237, .external_lex_state = 23}, + [1379] = {.lex_state = 430, .external_lex_state = 10}, + [1380] = {.lex_state = 218, .external_lex_state = 17}, + [1381] = {.lex_state = 430, .external_lex_state = 10}, + [1382] = {.lex_state = 213, .external_lex_state = 24}, + [1383] = {.lex_state = 213, .external_lex_state = 24}, + [1384] = {.lex_state = 237, .external_lex_state = 23}, + [1385] = {.lex_state = 430, .external_lex_state = 10}, + [1386] = {.lex_state = 213, .external_lex_state = 24}, + [1387] = {.lex_state = 430, .external_lex_state = 10}, + [1388] = {.lex_state = 218, .external_lex_state = 17}, + [1389] = {.lex_state = 430, .external_lex_state = 10}, + [1390] = {.lex_state = 430, .external_lex_state = 10}, + [1391] = {.lex_state = 430, .external_lex_state = 10}, + [1392] = {.lex_state = 430, .external_lex_state = 10}, + [1393] = {.lex_state = 175, .external_lex_state = 19}, + [1394] = {.lex_state = 430, .external_lex_state = 10}, + [1395] = {.lex_state = 213, .external_lex_state = 24}, + [1396] = {.lex_state = 430, .external_lex_state = 10}, + [1397] = {.lex_state = 430, .external_lex_state = 10}, + [1398] = {.lex_state = 430, .external_lex_state = 10}, + [1399] = {.lex_state = 213, .external_lex_state = 24}, + [1400] = {.lex_state = 430, .external_lex_state = 10}, + [1401] = {.lex_state = 213, .external_lex_state = 24}, + [1402] = {.lex_state = 213, .external_lex_state = 24}, + [1403] = {.lex_state = 430, .external_lex_state = 10}, + [1404] = {.lex_state = 218, .external_lex_state = 17}, + [1405] = {.lex_state = 218, .external_lex_state = 17}, + [1406] = {.lex_state = 213, .external_lex_state = 24}, + [1407] = {.lex_state = 180, .external_lex_state = 25}, + [1408] = {.lex_state = 180, .external_lex_state = 25}, + [1409] = {.lex_state = 178, .external_lex_state = 19}, + [1410] = {.lex_state = 178, .external_lex_state = 19}, + [1411] = {.lex_state = 178, .external_lex_state = 19}, + [1412] = {.lex_state = 178, .external_lex_state = 19}, + [1413] = {.lex_state = 178, .external_lex_state = 19}, + [1414] = {.lex_state = 213, .external_lex_state = 24}, + [1415] = {.lex_state = 178, .external_lex_state = 19}, + [1416] = {.lex_state = 214, .external_lex_state = 24}, + [1417] = {.lex_state = 218, .external_lex_state = 17}, + [1418] = {.lex_state = 213, .external_lex_state = 24}, + [1419] = {.lex_state = 218, .external_lex_state = 17}, + [1420] = {.lex_state = 216, .external_lex_state = 14}, + [1421] = {.lex_state = 244, .external_lex_state = 26}, + [1422] = {.lex_state = 244, .external_lex_state = 26}, + [1423] = {.lex_state = 212, .external_lex_state = 14}, + [1424] = {.lex_state = 218, .external_lex_state = 17}, + [1425] = {.lex_state = 218, .external_lex_state = 17}, + [1426] = {.lex_state = 216, .external_lex_state = 14}, + [1427] = {.lex_state = 212, .external_lex_state = 14}, + [1428] = {.lex_state = 212, .external_lex_state = 14}, + [1429] = {.lex_state = 214, .external_lex_state = 14}, + [1430] = {.lex_state = 218, .external_lex_state = 17}, + [1431] = {.lex_state = 178, .external_lex_state = 19}, + [1432] = {.lex_state = 180, .external_lex_state = 25}, + [1433] = {.lex_state = 180, .external_lex_state = 25}, + [1434] = {.lex_state = 180, .external_lex_state = 25}, + [1435] = {.lex_state = 237, .external_lex_state = 23}, + [1436] = {.lex_state = 180, .external_lex_state = 25}, + [1437] = {.lex_state = 214, .external_lex_state = 24}, + [1438] = {.lex_state = 180, .external_lex_state = 25}, + [1439] = {.lex_state = 213, .external_lex_state = 24}, + [1440] = {.lex_state = 218, .external_lex_state = 17}, + [1441] = {.lex_state = 218, .external_lex_state = 17}, + [1442] = {.lex_state = 180, .external_lex_state = 25}, + [1443] = {.lex_state = 214, .external_lex_state = 24}, + [1444] = {.lex_state = 214, .external_lex_state = 24}, + [1445] = {.lex_state = 214, .external_lex_state = 24}, + [1446] = {.lex_state = 214, .external_lex_state = 24}, + [1447] = {.lex_state = 180, .external_lex_state = 25}, + [1448] = {.lex_state = 180, .external_lex_state = 25}, + [1449] = {.lex_state = 214, .external_lex_state = 24}, + [1450] = {.lex_state = 214, .external_lex_state = 24}, + [1451] = {.lex_state = 237, .external_lex_state = 23}, + [1452] = {.lex_state = 214, .external_lex_state = 24}, + [1453] = {.lex_state = 237, .external_lex_state = 23}, + [1454] = {.lex_state = 218, .external_lex_state = 17}, + [1455] = {.lex_state = 237, .external_lex_state = 23}, + [1456] = {.lex_state = 237, .external_lex_state = 23}, + [1457] = {.lex_state = 237, .external_lex_state = 23}, + [1458] = {.lex_state = 214, .external_lex_state = 14}, + [1459] = {.lex_state = 214, .external_lex_state = 24}, + [1460] = {.lex_state = 218, .external_lex_state = 17}, + [1461] = {.lex_state = 214, .external_lex_state = 24}, + [1462] = {.lex_state = 175, .external_lex_state = 20}, + [1463] = {.lex_state = 178, .external_lex_state = 19}, + [1464] = {.lex_state = 237, .external_lex_state = 23}, + [1465] = {.lex_state = 178, .external_lex_state = 19}, + [1466] = {.lex_state = 237, .external_lex_state = 23}, + [1467] = {.lex_state = 237, .external_lex_state = 23}, + [1468] = {.lex_state = 214, .external_lex_state = 24}, + [1469] = {.lex_state = 214, .external_lex_state = 24}, + [1470] = {.lex_state = 237, .external_lex_state = 23}, + [1471] = {.lex_state = 237, .external_lex_state = 23}, + [1472] = {.lex_state = 175, .external_lex_state = 20}, + [1473] = {.lex_state = 218, .external_lex_state = 17}, + [1474] = {.lex_state = 175, .external_lex_state = 20}, + [1475] = {.lex_state = 180, .external_lex_state = 25}, + [1476] = {.lex_state = 212, .external_lex_state = 14}, + [1477] = {.lex_state = 237, .external_lex_state = 23}, + [1478] = {.lex_state = 237, .external_lex_state = 23}, + [1479] = {.lex_state = 214, .external_lex_state = 24}, + [1480] = {.lex_state = 214, .external_lex_state = 24}, + [1481] = {.lex_state = 214, .external_lex_state = 24}, + [1482] = {.lex_state = 214, .external_lex_state = 24}, + [1483] = {.lex_state = 214, .external_lex_state = 24}, + [1484] = {.lex_state = 237, .external_lex_state = 23}, + [1485] = {.lex_state = 244, .external_lex_state = 26}, + [1486] = {.lex_state = 237, .external_lex_state = 23}, + [1487] = {.lex_state = 240, .external_lex_state = 27}, + [1488] = {.lex_state = 237, .external_lex_state = 23}, + [1489] = {.lex_state = 240, .external_lex_state = 27}, + [1490] = {.lex_state = 218, .external_lex_state = 17}, + [1491] = {.lex_state = 244, .external_lex_state = 26}, + [1492] = {.lex_state = 244, .external_lex_state = 26}, + [1493] = {.lex_state = 213, .external_lex_state = 24}, + [1494] = {.lex_state = 214, .external_lex_state = 24}, + [1495] = {.lex_state = 214, .external_lex_state = 24}, + [1496] = {.lex_state = 237, .external_lex_state = 23}, + [1497] = {.lex_state = 237, .external_lex_state = 23}, + [1498] = {.lex_state = 218, .external_lex_state = 17}, + [1499] = {.lex_state = 214, .external_lex_state = 24}, [1500] = {.lex_state = 430, .external_lex_state = 10}, - [1501] = {.lex_state = 180, .external_lex_state = 27}, - [1502] = {.lex_state = 178, .external_lex_state = 18}, - [1503] = {.lex_state = 220, .external_lex_state = 14}, - [1504] = {.lex_state = 241, .external_lex_state = 25}, - [1505] = {.lex_state = 213, .external_lex_state = 23}, - [1506] = {.lex_state = 220, .external_lex_state = 14}, - [1507] = {.lex_state = 180, .external_lex_state = 27}, - [1508] = {.lex_state = 178, .external_lex_state = 18}, - [1509] = {.lex_state = 191, .external_lex_state = 2}, - [1510] = {.lex_state = 214, .external_lex_state = 23}, - [1511] = {.lex_state = 220, .external_lex_state = 14}, - [1512] = {.lex_state = 178, .external_lex_state = 18}, - [1513] = {.lex_state = 220, .external_lex_state = 14}, - [1514] = {.lex_state = 238, .external_lex_state = 24}, - [1515] = {.lex_state = 191, .external_lex_state = 2}, - [1516] = {.lex_state = 180, .external_lex_state = 27}, - [1517] = {.lex_state = 220, .external_lex_state = 14}, - [1518] = {.lex_state = 238, .external_lex_state = 24}, - [1519] = {.lex_state = 180, .external_lex_state = 27}, - [1520] = {.lex_state = 220, .external_lex_state = 14}, - [1521] = {.lex_state = 241, .external_lex_state = 25}, - [1522] = {.lex_state = 220, .external_lex_state = 14}, - [1523] = {.lex_state = 220, .external_lex_state = 14}, - [1524] = {.lex_state = 220, .external_lex_state = 14}, - [1525] = {.lex_state = 219, .external_lex_state = 23}, - [1526] = {.lex_state = 241, .external_lex_state = 25}, - [1527] = {.lex_state = 220, .external_lex_state = 14}, - [1528] = {.lex_state = 220, .external_lex_state = 14}, - [1529] = {.lex_state = 219, .external_lex_state = 16}, - [1530] = {.lex_state = 219, .external_lex_state = 23}, - [1531] = {.lex_state = 220, .external_lex_state = 14}, - [1532] = {.lex_state = 241, .external_lex_state = 25}, - [1533] = {.lex_state = 241, .external_lex_state = 25}, - [1534] = {.lex_state = 241, .external_lex_state = 25}, - [1535] = {.lex_state = 241, .external_lex_state = 25}, - [1536] = {.lex_state = 241, .external_lex_state = 25}, - [1537] = {.lex_state = 220, .external_lex_state = 14}, - [1538] = {.lex_state = 241, .external_lex_state = 25}, - [1539] = {.lex_state = 241, .external_lex_state = 25}, - [1540] = {.lex_state = 245, .external_lex_state = 26}, - [1541] = {.lex_state = 220, .external_lex_state = 14}, - [1542] = {.lex_state = 245, .external_lex_state = 26}, - [1543] = {.lex_state = 245, .external_lex_state = 26}, - [1544] = {.lex_state = 220, .external_lex_state = 14}, - [1545] = {.lex_state = 241, .external_lex_state = 25}, - [1546] = {.lex_state = 220, .external_lex_state = 14}, - [1547] = {.lex_state = 245, .external_lex_state = 26}, - [1548] = {.lex_state = 214, .external_lex_state = 23}, - [1549] = {.lex_state = 216, .external_lex_state = 16}, - [1550] = {.lex_state = 245, .external_lex_state = 26}, - [1551] = {.lex_state = 219, .external_lex_state = 23}, - [1552] = {.lex_state = 245, .external_lex_state = 26}, - [1553] = {.lex_state = 239, .external_lex_state = 26}, - [1554] = {.lex_state = 245, .external_lex_state = 28}, - [1555] = {.lex_state = 239, .external_lex_state = 26}, - [1556] = {.lex_state = 241, .external_lex_state = 25}, - [1557] = {.lex_state = 220, .external_lex_state = 14}, - [1558] = {.lex_state = 240, .external_lex_state = 13}, - [1559] = {.lex_state = 245, .external_lex_state = 26}, - [1560] = {.lex_state = 245, .external_lex_state = 28}, - [1561] = {.lex_state = 245, .external_lex_state = 26}, - [1562] = {.lex_state = 239, .external_lex_state = 26}, - [1563] = {.lex_state = 245, .external_lex_state = 28}, - [1564] = {.lex_state = 241, .external_lex_state = 25}, - [1565] = {.lex_state = 245, .external_lex_state = 26}, - [1566] = {.lex_state = 245, .external_lex_state = 28}, - [1567] = {.lex_state = 245, .external_lex_state = 26}, - [1568] = {.lex_state = 245, .external_lex_state = 26}, - [1569] = {.lex_state = 220, .external_lex_state = 14}, - [1570] = {.lex_state = 241, .external_lex_state = 25}, - [1571] = {.lex_state = 241, .external_lex_state = 25}, - [1572] = {.lex_state = 241, .external_lex_state = 25}, - [1573] = {.lex_state = 245, .external_lex_state = 26}, - [1574] = {.lex_state = 219, .external_lex_state = 23}, - [1575] = {.lex_state = 245, .external_lex_state = 28}, - [1576] = {.lex_state = 245, .external_lex_state = 28}, - [1577] = {.lex_state = 239, .external_lex_state = 26}, - [1578] = {.lex_state = 240, .external_lex_state = 13}, - [1579] = {.lex_state = 213, .external_lex_state = 16}, - [1580] = {.lex_state = 239, .external_lex_state = 26}, - [1581] = {.lex_state = 245, .external_lex_state = 26}, - [1582] = {.lex_state = 220, .external_lex_state = 14}, - [1583] = {.lex_state = 241, .external_lex_state = 25}, - [1584] = {.lex_state = 239, .external_lex_state = 26}, - [1585] = {.lex_state = 214, .external_lex_state = 16}, - [1586] = {.lex_state = 239, .external_lex_state = 26}, - [1587] = {.lex_state = 214, .external_lex_state = 16}, - [1588] = {.lex_state = 241, .external_lex_state = 25}, - [1589] = {.lex_state = 241, .external_lex_state = 25}, - [1590] = {.lex_state = 220, .external_lex_state = 19}, - [1591] = {.lex_state = 239, .external_lex_state = 26}, - [1592] = {.lex_state = 239, .external_lex_state = 26}, - [1593] = {.lex_state = 239, .external_lex_state = 26}, - [1594] = {.lex_state = 220, .external_lex_state = 14}, - [1595] = {.lex_state = 220, .external_lex_state = 14}, - [1596] = {.lex_state = 220, .external_lex_state = 19}, - [1597] = {.lex_state = 241, .external_lex_state = 25}, - [1598] = {.lex_state = 214, .external_lex_state = 23}, - [1599] = {.lex_state = 245, .external_lex_state = 26}, - [1600] = {.lex_state = 214, .external_lex_state = 23}, - [1601] = {.lex_state = 220, .external_lex_state = 14}, - [1602] = {.lex_state = 240, .external_lex_state = 13}, - [1603] = {.lex_state = 245, .external_lex_state = 26}, - [1604] = {.lex_state = 245, .external_lex_state = 26}, - [1605] = {.lex_state = 220, .external_lex_state = 14}, - [1606] = {.lex_state = 220, .external_lex_state = 14}, - [1607] = {.lex_state = 220, .external_lex_state = 14}, - [1608] = {.lex_state = 220, .external_lex_state = 14}, - [1609] = {.lex_state = 245, .external_lex_state = 26}, - [1610] = {.lex_state = 245, .external_lex_state = 26}, - [1611] = {.lex_state = 245, .external_lex_state = 26}, - [1612] = {.lex_state = 240, .external_lex_state = 13}, - [1613] = {.lex_state = 219, .external_lex_state = 16}, - [1614] = {.lex_state = 219, .external_lex_state = 16}, - [1615] = {.lex_state = 219, .external_lex_state = 16}, - [1616] = {.lex_state = 220, .external_lex_state = 14}, - [1617] = {.lex_state = 219, .external_lex_state = 16}, - [1618] = {.lex_state = 239, .external_lex_state = 26}, - [1619] = {.lex_state = 219, .external_lex_state = 16}, - [1620] = {.lex_state = 219, .external_lex_state = 16}, - [1621] = {.lex_state = 219, .external_lex_state = 16}, - [1622] = {.lex_state = 219, .external_lex_state = 16}, - [1623] = {.lex_state = 239, .external_lex_state = 26}, - [1624] = {.lex_state = 219, .external_lex_state = 16}, - [1625] = {.lex_state = 219, .external_lex_state = 16}, - [1626] = {.lex_state = 239, .external_lex_state = 26}, - [1627] = {.lex_state = 239, .external_lex_state = 26}, - [1628] = {.lex_state = 239, .external_lex_state = 26}, - [1629] = {.lex_state = 239, .external_lex_state = 26}, - [1630] = {.lex_state = 219, .external_lex_state = 16}, - [1631] = {.lex_state = 219, .external_lex_state = 16}, - [1632] = {.lex_state = 219, .external_lex_state = 16}, - [1633] = {.lex_state = 239, .external_lex_state = 26}, - [1634] = {.lex_state = 219, .external_lex_state = 16}, - [1635] = {.lex_state = 240, .external_lex_state = 13}, - [1636] = {.lex_state = 219, .external_lex_state = 16}, - [1637] = {.lex_state = 213, .external_lex_state = 16}, - [1638] = {.lex_state = 219, .external_lex_state = 16}, - [1639] = {.lex_state = 240, .external_lex_state = 13}, - [1640] = {.lex_state = 239, .external_lex_state = 26}, - [1641] = {.lex_state = 213, .external_lex_state = 16}, - [1642] = {.lex_state = 219, .external_lex_state = 16}, - [1643] = {.lex_state = 219, .external_lex_state = 16}, - [1644] = {.lex_state = 219, .external_lex_state = 16}, - [1645] = {.lex_state = 245, .external_lex_state = 28}, - [1646] = {.lex_state = 219, .external_lex_state = 16}, - [1647] = {.lex_state = 245, .external_lex_state = 28}, - [1648] = {.lex_state = 220, .external_lex_state = 14}, - [1649] = {.lex_state = 220, .external_lex_state = 14}, - [1650] = {.lex_state = 220, .external_lex_state = 14}, - [1651] = {.lex_state = 220, .external_lex_state = 14}, - [1652] = {.lex_state = 245, .external_lex_state = 28}, - [1653] = {.lex_state = 219, .external_lex_state = 16}, - [1654] = {.lex_state = 213, .external_lex_state = 16}, - [1655] = {.lex_state = 244, .external_lex_state = 12}, - [1656] = {.lex_state = 220, .external_lex_state = 14}, - [1657] = {.lex_state = 219, .external_lex_state = 16}, - [1658] = {.lex_state = 60, .external_lex_state = 29}, - [1659] = {.lex_state = 219, .external_lex_state = 16}, - [1660] = {.lex_state = 245, .external_lex_state = 28}, - [1661] = {.lex_state = 239, .external_lex_state = 26}, - [1662] = {.lex_state = 245, .external_lex_state = 28}, - [1663] = {.lex_state = 60, .external_lex_state = 29}, - [1664] = {.lex_state = 239, .external_lex_state = 26}, - [1665] = {.lex_state = 239, .external_lex_state = 26}, - [1666] = {.lex_state = 244, .external_lex_state = 12}, - [1667] = {.lex_state = 219, .external_lex_state = 16}, - [1668] = {.lex_state = 219, .external_lex_state = 16}, - [1669] = {.lex_state = 219, .external_lex_state = 16}, - [1670] = {.lex_state = 245, .external_lex_state = 28}, - [1671] = {.lex_state = 245, .external_lex_state = 28}, - [1672] = {.lex_state = 239, .external_lex_state = 26}, - [1673] = {.lex_state = 219, .external_lex_state = 16}, - [1674] = {.lex_state = 245, .external_lex_state = 28}, - [1675] = {.lex_state = 245, .external_lex_state = 28}, - [1676] = {.lex_state = 219, .external_lex_state = 16}, - [1677] = {.lex_state = 245, .external_lex_state = 28}, - [1678] = {.lex_state = 245, .external_lex_state = 28}, - [1679] = {.lex_state = 219, .external_lex_state = 16}, - [1680] = {.lex_state = 220, .external_lex_state = 19}, - [1681] = {.lex_state = 239, .external_lex_state = 26}, - [1682] = {.lex_state = 219, .external_lex_state = 16}, - [1683] = {.lex_state = 245, .external_lex_state = 28}, - [1684] = {.lex_state = 219, .external_lex_state = 16}, - [1685] = {.lex_state = 239, .external_lex_state = 26}, - [1686] = {.lex_state = 220, .external_lex_state = 14}, - [1687] = {.lex_state = 219, .external_lex_state = 16}, - [1688] = {.lex_state = 245, .external_lex_state = 28}, - [1689] = {.lex_state = 213, .external_lex_state = 16}, - [1690] = {.lex_state = 219, .external_lex_state = 16}, - [1691] = {.lex_state = 219, .external_lex_state = 16}, - [1692] = {.lex_state = 240, .external_lex_state = 13}, - [1693] = {.lex_state = 214, .external_lex_state = 16}, - [1694] = {.lex_state = 219, .external_lex_state = 16}, - [1695] = {.lex_state = 219, .external_lex_state = 16}, - [1696] = {.lex_state = 220, .external_lex_state = 14}, - [1697] = {.lex_state = 219, .external_lex_state = 16}, - [1698] = {.lex_state = 242, .external_lex_state = 15}, - [1699] = {.lex_state = 244, .external_lex_state = 12}, - [1700] = {.lex_state = 219, .external_lex_state = 16}, - [1701] = {.lex_state = 219, .external_lex_state = 16}, - [1702] = {.lex_state = 219, .external_lex_state = 16}, - [1703] = {.lex_state = 245, .external_lex_state = 28}, - [1704] = {.lex_state = 219, .external_lex_state = 16}, - [1705] = {.lex_state = 219, .external_lex_state = 16}, - [1706] = {.lex_state = 220, .external_lex_state = 14}, - [1707] = {.lex_state = 219, .external_lex_state = 16}, - [1708] = {.lex_state = 219, .external_lex_state = 16}, - [1709] = {.lex_state = 219, .external_lex_state = 16}, - [1710] = {.lex_state = 239, .external_lex_state = 26}, - [1711] = {.lex_state = 219, .external_lex_state = 16}, - [1712] = {.lex_state = 219, .external_lex_state = 16}, - [1713] = {.lex_state = 239, .external_lex_state = 26}, - [1714] = {.lex_state = 242, .external_lex_state = 15}, - [1715] = {.lex_state = 220, .external_lex_state = 14}, - [1716] = {.lex_state = 245, .external_lex_state = 28}, - [1717] = {.lex_state = 239, .external_lex_state = 26}, - [1718] = {.lex_state = 239, .external_lex_state = 26}, - [1719] = {.lex_state = 219, .external_lex_state = 16}, - [1720] = {.lex_state = 219, .external_lex_state = 16}, - [1721] = {.lex_state = 245, .external_lex_state = 28}, - [1722] = {.lex_state = 245, .external_lex_state = 28}, - [1723] = {.lex_state = 219, .external_lex_state = 16}, - [1724] = {.lex_state = 240, .external_lex_state = 13}, - [1725] = {.lex_state = 219, .external_lex_state = 16}, - [1726] = {.lex_state = 219, .external_lex_state = 16}, - [1727] = {.lex_state = 219, .external_lex_state = 16}, - [1728] = {.lex_state = 219, .external_lex_state = 16}, - [1729] = {.lex_state = 239, .external_lex_state = 26}, - [1730] = {.lex_state = 220, .external_lex_state = 14}, - [1731] = {.lex_state = 219, .external_lex_state = 16}, - [1732] = {.lex_state = 219, .external_lex_state = 16}, - [1733] = {.lex_state = 242, .external_lex_state = 15}, - [1734] = {.lex_state = 219, .external_lex_state = 16}, - [1735] = {.lex_state = 219, .external_lex_state = 16}, - [1736] = {.lex_state = 219, .external_lex_state = 16}, - [1737] = {.lex_state = 219, .external_lex_state = 16}, - [1738] = {.lex_state = 213, .external_lex_state = 16}, - [1739] = {.lex_state = 219, .external_lex_state = 16}, - [1740] = {.lex_state = 219, .external_lex_state = 16}, - [1741] = {.lex_state = 220, .external_lex_state = 14}, - [1742] = {.lex_state = 245, .external_lex_state = 28}, - [1743] = {.lex_state = 245, .external_lex_state = 28}, - [1744] = {.lex_state = 219, .external_lex_state = 16}, - [1745] = {.lex_state = 213, .external_lex_state = 16}, - [1746] = {.lex_state = 214, .external_lex_state = 16}, - [1747] = {.lex_state = 217, .external_lex_state = 16}, - [1748] = {.lex_state = 217, .external_lex_state = 23}, - [1749] = {.lex_state = 214, .external_lex_state = 16}, - [1750] = {.lex_state = 244, .external_lex_state = 17}, - [1751] = {.lex_state = 244, .external_lex_state = 12}, - [1752] = {.lex_state = 220, .external_lex_state = 19}, - [1753] = {.lex_state = 214, .external_lex_state = 16}, - [1754] = {.lex_state = 242, .external_lex_state = 15}, - [1755] = {.lex_state = 220, .external_lex_state = 19}, - [1756] = {.lex_state = 214, .external_lex_state = 16}, - [1757] = {.lex_state = 214, .external_lex_state = 16}, - [1758] = {.lex_state = 244, .external_lex_state = 12}, - [1759] = {.lex_state = 214, .external_lex_state = 16}, - [1760] = {.lex_state = 213, .external_lex_state = 16}, - [1761] = {.lex_state = 214, .external_lex_state = 16}, - [1762] = {.lex_state = 213, .external_lex_state = 16}, - [1763] = {.lex_state = 242, .external_lex_state = 15}, - [1764] = {.lex_state = 214, .external_lex_state = 16}, - [1765] = {.lex_state = 214, .external_lex_state = 16}, - [1766] = {.lex_state = 213, .external_lex_state = 16}, - [1767] = {.lex_state = 214, .external_lex_state = 16}, - [1768] = {.lex_state = 213, .external_lex_state = 16}, - [1769] = {.lex_state = 214, .external_lex_state = 16}, - [1770] = {.lex_state = 213, .external_lex_state = 16}, - [1771] = {.lex_state = 214, .external_lex_state = 16}, - [1772] = {.lex_state = 214, .external_lex_state = 16}, - [1773] = {.lex_state = 220, .external_lex_state = 19}, - [1774] = {.lex_state = 243, .external_lex_state = 12}, - [1775] = {.lex_state = 220, .external_lex_state = 19}, - [1776] = {.lex_state = 214, .external_lex_state = 16}, - [1777] = {.lex_state = 214, .external_lex_state = 16}, - [1778] = {.lex_state = 213, .external_lex_state = 16}, - [1779] = {.lex_state = 242, .external_lex_state = 15}, - [1780] = {.lex_state = 220, .external_lex_state = 19}, - [1781] = {.lex_state = 220, .external_lex_state = 19}, - [1782] = {.lex_state = 214, .external_lex_state = 16}, - [1783] = {.lex_state = 220, .external_lex_state = 19}, - [1784] = {.lex_state = 244, .external_lex_state = 17}, - [1785] = {.lex_state = 217, .external_lex_state = 23}, - [1786] = {.lex_state = 217, .external_lex_state = 23}, - [1787] = {.lex_state = 220, .external_lex_state = 19}, - [1788] = {.lex_state = 214, .external_lex_state = 16}, - [1789] = {.lex_state = 243, .external_lex_state = 12}, - [1790] = {.lex_state = 220, .external_lex_state = 19}, - [1791] = {.lex_state = 214, .external_lex_state = 16}, - [1792] = {.lex_state = 143, .external_lex_state = 29}, - [1793] = {.lex_state = 143, .external_lex_state = 29}, - [1794] = {.lex_state = 220, .external_lex_state = 19}, - [1795] = {.lex_state = 214, .external_lex_state = 16}, - [1796] = {.lex_state = 214, .external_lex_state = 16}, - [1797] = {.lex_state = 220, .external_lex_state = 19}, - [1798] = {.lex_state = 214, .external_lex_state = 16}, - [1799] = {.lex_state = 243, .external_lex_state = 12}, - [1800] = {.lex_state = 244, .external_lex_state = 12}, - [1801] = {.lex_state = 214, .external_lex_state = 16}, - [1802] = {.lex_state = 214, .external_lex_state = 16}, - [1803] = {.lex_state = 244, .external_lex_state = 12}, - [1804] = {.lex_state = 60, .external_lex_state = 30}, - [1805] = {.lex_state = 60, .external_lex_state = 30}, - [1806] = {.lex_state = 214, .external_lex_state = 16}, - [1807] = {.lex_state = 214, .external_lex_state = 16}, - [1808] = {.lex_state = 243, .external_lex_state = 12}, - [1809] = {.lex_state = 217, .external_lex_state = 23}, - [1810] = {.lex_state = 214, .external_lex_state = 16}, - [1811] = {.lex_state = 214, .external_lex_state = 16}, - [1812] = {.lex_state = 214, .external_lex_state = 16}, - [1813] = {.lex_state = 214, .external_lex_state = 16}, - [1814] = {.lex_state = 214, .external_lex_state = 16}, - [1815] = {.lex_state = 219, .external_lex_state = 16}, - [1816] = {.lex_state = 242, .external_lex_state = 15}, - [1817] = {.lex_state = 217, .external_lex_state = 16}, - [1818] = {.lex_state = 147, .external_lex_state = 29}, - [1819] = {.lex_state = 217, .external_lex_state = 16}, - [1820] = {.lex_state = 217, .external_lex_state = 16}, - [1821] = {.lex_state = 425, .external_lex_state = 29}, - [1822] = {.lex_state = 217, .external_lex_state = 16}, - [1823] = {.lex_state = 217, .external_lex_state = 16}, - [1824] = {.lex_state = 219, .external_lex_state = 16}, - [1825] = {.lex_state = 217, .external_lex_state = 16}, - [1826] = {.lex_state = 217, .external_lex_state = 16}, - [1827] = {.lex_state = 243, .external_lex_state = 12}, - [1828] = {.lex_state = 147, .external_lex_state = 29}, - [1829] = {.lex_state = 246, .external_lex_state = 31}, - [1830] = {.lex_state = 246, .external_lex_state = 31}, - [1831] = {.lex_state = 425, .external_lex_state = 29}, - [1832] = {.lex_state = 246, .external_lex_state = 31}, - [1833] = {.lex_state = 246, .external_lex_state = 31}, - [1834] = {.lex_state = 246, .external_lex_state = 31}, - [1835] = {.lex_state = 246, .external_lex_state = 31}, - [1836] = {.lex_state = 217, .external_lex_state = 16}, - [1837] = {.lex_state = 217, .external_lex_state = 16}, - [1838] = {.lex_state = 246, .external_lex_state = 31}, - [1839] = {.lex_state = 217, .external_lex_state = 16}, - [1840] = {.lex_state = 246, .external_lex_state = 31}, - [1841] = {.lex_state = 246, .external_lex_state = 31}, - [1842] = {.lex_state = 246, .external_lex_state = 31}, - [1843] = {.lex_state = 244, .external_lex_state = 17}, - [1844] = {.lex_state = 214, .external_lex_state = 16}, - [1845] = {.lex_state = 246, .external_lex_state = 31}, - [1846] = {.lex_state = 217, .external_lex_state = 16}, - [1847] = {.lex_state = 217, .external_lex_state = 16}, - [1848] = {.lex_state = 219, .external_lex_state = 16}, - [1849] = {.lex_state = 246, .external_lex_state = 31}, - [1850] = {.lex_state = 217, .external_lex_state = 16}, - [1851] = {.lex_state = 155, .external_lex_state = 29}, - [1852] = {.lex_state = 243, .external_lex_state = 12}, - [1853] = {.lex_state = 143, .external_lex_state = 30}, - [1854] = {.lex_state = 143, .external_lex_state = 30}, - [1855] = {.lex_state = 214, .external_lex_state = 16}, - [1856] = {.lex_state = 217, .external_lex_state = 16}, - [1857] = {.lex_state = 217, .external_lex_state = 16}, - [1858] = {.lex_state = 217, .external_lex_state = 16}, - [1859] = {.lex_state = 243, .external_lex_state = 12}, - [1860] = {.lex_state = 243, .external_lex_state = 12}, - [1861] = {.lex_state = 243, .external_lex_state = 12}, - [1862] = {.lex_state = 217, .external_lex_state = 16}, - [1863] = {.lex_state = 214, .external_lex_state = 16}, - [1864] = {.lex_state = 243, .external_lex_state = 12}, - [1865] = {.lex_state = 217, .external_lex_state = 16}, - [1866] = {.lex_state = 214, .external_lex_state = 16}, - [1867] = {.lex_state = 243, .external_lex_state = 12}, - [1868] = {.lex_state = 217, .external_lex_state = 16}, - [1869] = {.lex_state = 155, .external_lex_state = 29}, - [1870] = {.lex_state = 217, .external_lex_state = 16}, - [1871] = {.lex_state = 217, .external_lex_state = 16}, - [1872] = {.lex_state = 217, .external_lex_state = 16}, - [1873] = {.lex_state = 243, .external_lex_state = 12}, - [1874] = {.lex_state = 235, .external_lex_state = 31}, - [1875] = {.lex_state = 235, .external_lex_state = 31}, - [1876] = {.lex_state = 235, .external_lex_state = 31}, - [1877] = {.lex_state = 181, .external_lex_state = 32}, - [1878] = {.lex_state = 235, .external_lex_state = 31}, - [1879] = {.lex_state = 181, .external_lex_state = 32}, - [1880] = {.lex_state = 181, .external_lex_state = 32}, - [1881] = {.lex_state = 181, .external_lex_state = 32}, - [1882] = {.lex_state = 235, .external_lex_state = 31}, - [1883] = {.lex_state = 235, .external_lex_state = 31}, - [1884] = {.lex_state = 255, .external_lex_state = 33}, - [1885] = {.lex_state = 425, .external_lex_state = 30}, - [1886] = {.lex_state = 147, .external_lex_state = 30}, - [1887] = {.lex_state = 425, .external_lex_state = 30}, - [1888] = {.lex_state = 425, .external_lex_state = 29}, - [1889] = {.lex_state = 155, .external_lex_state = 30}, - [1890] = {.lex_state = 235, .external_lex_state = 31}, - [1891] = {.lex_state = 155, .external_lex_state = 30}, - [1892] = {.lex_state = 235, .external_lex_state = 31}, - [1893] = {.lex_state = 235, .external_lex_state = 31}, - [1894] = {.lex_state = 425, .external_lex_state = 29}, - [1895] = {.lex_state = 147, .external_lex_state = 30}, - [1896] = {.lex_state = 235, .external_lex_state = 31}, - [1897] = {.lex_state = 235, .external_lex_state = 31}, - [1898] = {.lex_state = 235, .external_lex_state = 31}, - [1899] = {.lex_state = 235, .external_lex_state = 31}, - [1900] = {.lex_state = 235, .external_lex_state = 31}, - [1901] = {.lex_state = 235, .external_lex_state = 31}, - [1902] = {.lex_state = 70, .external_lex_state = 34}, - [1903] = {.lex_state = 235, .external_lex_state = 31}, - [1904] = {.lex_state = 235, .external_lex_state = 31}, - [1905] = {.lex_state = 235, .external_lex_state = 31}, - [1906] = {.lex_state = 70, .external_lex_state = 34}, - [1907] = {.lex_state = 70, .external_lex_state = 34}, - [1908] = {.lex_state = 70, .external_lex_state = 34}, - [1909] = {.lex_state = 251, .external_lex_state = 35}, - [1910] = {.lex_state = 255, .external_lex_state = 33}, - [1911] = {.lex_state = 70, .external_lex_state = 34}, - [1912] = {.lex_state = 251, .external_lex_state = 35}, - [1913] = {.lex_state = 251, .external_lex_state = 35}, - [1914] = {.lex_state = 255, .external_lex_state = 33}, - [1915] = {.lex_state = 70, .external_lex_state = 34}, - [1916] = {.lex_state = 251, .external_lex_state = 35}, - [1917] = {.lex_state = 70, .external_lex_state = 34}, - [1918] = {.lex_state = 70, .external_lex_state = 34}, - [1919] = {.lex_state = 251, .external_lex_state = 35}, - [1920] = {.lex_state = 70, .external_lex_state = 34}, - [1921] = {.lex_state = 251, .external_lex_state = 35}, - [1922] = {.lex_state = 235, .external_lex_state = 31}, - [1923] = {.lex_state = 70, .external_lex_state = 34}, - [1924] = {.lex_state = 70, .external_lex_state = 34}, - [1925] = {.lex_state = 251, .external_lex_state = 35}, - [1926] = {.lex_state = 425, .external_lex_state = 30}, - [1927] = {.lex_state = 251, .external_lex_state = 35}, - [1928] = {.lex_state = 425, .external_lex_state = 30}, - [1929] = {.lex_state = 70, .external_lex_state = 34}, - [1930] = {.lex_state = 172, .external_lex_state = 32}, - [1931] = {.lex_state = 255, .external_lex_state = 33}, - [1932] = {.lex_state = 70, .external_lex_state = 34}, - [1933] = {.lex_state = 251, .external_lex_state = 35}, - [1934] = {.lex_state = 172, .external_lex_state = 32}, - [1935] = {.lex_state = 70, .external_lex_state = 34}, - [1936] = {.lex_state = 251, .external_lex_state = 35}, - [1937] = {.lex_state = 70, .external_lex_state = 34}, - [1938] = {.lex_state = 251, .external_lex_state = 35}, - [1939] = {.lex_state = 251, .external_lex_state = 35}, - [1940] = {.lex_state = 251, .external_lex_state = 35}, - [1941] = {.lex_state = 70, .external_lex_state = 34}, - [1942] = {.lex_state = 70, .external_lex_state = 34}, - [1943] = {.lex_state = 251, .external_lex_state = 35}, - [1944] = {.lex_state = 251, .external_lex_state = 35}, - [1945] = {.lex_state = 251, .external_lex_state = 35}, - [1946] = {.lex_state = 251, .external_lex_state = 35}, - [1947] = {.lex_state = 70, .external_lex_state = 34}, - [1948] = {.lex_state = 70, .external_lex_state = 34}, - [1949] = {.lex_state = 255, .external_lex_state = 33}, - [1950] = {.lex_state = 251, .external_lex_state = 35}, - [1951] = {.lex_state = 251, .external_lex_state = 35}, - [1952] = {.lex_state = 251, .external_lex_state = 35}, - [1953] = {.lex_state = 251, .external_lex_state = 35}, - [1954] = {.lex_state = 251, .external_lex_state = 35}, - [1955] = {.lex_state = 70, .external_lex_state = 34}, - [1956] = {.lex_state = 70, .external_lex_state = 34}, - [1957] = {.lex_state = 251, .external_lex_state = 35}, - [1958] = {.lex_state = 70, .external_lex_state = 34}, - [1959] = {.lex_state = 235, .external_lex_state = 2}, - [1960] = {.lex_state = 221, .external_lex_state = 16}, - [1961] = {.lex_state = 222, .external_lex_state = 16}, - [1962] = {.lex_state = 221, .external_lex_state = 16}, - [1963] = {.lex_state = 235, .external_lex_state = 22}, - [1964] = {.lex_state = 237, .external_lex_state = 36}, - [1965] = {.lex_state = 222, .external_lex_state = 16}, - [1966] = {.lex_state = 235, .external_lex_state = 22}, - [1967] = {.lex_state = 235, .external_lex_state = 22}, - [1968] = {.lex_state = 221, .external_lex_state = 16}, - [1969] = {.lex_state = 235, .external_lex_state = 22}, - [1970] = {.lex_state = 222, .external_lex_state = 16}, - [1971] = {.lex_state = 235, .external_lex_state = 22}, - [1972] = {.lex_state = 235, .external_lex_state = 22}, - [1973] = {.lex_state = 221, .external_lex_state = 16}, - [1974] = {.lex_state = 235, .external_lex_state = 22}, - [1975] = {.lex_state = 222, .external_lex_state = 16}, - [1976] = {.lex_state = 222, .external_lex_state = 16}, - [1977] = {.lex_state = 222, .external_lex_state = 16}, - [1978] = {.lex_state = 222, .external_lex_state = 16}, - [1979] = {.lex_state = 235, .external_lex_state = 22}, - [1980] = {.lex_state = 235, .external_lex_state = 22}, - [1981] = {.lex_state = 222, .external_lex_state = 16}, - [1982] = {.lex_state = 222, .external_lex_state = 16}, - [1983] = {.lex_state = 235, .external_lex_state = 22}, - [1984] = {.lex_state = 221, .external_lex_state = 16}, - [1985] = {.lex_state = 222, .external_lex_state = 16}, - [1986] = {.lex_state = 222, .external_lex_state = 16}, - [1987] = {.lex_state = 158, .external_lex_state = 29}, - [1988] = {.lex_state = 158, .external_lex_state = 29}, - [1989] = {.lex_state = 221, .external_lex_state = 16}, - [1990] = {.lex_state = 221, .external_lex_state = 16}, - [1991] = {.lex_state = 235, .external_lex_state = 22}, - [1992] = {.lex_state = 235, .external_lex_state = 22}, - [1993] = {.lex_state = 235, .external_lex_state = 22}, - [1994] = {.lex_state = 235, .external_lex_state = 22}, - [1995] = {.lex_state = 221, .external_lex_state = 16}, - [1996] = {.lex_state = 235, .external_lex_state = 22}, - [1997] = {.lex_state = 235, .external_lex_state = 22}, - [1998] = {.lex_state = 221, .external_lex_state = 16}, - [1999] = {.lex_state = 222, .external_lex_state = 16}, - [2000] = {.lex_state = 222, .external_lex_state = 16}, - [2001] = {.lex_state = 235, .external_lex_state = 22}, - [2002] = {.lex_state = 222, .external_lex_state = 16}, - [2003] = {.lex_state = 235, .external_lex_state = 22}, - [2004] = {.lex_state = 221, .external_lex_state = 16}, - [2005] = {.lex_state = 221, .external_lex_state = 16}, - [2006] = {.lex_state = 222, .external_lex_state = 16}, - [2007] = {.lex_state = 221, .external_lex_state = 16}, - [2008] = {.lex_state = 235, .external_lex_state = 22}, - [2009] = {.lex_state = 221, .external_lex_state = 16}, - [2010] = {.lex_state = 222, .external_lex_state = 16}, - [2011] = {.lex_state = 235, .external_lex_state = 22}, - [2012] = {.lex_state = 237, .external_lex_state = 36}, - [2013] = {.lex_state = 235, .external_lex_state = 22}, - [2014] = {.lex_state = 222, .external_lex_state = 16}, - [2015] = {.lex_state = 221, .external_lex_state = 16}, - [2016] = {.lex_state = 222, .external_lex_state = 16}, - [2017] = {.lex_state = 222, .external_lex_state = 16}, - [2018] = {.lex_state = 237, .external_lex_state = 36}, - [2019] = {.lex_state = 221, .external_lex_state = 16}, - [2020] = {.lex_state = 221, .external_lex_state = 16}, - [2021] = {.lex_state = 237, .external_lex_state = 36}, - [2022] = {.lex_state = 237, .external_lex_state = 36}, - [2023] = {.lex_state = 237, .external_lex_state = 36}, - [2024] = {.lex_state = 237, .external_lex_state = 36}, - [2025] = {.lex_state = 221, .external_lex_state = 16}, - [2026] = {.lex_state = 222, .external_lex_state = 16}, - [2027] = {.lex_state = 222, .external_lex_state = 16}, - [2028] = {.lex_state = 235, .external_lex_state = 22}, - [2029] = {.lex_state = 237, .external_lex_state = 36}, - [2030] = {.lex_state = 237, .external_lex_state = 36}, - [2031] = {.lex_state = 221, .external_lex_state = 16}, - [2032] = {.lex_state = 221, .external_lex_state = 16}, - [2033] = {.lex_state = 221, .external_lex_state = 16}, - [2034] = {.lex_state = 235, .external_lex_state = 22}, - [2035] = {.lex_state = 235, .external_lex_state = 22}, - [2036] = {.lex_state = 235, .external_lex_state = 22}, - [2037] = {.lex_state = 221, .external_lex_state = 16}, - [2038] = {.lex_state = 235, .external_lex_state = 22}, - [2039] = {.lex_state = 237, .external_lex_state = 36}, - [2040] = {.lex_state = 235, .external_lex_state = 22}, - [2041] = {.lex_state = 235, .external_lex_state = 22}, - [2042] = {.lex_state = 221, .external_lex_state = 16}, - [2043] = {.lex_state = 235, .external_lex_state = 22}, - [2044] = {.lex_state = 235, .external_lex_state = 22}, - [2045] = {.lex_state = 222, .external_lex_state = 16}, - [2046] = {.lex_state = 255, .external_lex_state = 37}, - [2047] = {.lex_state = 235, .external_lex_state = 22}, - [2048] = {.lex_state = 235, .external_lex_state = 38}, - [2049] = {.lex_state = 237, .external_lex_state = 36}, - [2050] = {.lex_state = 237, .external_lex_state = 36}, - [2051] = {.lex_state = 247, .external_lex_state = 39}, - [2052] = {.lex_state = 235, .external_lex_state = 38}, - [2053] = {.lex_state = 235, .external_lex_state = 31}, - [2054] = {.lex_state = 237, .external_lex_state = 36}, - [2055] = {.lex_state = 237, .external_lex_state = 36}, - [2056] = {.lex_state = 195, .external_lex_state = 22}, - [2057] = {.lex_state = 237, .external_lex_state = 36}, - [2058] = {.lex_state = 195, .external_lex_state = 22}, - [2059] = {.lex_state = 237, .external_lex_state = 36}, - [2060] = {.lex_state = 237, .external_lex_state = 36}, - [2061] = {.lex_state = 237, .external_lex_state = 36}, - [2062] = {.lex_state = 235, .external_lex_state = 31}, - [2063] = {.lex_state = 223, .external_lex_state = 40}, - [2064] = {.lex_state = 223, .external_lex_state = 40}, - [2065] = {.lex_state = 237, .external_lex_state = 36}, - [2066] = {.lex_state = 235, .external_lex_state = 22}, - [2067] = {.lex_state = 237, .external_lex_state = 36}, - [2068] = {.lex_state = 237, .external_lex_state = 36}, - [2069] = {.lex_state = 235, .external_lex_state = 38}, - [2070] = {.lex_state = 235, .external_lex_state = 38}, - [2071] = {.lex_state = 224, .external_lex_state = 41}, - [2072] = {.lex_state = 224, .external_lex_state = 41}, - [2073] = {.lex_state = 235, .external_lex_state = 38}, - [2074] = {.lex_state = 237, .external_lex_state = 36}, - [2075] = {.lex_state = 235, .external_lex_state = 22}, - [2076] = {.lex_state = 237, .external_lex_state = 36}, - [2077] = {.lex_state = 235, .external_lex_state = 38}, - [2078] = {.lex_state = 235, .external_lex_state = 31}, - [2079] = {.lex_state = 237, .external_lex_state = 36}, - [2080] = {.lex_state = 158, .external_lex_state = 30}, - [2081] = {.lex_state = 235, .external_lex_state = 22}, - [2082] = {.lex_state = 237, .external_lex_state = 36}, - [2083] = {.lex_state = 237, .external_lex_state = 36}, - [2084] = {.lex_state = 237, .external_lex_state = 36}, - [2085] = {.lex_state = 237, .external_lex_state = 36}, - [2086] = {.lex_state = 158, .external_lex_state = 30}, - [2087] = {.lex_state = 235, .external_lex_state = 38}, - [2088] = {.lex_state = 237, .external_lex_state = 36}, - [2089] = {.lex_state = 235, .external_lex_state = 22}, - [2090] = {.lex_state = 235, .external_lex_state = 22}, - [2091] = {.lex_state = 235, .external_lex_state = 22}, - [2092] = {.lex_state = 235, .external_lex_state = 22}, - [2093] = {.lex_state = 235, .external_lex_state = 22}, - [2094] = {.lex_state = 235, .external_lex_state = 22}, - [2095] = {.lex_state = 235, .external_lex_state = 22}, - [2096] = {.lex_state = 252, .external_lex_state = 42}, - [2097] = {.lex_state = 252, .external_lex_state = 42}, - [2098] = {.lex_state = 235, .external_lex_state = 22}, - [2099] = {.lex_state = 235, .external_lex_state = 22}, - [2100] = {.lex_state = 235, .external_lex_state = 22}, - [2101] = {.lex_state = 235, .external_lex_state = 22}, - [2102] = {.lex_state = 235, .external_lex_state = 22}, - [2103] = {.lex_state = 235, .external_lex_state = 22}, - [2104] = {.lex_state = 235, .external_lex_state = 22}, - [2105] = {.lex_state = 235, .external_lex_state = 22}, - [2106] = {.lex_state = 235, .external_lex_state = 22}, - [2107] = {.lex_state = 252, .external_lex_state = 42}, - [2108] = {.lex_state = 224, .external_lex_state = 43}, - [2109] = {.lex_state = 235, .external_lex_state = 22}, - [2110] = {.lex_state = 235, .external_lex_state = 22}, - [2111] = {.lex_state = 235, .external_lex_state = 22}, - [2112] = {.lex_state = 235, .external_lex_state = 22}, - [2113] = {.lex_state = 235, .external_lex_state = 22}, - [2114] = {.lex_state = 71, .external_lex_state = 44}, - [2115] = {.lex_state = 235, .external_lex_state = 22}, - [2116] = {.lex_state = 235, .external_lex_state = 22}, - [2117] = {.lex_state = 224, .external_lex_state = 43}, - [2118] = {.lex_state = 235, .external_lex_state = 22}, - [2119] = {.lex_state = 235, .external_lex_state = 22}, - [2120] = {.lex_state = 252, .external_lex_state = 42}, - [2121] = {.lex_state = 252, .external_lex_state = 42}, - [2122] = {.lex_state = 71, .external_lex_state = 44}, - [2123] = {.lex_state = 235, .external_lex_state = 22}, - [2124] = {.lex_state = 235, .external_lex_state = 22}, - [2125] = {.lex_state = 235, .external_lex_state = 22}, - [2126] = {.lex_state = 252, .external_lex_state = 42}, - [2127] = {.lex_state = 235, .external_lex_state = 22}, - [2128] = {.lex_state = 235, .external_lex_state = 22}, - [2129] = {.lex_state = 235, .external_lex_state = 22}, - [2130] = {.lex_state = 235, .external_lex_state = 2}, - [2131] = {.lex_state = 235, .external_lex_state = 22}, - [2132] = {.lex_state = 235, .external_lex_state = 22}, - [2133] = {.lex_state = 235, .external_lex_state = 22}, - [2134] = {.lex_state = 235, .external_lex_state = 2}, - [2135] = {.lex_state = 235, .external_lex_state = 22}, - [2136] = {.lex_state = 235, .external_lex_state = 22}, - [2137] = {.lex_state = 235, .external_lex_state = 22}, - [2138] = {.lex_state = 235, .external_lex_state = 22}, - [2139] = {.lex_state = 71, .external_lex_state = 44}, - [2140] = {.lex_state = 235, .external_lex_state = 2}, - [2141] = {.lex_state = 235, .external_lex_state = 22}, - [2142] = {.lex_state = 235, .external_lex_state = 22}, - [2143] = {.lex_state = 235, .external_lex_state = 2}, - [2144] = {.lex_state = 252, .external_lex_state = 42}, - [2145] = {.lex_state = 235, .external_lex_state = 22}, - [2146] = {.lex_state = 235, .external_lex_state = 22}, - [2147] = {.lex_state = 252, .external_lex_state = 42}, - [2148] = {.lex_state = 235, .external_lex_state = 22}, - [2149] = {.lex_state = 235, .external_lex_state = 22}, - [2150] = {.lex_state = 252, .external_lex_state = 42}, - [2151] = {.lex_state = 235, .external_lex_state = 22}, - [2152] = {.lex_state = 255, .external_lex_state = 45}, - [2153] = {.lex_state = 235, .external_lex_state = 22}, - [2154] = {.lex_state = 235, .external_lex_state = 22}, - [2155] = {.lex_state = 235, .external_lex_state = 22}, - [2156] = {.lex_state = 235, .external_lex_state = 22}, - [2157] = {.lex_state = 235, .external_lex_state = 22}, - [2158] = {.lex_state = 235, .external_lex_state = 22}, - [2159] = {.lex_state = 235, .external_lex_state = 22}, - [2160] = {.lex_state = 235, .external_lex_state = 22}, - [2161] = {.lex_state = 235, .external_lex_state = 22}, - [2162] = {.lex_state = 235, .external_lex_state = 22}, - [2163] = {.lex_state = 235, .external_lex_state = 22}, - [2164] = {.lex_state = 235, .external_lex_state = 22}, - [2165] = {.lex_state = 235, .external_lex_state = 22}, - [2166] = {.lex_state = 235, .external_lex_state = 22}, - [2167] = {.lex_state = 252, .external_lex_state = 42}, - [2168] = {.lex_state = 251, .external_lex_state = 22}, - [2169] = {.lex_state = 251, .external_lex_state = 22}, - [2170] = {.lex_state = 251, .external_lex_state = 22}, - [2171] = {.lex_state = 251, .external_lex_state = 22}, - [2172] = {.lex_state = 251, .external_lex_state = 22}, - [2173] = {.lex_state = 251, .external_lex_state = 22}, - [2174] = {.lex_state = 251, .external_lex_state = 22}, - [2175] = {.lex_state = 251, .external_lex_state = 22}, - [2176] = {.lex_state = 251, .external_lex_state = 22}, - [2177] = {.lex_state = 251, .external_lex_state = 22}, - [2178] = {.lex_state = 251, .external_lex_state = 22}, - [2179] = {.lex_state = 251, .external_lex_state = 22}, - [2180] = {.lex_state = 251, .external_lex_state = 22}, - [2181] = {.lex_state = 74, .external_lex_state = 46}, - [2182] = {.lex_state = 251, .external_lex_state = 22}, - [2183] = {.lex_state = 251, .external_lex_state = 22}, - [2184] = {.lex_state = 251, .external_lex_state = 22}, - [2185] = {.lex_state = 251, .external_lex_state = 22}, - [2186] = {.lex_state = 251, .external_lex_state = 22}, - [2187] = {.lex_state = 251, .external_lex_state = 22}, - [2188] = {.lex_state = 251, .external_lex_state = 22}, - [2189] = {.lex_state = 251, .external_lex_state = 22}, - [2190] = {.lex_state = 251, .external_lex_state = 22}, - [2191] = {.lex_state = 251, .external_lex_state = 22}, - [2192] = {.lex_state = 251, .external_lex_state = 22}, - [2193] = {.lex_state = 251, .external_lex_state = 22}, - [2194] = {.lex_state = 251, .external_lex_state = 22}, - [2195] = {.lex_state = 251, .external_lex_state = 22}, - [2196] = {.lex_state = 251, .external_lex_state = 22}, - [2197] = {.lex_state = 251, .external_lex_state = 22}, - [2198] = {.lex_state = 251, .external_lex_state = 22}, - [2199] = {.lex_state = 251, .external_lex_state = 22}, - [2200] = {.lex_state = 251, .external_lex_state = 22}, - [2201] = {.lex_state = 251, .external_lex_state = 22}, - [2202] = {.lex_state = 251, .external_lex_state = 22}, - [2203] = {.lex_state = 251, .external_lex_state = 22}, - [2204] = {.lex_state = 71, .external_lex_state = 44}, - [2205] = {.lex_state = 251, .external_lex_state = 22}, - [2206] = {.lex_state = 251, .external_lex_state = 22}, - [2207] = {.lex_state = 251, .external_lex_state = 22}, - [2208] = {.lex_state = 251, .external_lex_state = 22}, - [2209] = {.lex_state = 251, .external_lex_state = 22}, - [2210] = {.lex_state = 251, .external_lex_state = 22}, - [2211] = {.lex_state = 251, .external_lex_state = 22}, - [2212] = {.lex_state = 251, .external_lex_state = 22}, - [2213] = {.lex_state = 251, .external_lex_state = 22}, - [2214] = {.lex_state = 251, .external_lex_state = 22}, - [2215] = {.lex_state = 251, .external_lex_state = 22}, - [2216] = {.lex_state = 251, .external_lex_state = 22}, - [2217] = {.lex_state = 251, .external_lex_state = 22}, - [2218] = {.lex_state = 251, .external_lex_state = 22}, - [2219] = {.lex_state = 251, .external_lex_state = 22}, - [2220] = {.lex_state = 251, .external_lex_state = 22}, - [2221] = {.lex_state = 251, .external_lex_state = 22}, - [2222] = {.lex_state = 251, .external_lex_state = 22}, - [2223] = {.lex_state = 251, .external_lex_state = 22}, - [2224] = {.lex_state = 251, .external_lex_state = 22}, - [2225] = {.lex_state = 251, .external_lex_state = 22}, - [2226] = {.lex_state = 251, .external_lex_state = 22}, - [2227] = {.lex_state = 251, .external_lex_state = 22}, - [2228] = {.lex_state = 251, .external_lex_state = 22}, - [2229] = {.lex_state = 251, .external_lex_state = 22}, - [2230] = {.lex_state = 251, .external_lex_state = 22}, - [2231] = {.lex_state = 251, .external_lex_state = 22}, - [2232] = {.lex_state = 251, .external_lex_state = 22}, - [2233] = {.lex_state = 251, .external_lex_state = 22}, - [2234] = {.lex_state = 251, .external_lex_state = 22}, - [2235] = {.lex_state = 251, .external_lex_state = 22}, - [2236] = {.lex_state = 251, .external_lex_state = 22}, - [2237] = {.lex_state = 251, .external_lex_state = 22}, - [2238] = {.lex_state = 251, .external_lex_state = 22}, - [2239] = {.lex_state = 251, .external_lex_state = 22}, - [2240] = {.lex_state = 251, .external_lex_state = 22}, - [2241] = {.lex_state = 251, .external_lex_state = 22}, - [2242] = {.lex_state = 251, .external_lex_state = 22}, - [2243] = {.lex_state = 251, .external_lex_state = 22}, - [2244] = {.lex_state = 251, .external_lex_state = 22}, - [2245] = {.lex_state = 251, .external_lex_state = 22}, - [2246] = {.lex_state = 251, .external_lex_state = 22}, - [2247] = {.lex_state = 251, .external_lex_state = 22}, - [2248] = {.lex_state = 251, .external_lex_state = 22}, - [2249] = {.lex_state = 251, .external_lex_state = 22}, - [2250] = {.lex_state = 251, .external_lex_state = 22}, - [2251] = {.lex_state = 251, .external_lex_state = 22}, - [2252] = {.lex_state = 251, .external_lex_state = 22}, - [2253] = {.lex_state = 251, .external_lex_state = 22}, - [2254] = {.lex_state = 251, .external_lex_state = 22}, - [2255] = {.lex_state = 251, .external_lex_state = 22}, - [2256] = {.lex_state = 235, .external_lex_state = 2}, - [2257] = {.lex_state = 251, .external_lex_state = 22}, - [2258] = {.lex_state = 251, .external_lex_state = 22}, - [2259] = {.lex_state = 251, .external_lex_state = 22}, - [2260] = {.lex_state = 251, .external_lex_state = 22}, - [2261] = {.lex_state = 251, .external_lex_state = 22}, - [2262] = {.lex_state = 251, .external_lex_state = 22}, - [2263] = {.lex_state = 251, .external_lex_state = 22}, - [2264] = {.lex_state = 251, .external_lex_state = 22}, - [2265] = {.lex_state = 251, .external_lex_state = 22}, - [2266] = {.lex_state = 251, .external_lex_state = 22}, - [2267] = {.lex_state = 251, .external_lex_state = 22}, - [2268] = {.lex_state = 251, .external_lex_state = 22}, - [2269] = {.lex_state = 251, .external_lex_state = 22}, - [2270] = {.lex_state = 251, .external_lex_state = 22}, - [2271] = {.lex_state = 251, .external_lex_state = 22}, - [2272] = {.lex_state = 251, .external_lex_state = 22}, - [2273] = {.lex_state = 251, .external_lex_state = 22}, - [2274] = {.lex_state = 251, .external_lex_state = 22}, - [2275] = {.lex_state = 251, .external_lex_state = 22}, - [2276] = {.lex_state = 251, .external_lex_state = 22}, - [2277] = {.lex_state = 251, .external_lex_state = 22}, - [2278] = {.lex_state = 251, .external_lex_state = 22}, - [2279] = {.lex_state = 251, .external_lex_state = 22}, - [2280] = {.lex_state = 251, .external_lex_state = 22}, - [2281] = {.lex_state = 251, .external_lex_state = 22}, - [2282] = {.lex_state = 251, .external_lex_state = 22}, - [2283] = {.lex_state = 251, .external_lex_state = 22}, - [2284] = {.lex_state = 251, .external_lex_state = 22}, - [2285] = {.lex_state = 251, .external_lex_state = 22}, - [2286] = {.lex_state = 251, .external_lex_state = 22}, - [2287] = {.lex_state = 251, .external_lex_state = 22}, - [2288] = {.lex_state = 251, .external_lex_state = 22}, - [2289] = {.lex_state = 251, .external_lex_state = 22}, - [2290] = {.lex_state = 251, .external_lex_state = 22}, - [2291] = {.lex_state = 251, .external_lex_state = 22}, - [2292] = {.lex_state = 251, .external_lex_state = 22}, - [2293] = {.lex_state = 251, .external_lex_state = 22}, - [2294] = {.lex_state = 251, .external_lex_state = 22}, - [2295] = {.lex_state = 251, .external_lex_state = 22}, - [2296] = {.lex_state = 235, .external_lex_state = 2}, - [2297] = {.lex_state = 251, .external_lex_state = 22}, - [2298] = {.lex_state = 251, .external_lex_state = 22}, - [2299] = {.lex_state = 251, .external_lex_state = 22}, - [2300] = {.lex_state = 251, .external_lex_state = 22}, - [2301] = {.lex_state = 251, .external_lex_state = 22}, - [2302] = {.lex_state = 251, .external_lex_state = 22}, - [2303] = {.lex_state = 235, .external_lex_state = 2}, - [2304] = {.lex_state = 235, .external_lex_state = 2}, - [2305] = {.lex_state = 251, .external_lex_state = 22}, - [2306] = {.lex_state = 251, .external_lex_state = 22}, - [2307] = {.lex_state = 251, .external_lex_state = 22}, - [2308] = {.lex_state = 251, .external_lex_state = 22}, - [2309] = {.lex_state = 251, .external_lex_state = 22}, - [2310] = {.lex_state = 251, .external_lex_state = 22}, - [2311] = {.lex_state = 251, .external_lex_state = 22}, - [2312] = {.lex_state = 251, .external_lex_state = 22}, - [2313] = {.lex_state = 251, .external_lex_state = 22}, - [2314] = {.lex_state = 251, .external_lex_state = 22}, - [2315] = {.lex_state = 251, .external_lex_state = 22}, - [2316] = {.lex_state = 71, .external_lex_state = 44}, - [2317] = {.lex_state = 251, .external_lex_state = 22}, - [2318] = {.lex_state = 251, .external_lex_state = 22}, - [2319] = {.lex_state = 251, .external_lex_state = 22}, - [2320] = {.lex_state = 251, .external_lex_state = 22}, - [2321] = {.lex_state = 251, .external_lex_state = 22}, - [2322] = {.lex_state = 251, .external_lex_state = 22}, - [2323] = {.lex_state = 251, .external_lex_state = 22}, - [2324] = {.lex_state = 251, .external_lex_state = 22}, - [2325] = {.lex_state = 251, .external_lex_state = 22}, - [2326] = {.lex_state = 71, .external_lex_state = 44}, - [2327] = {.lex_state = 251, .external_lex_state = 22}, - [2328] = {.lex_state = 251, .external_lex_state = 22}, - [2329] = {.lex_state = 251, .external_lex_state = 22}, - [2330] = {.lex_state = 251, .external_lex_state = 22}, - [2331] = {.lex_state = 251, .external_lex_state = 22}, - [2332] = {.lex_state = 251, .external_lex_state = 22}, - [2333] = {.lex_state = 251, .external_lex_state = 22}, - [2334] = {.lex_state = 251, .external_lex_state = 22}, - [2335] = {.lex_state = 251, .external_lex_state = 22}, - [2336] = {.lex_state = 251, .external_lex_state = 22}, - [2337] = {.lex_state = 251, .external_lex_state = 22}, - [2338] = {.lex_state = 235, .external_lex_state = 2}, - [2339] = {.lex_state = 235, .external_lex_state = 2}, - [2340] = {.lex_state = 251, .external_lex_state = 22}, - [2341] = {.lex_state = 251, .external_lex_state = 22}, - [2342] = {.lex_state = 251, .external_lex_state = 22}, - [2343] = {.lex_state = 235, .external_lex_state = 2}, - [2344] = {.lex_state = 251, .external_lex_state = 22}, - [2345] = {.lex_state = 251, .external_lex_state = 22}, - [2346] = {.lex_state = 251, .external_lex_state = 22}, - [2347] = {.lex_state = 251, .external_lex_state = 22}, - [2348] = {.lex_state = 74, .external_lex_state = 46}, - [2349] = {.lex_state = 74, .external_lex_state = 46}, - [2350] = {.lex_state = 255, .external_lex_state = 47}, - [2351] = {.lex_state = 255, .external_lex_state = 47}, - [2352] = {.lex_state = 74, .external_lex_state = 30}, - [2353] = {.lex_state = 255, .external_lex_state = 47}, - [2354] = {.lex_state = 255, .external_lex_state = 47}, - [2355] = {.lex_state = 74, .external_lex_state = 29}, - [2356] = {.lex_state = 74, .external_lex_state = 48}, - [2357] = {.lex_state = 74, .external_lex_state = 30}, - [2358] = {.lex_state = 74, .external_lex_state = 46}, - [2359] = {.lex_state = 74, .external_lex_state = 30}, - [2360] = {.lex_state = 74, .external_lex_state = 46}, - [2361] = {.lex_state = 74, .external_lex_state = 30}, - [2362] = {.lex_state = 74, .external_lex_state = 30}, - [2363] = {.lex_state = 74, .external_lex_state = 30}, - [2364] = {.lex_state = 74, .external_lex_state = 46}, - [2365] = {.lex_state = 74, .external_lex_state = 29}, - [2366] = {.lex_state = 421, .external_lex_state = 46}, - [2367] = {.lex_state = 74, .external_lex_state = 46}, - [2368] = {.lex_state = 74, .external_lex_state = 46}, - [2369] = {.lex_state = 421, .external_lex_state = 46}, - [2370] = {.lex_state = 74, .external_lex_state = 30}, - [2371] = {.lex_state = 74, .external_lex_state = 48}, - [2372] = {.lex_state = 74, .external_lex_state = 48}, - [2373] = {.lex_state = 74, .external_lex_state = 30}, - [2374] = {.lex_state = 74, .external_lex_state = 29}, - [2375] = {.lex_state = 74, .external_lex_state = 29}, - [2376] = {.lex_state = 421, .external_lex_state = 46}, - [2377] = {.lex_state = 74, .external_lex_state = 46}, - [2378] = {.lex_state = 74, .external_lex_state = 48}, - [2379] = {.lex_state = 74, .external_lex_state = 46}, - [2380] = {.lex_state = 421, .external_lex_state = 46}, - [2381] = {.lex_state = 74, .external_lex_state = 46}, - [2382] = {.lex_state = 421, .external_lex_state = 46}, - [2383] = {.lex_state = 421, .external_lex_state = 46}, - [2384] = {.lex_state = 421, .external_lex_state = 46}, - [2385] = {.lex_state = 421, .external_lex_state = 46}, - [2386] = {.lex_state = 74, .external_lex_state = 29}, - [2387] = {.lex_state = 74, .external_lex_state = 46}, - [2388] = {.lex_state = 74, .external_lex_state = 46}, - [2389] = {.lex_state = 421, .external_lex_state = 46}, - [2390] = {.lex_state = 74, .external_lex_state = 29}, - [2391] = {.lex_state = 74, .external_lex_state = 46}, - [2392] = {.lex_state = 74, .external_lex_state = 30}, - [2393] = {.lex_state = 74, .external_lex_state = 48}, - [2394] = {.lex_state = 74, .external_lex_state = 48}, - [2395] = {.lex_state = 421, .external_lex_state = 46}, - [2396] = {.lex_state = 421, .external_lex_state = 46}, - [2397] = {.lex_state = 74, .external_lex_state = 48}, - [2398] = {.lex_state = 74, .external_lex_state = 46}, - [2399] = {.lex_state = 74, .external_lex_state = 30}, - [2400] = {.lex_state = 74, .external_lex_state = 30}, - [2401] = {.lex_state = 255, .external_lex_state = 33}, - [2402] = {.lex_state = 255, .external_lex_state = 33}, - [2403] = {.lex_state = 421, .external_lex_state = 46}, - [2404] = {.lex_state = 422, .external_lex_state = 29}, - [2405] = {.lex_state = 74, .external_lex_state = 46}, - [2406] = {.lex_state = 421, .external_lex_state = 46}, - [2407] = {.lex_state = 74, .external_lex_state = 46}, - [2408] = {.lex_state = 74, .external_lex_state = 48}, - [2409] = {.lex_state = 74, .external_lex_state = 48}, - [2410] = {.lex_state = 421, .external_lex_state = 46}, - [2411] = {.lex_state = 74, .external_lex_state = 46}, - [2412] = {.lex_state = 421, .external_lex_state = 46}, - [2413] = {.lex_state = 74, .external_lex_state = 30}, - [2414] = {.lex_state = 74, .external_lex_state = 48}, - [2415] = {.lex_state = 74, .external_lex_state = 46}, - [2416] = {.lex_state = 421, .external_lex_state = 46}, - [2417] = {.lex_state = 421, .external_lex_state = 46}, - [2418] = {.lex_state = 74, .external_lex_state = 46}, - [2419] = {.lex_state = 74, .external_lex_state = 46}, - [2420] = {.lex_state = 255, .external_lex_state = 33}, - [2421] = {.lex_state = 421, .external_lex_state = 46}, - [2422] = {.lex_state = 74, .external_lex_state = 46}, - [2423] = {.lex_state = 421, .external_lex_state = 46}, - [2424] = {.lex_state = 74, .external_lex_state = 46}, - [2425] = {.lex_state = 421, .external_lex_state = 46}, - [2426] = {.lex_state = 74, .external_lex_state = 46}, - [2427] = {.lex_state = 74, .external_lex_state = 46}, - [2428] = {.lex_state = 74, .external_lex_state = 46}, - [2429] = {.lex_state = 255, .external_lex_state = 33}, - [2430] = {.lex_state = 421, .external_lex_state = 46}, - [2431] = {.lex_state = 74, .external_lex_state = 46}, - [2432] = {.lex_state = 421, .external_lex_state = 46}, - [2433] = {.lex_state = 421, .external_lex_state = 46}, - [2434] = {.lex_state = 74, .external_lex_state = 46}, - [2435] = {.lex_state = 74, .external_lex_state = 46}, - [2436] = {.lex_state = 421, .external_lex_state = 48}, - [2437] = {.lex_state = 74, .external_lex_state = 48}, - [2438] = {.lex_state = 74, .external_lex_state = 46}, - [2439] = {.lex_state = 422, .external_lex_state = 29}, - [2440] = {.lex_state = 74, .external_lex_state = 48}, - [2441] = {.lex_state = 74, .external_lex_state = 48}, - [2442] = {.lex_state = 234, .external_lex_state = 49}, - [2443] = {.lex_state = 234, .external_lex_state = 49}, - [2444] = {.lex_state = 182, .external_lex_state = 50}, - [2445] = {.lex_state = 74, .external_lex_state = 48}, - [2446] = {.lex_state = 234, .external_lex_state = 49}, - [2447] = {.lex_state = 74, .external_lex_state = 30}, - [2448] = {.lex_state = 248}, - [2449] = {.lex_state = 234, .external_lex_state = 49}, - [2450] = {.lex_state = 74, .external_lex_state = 48}, - [2451] = {.lex_state = 248}, - [2452] = {.lex_state = 234, .external_lex_state = 49}, - [2453] = {.lex_state = 234, .external_lex_state = 49}, - [2454] = {.lex_state = 421, .external_lex_state = 46}, - [2455] = {.lex_state = 234, .external_lex_state = 49}, - [2456] = {.lex_state = 422, .external_lex_state = 30}, - [2457] = {.lex_state = 234, .external_lex_state = 49}, - [2458] = {.lex_state = 74, .external_lex_state = 48}, - [2459] = {.lex_state = 234, .external_lex_state = 49}, - [2460] = {.lex_state = 74, .external_lex_state = 48}, - [2461] = {.lex_state = 234, .external_lex_state = 49}, - [2462] = {.lex_state = 421, .external_lex_state = 48}, - [2463] = {.lex_state = 74, .external_lex_state = 29}, - [2464] = {.lex_state = 74, .external_lex_state = 48}, - [2465] = {.lex_state = 74, .external_lex_state = 48}, - [2466] = {.lex_state = 74, .external_lex_state = 48}, - [2467] = {.lex_state = 234, .external_lex_state = 49}, - [2468] = {.lex_state = 421, .external_lex_state = 46}, - [2469] = {.lex_state = 421, .external_lex_state = 46}, - [2470] = {.lex_state = 421, .external_lex_state = 46}, - [2471] = {.lex_state = 421, .external_lex_state = 46}, - [2472] = {.lex_state = 234, .external_lex_state = 49}, - [2473] = {.lex_state = 234, .external_lex_state = 49}, - [2474] = {.lex_state = 421, .external_lex_state = 48}, - [2475] = {.lex_state = 248}, - [2476] = {.lex_state = 248}, - [2477] = {.lex_state = 74, .external_lex_state = 48}, - [2478] = {.lex_state = 234, .external_lex_state = 49}, - [2479] = {.lex_state = 74, .external_lex_state = 48}, - [2480] = {.lex_state = 248}, - [2481] = {.lex_state = 74, .external_lex_state = 48}, - [2482] = {.lex_state = 248}, - [2483] = {.lex_state = 74, .external_lex_state = 48}, - [2484] = {.lex_state = 74, .external_lex_state = 48}, - [2485] = {.lex_state = 234, .external_lex_state = 49}, - [2486] = {.lex_state = 234, .external_lex_state = 49}, - [2487] = {.lex_state = 74, .external_lex_state = 48}, - [2488] = {.lex_state = 74, .external_lex_state = 48}, - [2489] = {.lex_state = 234, .external_lex_state = 49}, - [2490] = {.lex_state = 182, .external_lex_state = 50}, - [2491] = {.lex_state = 234, .external_lex_state = 49}, - [2492] = {.lex_state = 234, .external_lex_state = 49}, - [2493] = {.lex_state = 234, .external_lex_state = 49}, - [2494] = {.lex_state = 74, .external_lex_state = 30}, - [2495] = {.lex_state = 248}, - [2496] = {.lex_state = 234, .external_lex_state = 49}, - [2497] = {.lex_state = 248}, - [2498] = {.lex_state = 422, .external_lex_state = 30}, - [2499] = {.lex_state = 422, .external_lex_state = 30}, - [2500] = {.lex_state = 74, .external_lex_state = 30}, - [2501] = {.lex_state = 234, .external_lex_state = 49}, - [2502] = {.lex_state = 74, .external_lex_state = 30}, - [2503] = {.lex_state = 234, .external_lex_state = 49}, - [2504] = {.lex_state = 422, .external_lex_state = 30}, - [2505] = {.lex_state = 74, .external_lex_state = 30}, - [2506] = {.lex_state = 234, .external_lex_state = 49}, - [2507] = {.lex_state = 421, .external_lex_state = 30}, - [2508] = {.lex_state = 422, .external_lex_state = 30}, - [2509] = {.lex_state = 74, .external_lex_state = 48}, - [2510] = {.lex_state = 74, .external_lex_state = 48}, - [2511] = {.lex_state = 421, .external_lex_state = 46}, - [2512] = {.lex_state = 421, .external_lex_state = 46}, - [2513] = {.lex_state = 234, .external_lex_state = 49}, - [2514] = {.lex_state = 234, .external_lex_state = 49}, - [2515] = {.lex_state = 248}, - [2516] = {.lex_state = 421, .external_lex_state = 29}, - [2517] = {.lex_state = 421, .external_lex_state = 30}, - [2518] = {.lex_state = 422, .external_lex_state = 30}, - [2519] = {.lex_state = 74, .external_lex_state = 48}, - [2520] = {.lex_state = 74, .external_lex_state = 48}, - [2521] = {.lex_state = 74, .external_lex_state = 48}, - [2522] = {.lex_state = 421, .external_lex_state = 30}, - [2523] = {.lex_state = 421, .external_lex_state = 30}, - [2524] = {.lex_state = 421, .external_lex_state = 30}, - [2525] = {.lex_state = 421, .external_lex_state = 29}, - [2526] = {.lex_state = 421, .external_lex_state = 30}, - [2527] = {.lex_state = 421, .external_lex_state = 30}, - [2528] = {.lex_state = 421, .external_lex_state = 29}, - [2529] = {.lex_state = 234, .external_lex_state = 49}, - [2530] = {.lex_state = 234, .external_lex_state = 49}, - [2531] = {.lex_state = 234, .external_lex_state = 49}, - [2532] = {.lex_state = 74, .external_lex_state = 48}, - [2533] = {.lex_state = 234, .external_lex_state = 49}, - [2534] = {.lex_state = 234, .external_lex_state = 49}, - [2535] = {.lex_state = 421, .external_lex_state = 46}, - [2536] = {.lex_state = 421, .external_lex_state = 46}, - [2537] = {.lex_state = 74, .external_lex_state = 48}, - [2538] = {.lex_state = 421, .external_lex_state = 30}, - [2539] = {.lex_state = 234, .external_lex_state = 49}, - [2540] = {.lex_state = 234, .external_lex_state = 49}, - [2541] = {.lex_state = 234, .external_lex_state = 49}, - [2542] = {.lex_state = 234, .external_lex_state = 49}, - [2543] = {.lex_state = 234, .external_lex_state = 49}, - [2544] = {.lex_state = 234, .external_lex_state = 49}, - [2545] = {.lex_state = 74, .external_lex_state = 30}, - [2546] = {.lex_state = 234, .external_lex_state = 49}, - [2547] = {.lex_state = 234, .external_lex_state = 49}, - [2548] = {.lex_state = 74, .external_lex_state = 30}, - [2549] = {.lex_state = 422, .external_lex_state = 30}, - [2550] = {.lex_state = 234, .external_lex_state = 49}, - [2551] = {.lex_state = 74, .external_lex_state = 48}, - [2552] = {.lex_state = 421, .external_lex_state = 48}, - [2553] = {.lex_state = 421, .external_lex_state = 48}, - [2554] = {.lex_state = 421, .external_lex_state = 48}, - [2555] = {.lex_state = 234, .external_lex_state = 49}, - [2556] = {.lex_state = 421, .external_lex_state = 48}, - [2557] = {.lex_state = 421, .external_lex_state = 48}, - [2558] = {.lex_state = 421, .external_lex_state = 48}, - [2559] = {.lex_state = 421, .external_lex_state = 48}, - [2560] = {.lex_state = 421, .external_lex_state = 48}, - [2561] = {.lex_state = 421, .external_lex_state = 48}, - [2562] = {.lex_state = 421, .external_lex_state = 48}, - [2563] = {.lex_state = 421, .external_lex_state = 48}, - [2564] = {.lex_state = 182, .external_lex_state = 50}, - [2565] = {.lex_state = 422, .external_lex_state = 29}, - [2566] = {.lex_state = 182, .external_lex_state = 50}, - [2567] = {.lex_state = 422, .external_lex_state = 30}, - [2568] = {.lex_state = 182, .external_lex_state = 50}, - [2569] = {.lex_state = 421, .external_lex_state = 48}, - [2570] = {.lex_state = 74, .external_lex_state = 48}, - [2571] = {.lex_state = 74, .external_lex_state = 48}, - [2572] = {.lex_state = 74, .external_lex_state = 48}, - [2573] = {.lex_state = 421, .external_lex_state = 46}, - [2574] = {.lex_state = 422, .external_lex_state = 30}, - [2575] = {.lex_state = 421, .external_lex_state = 46}, - [2576] = {.lex_state = 422, .external_lex_state = 29}, - [2577] = {.lex_state = 74, .external_lex_state = 48}, - [2578] = {.lex_state = 74, .external_lex_state = 48}, - [2579] = {.lex_state = 74, .external_lex_state = 48}, - [2580] = {.lex_state = 74, .external_lex_state = 48}, - [2581] = {.lex_state = 421, .external_lex_state = 30}, - [2582] = {.lex_state = 421, .external_lex_state = 29}, - [2583] = {.lex_state = 422, .external_lex_state = 30}, - [2584] = {.lex_state = 234, .external_lex_state = 49}, - [2585] = {.lex_state = 234, .external_lex_state = 49}, - [2586] = {.lex_state = 234, .external_lex_state = 49}, - [2587] = {.lex_state = 421, .external_lex_state = 48}, - [2588] = {.lex_state = 421, .external_lex_state = 30}, - [2589] = {.lex_state = 421, .external_lex_state = 48}, - [2590] = {.lex_state = 421, .external_lex_state = 48}, - [2591] = {.lex_state = 421, .external_lex_state = 48}, - [2592] = {.lex_state = 421, .external_lex_state = 30}, - [2593] = {.lex_state = 182, .external_lex_state = 50}, - [2594] = {.lex_state = 421, .external_lex_state = 48}, - [2595] = {.lex_state = 422, .external_lex_state = 29}, - [2596] = {.lex_state = 422, .external_lex_state = 30}, - [2597] = {.lex_state = 421, .external_lex_state = 48}, - [2598] = {.lex_state = 421, .external_lex_state = 48}, - [2599] = {.lex_state = 234, .external_lex_state = 49}, - [2600] = {.lex_state = 234, .external_lex_state = 49}, - [2601] = {.lex_state = 421, .external_lex_state = 48}, - [2602] = {.lex_state = 421, .external_lex_state = 46}, - [2603] = {.lex_state = 421, .external_lex_state = 46}, - [2604] = {.lex_state = 421, .external_lex_state = 30}, - [2605] = {.lex_state = 234, .external_lex_state = 49}, - [2606] = {.lex_state = 234, .external_lex_state = 49}, - [2607] = {.lex_state = 234, .external_lex_state = 49}, - [2608] = {.lex_state = 421, .external_lex_state = 46}, - [2609] = {.lex_state = 421, .external_lex_state = 48}, - [2610] = {.lex_state = 233, .external_lex_state = 51}, - [2611] = {.lex_state = 233, .external_lex_state = 51}, - [2612] = {.lex_state = 182, .external_lex_state = 50}, - [2613] = {.lex_state = 74, .external_lex_state = 30}, - [2614] = {.lex_state = 248}, - [2615] = {.lex_state = 233, .external_lex_state = 51}, - [2616] = {.lex_state = 233, .external_lex_state = 51}, - [2617] = {.lex_state = 233, .external_lex_state = 51}, - [2618] = {.lex_state = 182, .external_lex_state = 50}, - [2619] = {.lex_state = 233, .external_lex_state = 51}, - [2620] = {.lex_state = 421, .external_lex_state = 48}, - [2621] = {.lex_state = 421, .external_lex_state = 48}, - [2622] = {.lex_state = 422, .external_lex_state = 29}, - [2623] = {.lex_state = 182, .external_lex_state = 50}, - [2624] = {.lex_state = 182, .external_lex_state = 50}, - [2625] = {.lex_state = 421, .external_lex_state = 30}, - [2626] = {.lex_state = 233, .external_lex_state = 51}, - [2627] = {.lex_state = 182, .external_lex_state = 50}, - [2628] = {.lex_state = 182, .external_lex_state = 50}, - [2629] = {.lex_state = 182, .external_lex_state = 50}, - [2630] = {.lex_state = 233, .external_lex_state = 51}, - [2631] = {.lex_state = 421, .external_lex_state = 46}, - [2632] = {.lex_state = 182, .external_lex_state = 50}, - [2633] = {.lex_state = 182, .external_lex_state = 50}, - [2634] = {.lex_state = 233, .external_lex_state = 51}, - [2635] = {.lex_state = 248}, - [2636] = {.lex_state = 248}, - [2637] = {.lex_state = 233, .external_lex_state = 51}, - [2638] = {.lex_state = 233, .external_lex_state = 51}, - [2639] = {.lex_state = 233, .external_lex_state = 51}, - [2640] = {.lex_state = 233, .external_lex_state = 51}, - [2641] = {.lex_state = 233, .external_lex_state = 51}, - [2642] = {.lex_state = 421, .external_lex_state = 30}, - [2643] = {.lex_state = 248}, - [2644] = {.lex_state = 421, .external_lex_state = 48}, - [2645] = {.lex_state = 421, .external_lex_state = 48}, - [2646] = {.lex_state = 421, .external_lex_state = 30}, - [2647] = {.lex_state = 421, .external_lex_state = 48}, - [2648] = {.lex_state = 421, .external_lex_state = 48}, - [2649] = {.lex_state = 421, .external_lex_state = 48}, - [2650] = {.lex_state = 233, .external_lex_state = 51}, - [2651] = {.lex_state = 233, .external_lex_state = 51}, - [2652] = {.lex_state = 421, .external_lex_state = 46}, - [2653] = {.lex_state = 421, .external_lex_state = 46}, - [2654] = {.lex_state = 233, .external_lex_state = 51}, - [2655] = {.lex_state = 233, .external_lex_state = 51}, - [2656] = {.lex_state = 422, .external_lex_state = 29}, - [2657] = {.lex_state = 233, .external_lex_state = 51}, - [2658] = {.lex_state = 233, .external_lex_state = 51}, - [2659] = {.lex_state = 233, .external_lex_state = 51}, - [2660] = {.lex_state = 233, .external_lex_state = 51}, - [2661] = {.lex_state = 182, .external_lex_state = 50}, - [2662] = {.lex_state = 233, .external_lex_state = 51}, - [2663] = {.lex_state = 74, .external_lex_state = 30}, - [2664] = {.lex_state = 421, .external_lex_state = 48}, - [2665] = {.lex_state = 421, .external_lex_state = 48}, - [2666] = {.lex_state = 421, .external_lex_state = 48}, - [2667] = {.lex_state = 421, .external_lex_state = 48}, - [2668] = {.lex_state = 248}, - [2669] = {.lex_state = 248}, - [2670] = {.lex_state = 182, .external_lex_state = 50}, - [2671] = {.lex_state = 233, .external_lex_state = 51}, - [2672] = {.lex_state = 233, .external_lex_state = 51}, - [2673] = {.lex_state = 233, .external_lex_state = 51}, - [2674] = {.lex_state = 233, .external_lex_state = 51}, - [2675] = {.lex_state = 421, .external_lex_state = 48}, - [2676] = {.lex_state = 421, .external_lex_state = 48}, - [2677] = {.lex_state = 233, .external_lex_state = 51}, - [2678] = {.lex_state = 233, .external_lex_state = 51}, - [2679] = {.lex_state = 182, .external_lex_state = 50}, - [2680] = {.lex_state = 421, .external_lex_state = 48}, - [2681] = {.lex_state = 421, .external_lex_state = 30}, - [2682] = {.lex_state = 233, .external_lex_state = 51}, - [2683] = {.lex_state = 233, .external_lex_state = 51}, - [2684] = {.lex_state = 421, .external_lex_state = 48}, - [2685] = {.lex_state = 233, .external_lex_state = 51}, - [2686] = {.lex_state = 74, .external_lex_state = 30}, - [2687] = {.lex_state = 182, .external_lex_state = 50}, - [2688] = {.lex_state = 233, .external_lex_state = 51}, - [2689] = {.lex_state = 421, .external_lex_state = 48}, - [2690] = {.lex_state = 421, .external_lex_state = 48}, - [2691] = {.lex_state = 421, .external_lex_state = 48}, - [2692] = {.lex_state = 421, .external_lex_state = 29}, - [2693] = {.lex_state = 421, .external_lex_state = 30}, - [2694] = {.lex_state = 233, .external_lex_state = 51}, - [2695] = {.lex_state = 421, .external_lex_state = 48}, - [2696] = {.lex_state = 233, .external_lex_state = 51}, - [2697] = {.lex_state = 233, .external_lex_state = 51}, - [2698] = {.lex_state = 421, .external_lex_state = 30}, - [2699] = {.lex_state = 421, .external_lex_state = 48}, - [2700] = {.lex_state = 233, .external_lex_state = 51}, - [2701] = {.lex_state = 233, .external_lex_state = 51}, - [2702] = {.lex_state = 421, .external_lex_state = 29}, - [2703] = {.lex_state = 182, .external_lex_state = 50}, - [2704] = {.lex_state = 233, .external_lex_state = 51}, - [2705] = {.lex_state = 421, .external_lex_state = 30}, - [2706] = {.lex_state = 233, .external_lex_state = 51}, - [2707] = {.lex_state = 422, .external_lex_state = 29}, - [2708] = {.lex_state = 233, .external_lex_state = 51}, - [2709] = {.lex_state = 233, .external_lex_state = 51}, - [2710] = {.lex_state = 233, .external_lex_state = 51}, - [2711] = {.lex_state = 233, .external_lex_state = 51}, - [2712] = {.lex_state = 233, .external_lex_state = 51}, - [2713] = {.lex_state = 74, .external_lex_state = 30}, - [2714] = {.lex_state = 233, .external_lex_state = 51}, - [2715] = {.lex_state = 248}, - [2716] = {.lex_state = 233, .external_lex_state = 51}, - [2717] = {.lex_state = 421, .external_lex_state = 48}, - [2718] = {.lex_state = 233, .external_lex_state = 51}, - [2719] = {.lex_state = 233, .external_lex_state = 51}, - [2720] = {.lex_state = 421, .external_lex_state = 48}, - [2721] = {.lex_state = 233, .external_lex_state = 51}, - [2722] = {.lex_state = 233, .external_lex_state = 51}, - [2723] = {.lex_state = 421, .external_lex_state = 30}, - [2724] = {.lex_state = 421, .external_lex_state = 48}, - [2725] = {.lex_state = 421, .external_lex_state = 48}, - [2726] = {.lex_state = 74, .external_lex_state = 30}, - [2727] = {.lex_state = 421, .external_lex_state = 48}, - [2728] = {.lex_state = 421, .external_lex_state = 48}, - [2729] = {.lex_state = 74, .external_lex_state = 29}, - [2730] = {.lex_state = 74, .external_lex_state = 30}, - [2731] = {.lex_state = 421, .external_lex_state = 48}, - [2732] = {.lex_state = 421, .external_lex_state = 48}, - [2733] = {.lex_state = 74, .external_lex_state = 29}, - [2734] = {.lex_state = 182, .external_lex_state = 50}, - [2735] = {.lex_state = 233, .external_lex_state = 51}, - [2736] = {.lex_state = 74, .external_lex_state = 29}, - [2737] = {.lex_state = 182, .external_lex_state = 50}, - [2738] = {.lex_state = 233, .external_lex_state = 51}, - [2739] = {.lex_state = 421, .external_lex_state = 48}, - [2740] = {.lex_state = 182, .external_lex_state = 50}, - [2741] = {.lex_state = 182, .external_lex_state = 50}, - [2742] = {.lex_state = 421, .external_lex_state = 48}, - [2743] = {.lex_state = 233, .external_lex_state = 51}, - [2744] = {.lex_state = 422, .external_lex_state = 30}, - [2745] = {.lex_state = 233, .external_lex_state = 51}, - [2746] = {.lex_state = 248}, - [2747] = {.lex_state = 248}, - [2748] = {.lex_state = 182, .external_lex_state = 50}, - [2749] = {.lex_state = 233, .external_lex_state = 51}, - [2750] = {.lex_state = 422, .external_lex_state = 30}, - [2751] = {.lex_state = 422, .external_lex_state = 30}, - [2752] = {.lex_state = 74, .external_lex_state = 30}, - [2753] = {.lex_state = 422, .external_lex_state = 30}, - [2754] = {.lex_state = 74, .external_lex_state = 30}, - [2755] = {.lex_state = 422, .external_lex_state = 30}, - [2756] = {.lex_state = 74, .external_lex_state = 30}, - [2757] = {.lex_state = 181, .external_lex_state = 32}, - [2758] = {.lex_state = 74, .external_lex_state = 30}, - [2759] = {.lex_state = 422, .external_lex_state = 30}, - [2760] = {.lex_state = 422, .external_lex_state = 30}, - [2761] = {.lex_state = 161, .external_lex_state = 52}, - [2762] = {.lex_state = 422, .external_lex_state = 30}, - [2763] = {.lex_state = 74, .external_lex_state = 30}, - [2764] = {.lex_state = 74, .external_lex_state = 30}, - [2765] = {.lex_state = 74, .external_lex_state = 30}, - [2766] = {.lex_state = 74, .external_lex_state = 30}, - [2767] = {.lex_state = 74, .external_lex_state = 30}, - [2768] = {.lex_state = 422, .external_lex_state = 30}, - [2769] = {.lex_state = 422, .external_lex_state = 30}, - [2770] = {.lex_state = 422, .external_lex_state = 30}, - [2771] = {.lex_state = 422, .external_lex_state = 30}, - [2772] = {.lex_state = 422, .external_lex_state = 30}, - [2773] = {.lex_state = 74, .external_lex_state = 30}, - [2774] = {.lex_state = 74, .external_lex_state = 30}, - [2775] = {.lex_state = 74, .external_lex_state = 30}, - [2776] = {.lex_state = 422, .external_lex_state = 30}, - [2777] = {.lex_state = 74, .external_lex_state = 30}, - [2778] = {.lex_state = 161, .external_lex_state = 52}, - [2779] = {.lex_state = 74, .external_lex_state = 30}, - [2780] = {.lex_state = 74, .external_lex_state = 30}, - [2781] = {.lex_state = 422, .external_lex_state = 30}, - [2782] = {.lex_state = 422, .external_lex_state = 30}, - [2783] = {.lex_state = 74, .external_lex_state = 30}, - [2784] = {.lex_state = 74, .external_lex_state = 30}, - [2785] = {.lex_state = 422, .external_lex_state = 30}, - [2786] = {.lex_state = 74, .external_lex_state = 30}, - [2787] = {.lex_state = 74, .external_lex_state = 30}, - [2788] = {.lex_state = 422, .external_lex_state = 30}, - [2789] = {.lex_state = 422, .external_lex_state = 30}, - [2790] = {.lex_state = 421, .external_lex_state = 30}, - [2791] = {.lex_state = 74, .external_lex_state = 30}, - [2792] = {.lex_state = 422, .external_lex_state = 30}, - [2793] = {.lex_state = 422, .external_lex_state = 30}, - [2794] = {.lex_state = 422, .external_lex_state = 30}, - [2795] = {.lex_state = 74, .external_lex_state = 30}, - [2796] = {.lex_state = 74, .external_lex_state = 30}, - [2797] = {.lex_state = 422, .external_lex_state = 30}, - [2798] = {.lex_state = 422, .external_lex_state = 30}, - [2799] = {.lex_state = 422, .external_lex_state = 30}, - [2800] = {.lex_state = 422, .external_lex_state = 30}, - [2801] = {.lex_state = 421, .external_lex_state = 30}, - [2802] = {.lex_state = 422, .external_lex_state = 30}, - [2803] = {.lex_state = 422, .external_lex_state = 30}, - [2804] = {.lex_state = 74, .external_lex_state = 30}, - [2805] = {.lex_state = 422, .external_lex_state = 30}, - [2806] = {.lex_state = 422, .external_lex_state = 30}, - [2807] = {.lex_state = 422, .external_lex_state = 30}, - [2808] = {.lex_state = 422, .external_lex_state = 30}, - [2809] = {.lex_state = 422, .external_lex_state = 30}, - [2810] = {.lex_state = 421, .external_lex_state = 48}, - [2811] = {.lex_state = 421, .external_lex_state = 48}, - [2812] = {.lex_state = 422, .external_lex_state = 30}, - [2813] = {.lex_state = 421, .external_lex_state = 48}, - [2814] = {.lex_state = 422, .external_lex_state = 30}, - [2815] = {.lex_state = 421, .external_lex_state = 48}, - [2816] = {.lex_state = 74, .external_lex_state = 30}, - [2817] = {.lex_state = 422, .external_lex_state = 30}, - [2818] = {.lex_state = 74, .external_lex_state = 30}, - [2819] = {.lex_state = 421, .external_lex_state = 48}, - [2820] = {.lex_state = 74, .external_lex_state = 30}, - [2821] = {.lex_state = 74, .external_lex_state = 30}, - [2822] = {.lex_state = 422, .external_lex_state = 30}, - [2823] = {.lex_state = 74, .external_lex_state = 30}, - [2824] = {.lex_state = 74, .external_lex_state = 30}, - [2825] = {.lex_state = 421, .external_lex_state = 48}, - [2826] = {.lex_state = 422, .external_lex_state = 30}, - [2827] = {.lex_state = 74, .external_lex_state = 30}, - [2828] = {.lex_state = 74, .external_lex_state = 30}, - [2829] = {.lex_state = 74, .external_lex_state = 30}, - [2830] = {.lex_state = 74, .external_lex_state = 30}, - [2831] = {.lex_state = 74, .external_lex_state = 30}, - [2832] = {.lex_state = 74, .external_lex_state = 30}, - [2833] = {.lex_state = 421, .external_lex_state = 48}, - [2834] = {.lex_state = 181, .external_lex_state = 32}, - [2835] = {.lex_state = 74, .external_lex_state = 30}, - [2836] = {.lex_state = 421, .external_lex_state = 48}, - [2837] = {.lex_state = 74, .external_lex_state = 30}, - [2838] = {.lex_state = 74, .external_lex_state = 30}, - [2839] = {.lex_state = 74, .external_lex_state = 30}, - [2840] = {.lex_state = 422, .external_lex_state = 30}, - [2841] = {.lex_state = 421, .external_lex_state = 48}, - [2842] = {.lex_state = 422, .external_lex_state = 30}, - [2843] = {.lex_state = 422, .external_lex_state = 30}, - [2844] = {.lex_state = 74, .external_lex_state = 30}, - [2845] = {.lex_state = 74, .external_lex_state = 30}, - [2846] = {.lex_state = 422, .external_lex_state = 30}, - [2847] = {.lex_state = 421, .external_lex_state = 30}, - [2848] = {.lex_state = 422, .external_lex_state = 30}, - [2849] = {.lex_state = 422, .external_lex_state = 30}, - [2850] = {.lex_state = 74, .external_lex_state = 30}, - [2851] = {.lex_state = 74, .external_lex_state = 30}, - [2852] = {.lex_state = 422, .external_lex_state = 30}, - [2853] = {.lex_state = 74, .external_lex_state = 30}, - [2854] = {.lex_state = 421, .external_lex_state = 30}, - [2855] = {.lex_state = 422, .external_lex_state = 30}, - [2856] = {.lex_state = 74, .external_lex_state = 30}, - [2857] = {.lex_state = 74, .external_lex_state = 30}, - [2858] = {.lex_state = 74, .external_lex_state = 30}, - [2859] = {.lex_state = 74, .external_lex_state = 30}, - [2860] = {.lex_state = 422, .external_lex_state = 30}, - [2861] = {.lex_state = 422, .external_lex_state = 30}, - [2862] = {.lex_state = 422, .external_lex_state = 30}, - [2863] = {.lex_state = 74, .external_lex_state = 30}, - [2864] = {.lex_state = 421, .external_lex_state = 48}, - [2865] = {.lex_state = 422, .external_lex_state = 30}, - [2866] = {.lex_state = 248}, - [2867] = {.lex_state = 248}, - [2868] = {.lex_state = 248}, - [2869] = {.lex_state = 239, .external_lex_state = 53}, - [2870] = {.lex_state = 421, .external_lex_state = 30}, - [2871] = {.lex_state = 181, .external_lex_state = 32}, - [2872] = {.lex_state = 421, .external_lex_state = 30}, - [2873] = {.lex_state = 421, .external_lex_state = 30}, - [2874] = {.lex_state = 422, .external_lex_state = 30}, - [2875] = {.lex_state = 74, .external_lex_state = 46}, - [2876] = {.lex_state = 239, .external_lex_state = 53}, - [2877] = {.lex_state = 421, .external_lex_state = 30}, - [2878] = {.lex_state = 421, .external_lex_state = 30}, - [2879] = {.lex_state = 248}, - [2880] = {.lex_state = 421, .external_lex_state = 30}, - [2881] = {.lex_state = 248}, - [2882] = {.lex_state = 421, .external_lex_state = 30}, - [2883] = {.lex_state = 421, .external_lex_state = 30}, - [2884] = {.lex_state = 239, .external_lex_state = 53}, - [2885] = {.lex_state = 239, .external_lex_state = 53}, - [2886] = {.lex_state = 422, .external_lex_state = 30}, - [2887] = {.lex_state = 239, .external_lex_state = 53}, - [2888] = {.lex_state = 239, .external_lex_state = 53}, - [2889] = {.lex_state = 248}, - [2890] = {.lex_state = 239, .external_lex_state = 53}, - [2891] = {.lex_state = 239, .external_lex_state = 53}, - [2892] = {.lex_state = 74, .external_lex_state = 46}, - [2893] = {.lex_state = 421, .external_lex_state = 30}, - [2894] = {.lex_state = 246, .external_lex_state = 31}, - [2895] = {.lex_state = 74, .external_lex_state = 46}, - [2896] = {.lex_state = 421, .external_lex_state = 30}, - [2897] = {.lex_state = 246, .external_lex_state = 31}, - [2898] = {.lex_state = 246, .external_lex_state = 31}, - [2899] = {.lex_state = 74, .external_lex_state = 48}, - [2900] = {.lex_state = 239, .external_lex_state = 53}, - [2901] = {.lex_state = 233, .external_lex_state = 54}, - [2902] = {.lex_state = 239, .external_lex_state = 53}, - [2903] = {.lex_state = 246, .external_lex_state = 31}, - [2904] = {.lex_state = 246, .external_lex_state = 31}, - [2905] = {.lex_state = 74, .external_lex_state = 30}, - [2906] = {.lex_state = 239, .external_lex_state = 53}, - [2907] = {.lex_state = 239, .external_lex_state = 53}, - [2908] = {.lex_state = 239, .external_lex_state = 53}, - [2909] = {.lex_state = 246, .external_lex_state = 31}, - [2910] = {.lex_state = 246, .external_lex_state = 31}, - [2911] = {.lex_state = 246, .external_lex_state = 31}, - [2912] = {.lex_state = 239, .external_lex_state = 53}, - [2913] = {.lex_state = 246, .external_lex_state = 31}, - [2914] = {.lex_state = 239, .external_lex_state = 53}, - [2915] = {.lex_state = 239, .external_lex_state = 53}, - [2916] = {.lex_state = 239, .external_lex_state = 53}, - [2917] = {.lex_state = 246, .external_lex_state = 31}, - [2918] = {.lex_state = 258, .external_lex_state = 55}, - [2919] = {.lex_state = 246, .external_lex_state = 31}, - [2920] = {.lex_state = 239, .external_lex_state = 53}, - [2921] = {.lex_state = 74, .external_lex_state = 30}, - [2922] = {.lex_state = 239, .external_lex_state = 53}, - [2923] = {.lex_state = 246, .external_lex_state = 31}, - [2924] = {.lex_state = 74, .external_lex_state = 30}, - [2925] = {.lex_state = 246, .external_lex_state = 31}, - [2926] = {.lex_state = 239, .external_lex_state = 53}, - [2927] = {.lex_state = 239, .external_lex_state = 53}, - [2928] = {.lex_state = 74, .external_lex_state = 29}, - [2929] = {.lex_state = 239, .external_lex_state = 53}, - [2930] = {.lex_state = 74, .external_lex_state = 30}, - [2931] = {.lex_state = 246, .external_lex_state = 31}, - [2932] = {.lex_state = 246, .external_lex_state = 31}, - [2933] = {.lex_state = 246, .external_lex_state = 31}, - [2934] = {.lex_state = 246, .external_lex_state = 31}, - [2935] = {.lex_state = 248, .external_lex_state = 40}, - [2936] = {.lex_state = 248, .external_lex_state = 40}, - [2937] = {.lex_state = 74, .external_lex_state = 30}, - [2938] = {.lex_state = 239, .external_lex_state = 53}, - [2939] = {.lex_state = 248, .external_lex_state = 40}, - [2940] = {.lex_state = 248, .external_lex_state = 40}, - [2941] = {.lex_state = 239, .external_lex_state = 53}, - [2942] = {.lex_state = 421, .external_lex_state = 30}, - [2943] = {.lex_state = 246, .external_lex_state = 31}, - [2944] = {.lex_state = 248, .external_lex_state = 40}, - [2945] = {.lex_state = 74, .external_lex_state = 29}, - [2946] = {.lex_state = 246, .external_lex_state = 31}, - [2947] = {.lex_state = 246, .external_lex_state = 31}, - [2948] = {.lex_state = 246, .external_lex_state = 31}, - [2949] = {.lex_state = 74, .external_lex_state = 46}, - [2950] = {.lex_state = 246, .external_lex_state = 31}, - [2951] = {.lex_state = 239, .external_lex_state = 53}, - [2952] = {.lex_state = 246, .external_lex_state = 31}, - [2953] = {.lex_state = 74, .external_lex_state = 46}, - [2954] = {.lex_state = 246, .external_lex_state = 31}, - [2955] = {.lex_state = 74, .external_lex_state = 48}, - [2956] = {.lex_state = 235, .external_lex_state = 31}, - [2957] = {.lex_state = 235, .external_lex_state = 31}, - [2958] = {.lex_state = 235, .external_lex_state = 31}, - [2959] = {.lex_state = 248, .external_lex_state = 43}, - [2960] = {.lex_state = 248, .external_lex_state = 41}, - [2961] = {.lex_state = 235, .external_lex_state = 31}, - [2962] = {.lex_state = 235, .external_lex_state = 31}, - [2963] = {.lex_state = 235, .external_lex_state = 31}, - [2964] = {.lex_state = 233, .external_lex_state = 55}, - [2965] = {.lex_state = 233, .external_lex_state = 55}, - [2966] = {.lex_state = 235, .external_lex_state = 31}, - [2967] = {.lex_state = 235, .external_lex_state = 31}, - [2968] = {.lex_state = 235, .external_lex_state = 31}, - [2969] = {.lex_state = 235, .external_lex_state = 31}, - [2970] = {.lex_state = 235, .external_lex_state = 31}, - [2971] = {.lex_state = 235, .external_lex_state = 31}, - [2972] = {.lex_state = 235, .external_lex_state = 31}, - [2973] = {.lex_state = 235, .external_lex_state = 31}, - [2974] = {.lex_state = 235, .external_lex_state = 31}, - [2975] = {.lex_state = 235, .external_lex_state = 31}, - [2976] = {.lex_state = 235, .external_lex_state = 31}, - [2977] = {.lex_state = 74, .external_lex_state = 48}, - [2978] = {.lex_state = 74, .external_lex_state = 48}, - [2979] = {.lex_state = 74, .external_lex_state = 48}, - [2980] = {.lex_state = 235, .external_lex_state = 31}, - [2981] = {.lex_state = 233, .external_lex_state = 54}, - [2982] = {.lex_state = 233, .external_lex_state = 54}, - [2983] = {.lex_state = 248, .external_lex_state = 41}, - [2984] = {.lex_state = 248, .external_lex_state = 43}, - [2985] = {.lex_state = 235, .external_lex_state = 31}, - [2986] = {.lex_state = 235, .external_lex_state = 31}, - [2987] = {.lex_state = 235, .external_lex_state = 31}, - [2988] = {.lex_state = 235, .external_lex_state = 31}, - [2989] = {.lex_state = 235, .external_lex_state = 31}, - [2990] = {.lex_state = 235, .external_lex_state = 31}, - [2991] = {.lex_state = 235, .external_lex_state = 31}, - [2992] = {.lex_state = 235, .external_lex_state = 31}, - [2993] = {.lex_state = 235, .external_lex_state = 31}, - [2994] = {.lex_state = 235, .external_lex_state = 31}, - [2995] = {.lex_state = 235, .external_lex_state = 31}, - [2996] = {.lex_state = 235, .external_lex_state = 31}, - [2997] = {.lex_state = 235, .external_lex_state = 31}, - [2998] = {.lex_state = 235, .external_lex_state = 31}, - [2999] = {.lex_state = 235, .external_lex_state = 31}, - [3000] = {.lex_state = 235, .external_lex_state = 31}, - [3001] = {.lex_state = 235, .external_lex_state = 31}, - [3002] = {.lex_state = 235, .external_lex_state = 31}, - [3003] = {.lex_state = 233, .external_lex_state = 54}, - [3004] = {.lex_state = 233, .external_lex_state = 54}, - [3005] = {.lex_state = 235, .external_lex_state = 31}, - [3006] = {.lex_state = 74, .external_lex_state = 48}, - [3007] = {.lex_state = 235, .external_lex_state = 31}, - [3008] = {.lex_state = 235, .external_lex_state = 31}, - [3009] = {.lex_state = 235, .external_lex_state = 31}, - [3010] = {.lex_state = 233, .external_lex_state = 54}, - [3011] = {.lex_state = 74, .external_lex_state = 48}, - [3012] = {.lex_state = 235, .external_lex_state = 31}, - [3013] = {.lex_state = 248, .external_lex_state = 43}, - [3014] = {.lex_state = 235, .external_lex_state = 31}, - [3015] = {.lex_state = 235, .external_lex_state = 31}, - [3016] = {.lex_state = 74, .external_lex_state = 48}, - [3017] = {.lex_state = 235, .external_lex_state = 31}, - [3018] = {.lex_state = 248, .external_lex_state = 43}, - [3019] = {.lex_state = 74, .external_lex_state = 48}, - [3020] = {.lex_state = 235, .external_lex_state = 31}, - [3021] = {.lex_state = 235, .external_lex_state = 31}, - [3022] = {.lex_state = 235, .external_lex_state = 31}, - [3023] = {.lex_state = 233, .external_lex_state = 55}, - [3024] = {.lex_state = 235, .external_lex_state = 31}, - [3025] = {.lex_state = 233, .external_lex_state = 54}, - [3026] = {.lex_state = 233, .external_lex_state = 54}, - [3027] = {.lex_state = 235, .external_lex_state = 31}, - [3028] = {.lex_state = 235, .external_lex_state = 31}, - [3029] = {.lex_state = 233, .external_lex_state = 54}, - [3030] = {.lex_state = 258, .external_lex_state = 56}, - [3031] = {.lex_state = 235, .external_lex_state = 31}, - [3032] = {.lex_state = 233, .external_lex_state = 54}, - [3033] = {.lex_state = 74, .external_lex_state = 48}, - [3034] = {.lex_state = 233, .external_lex_state = 54}, - [3035] = {.lex_state = 248, .external_lex_state = 43}, - [3036] = {.lex_state = 235, .external_lex_state = 31}, - [3037] = {.lex_state = 74, .external_lex_state = 48}, - [3038] = {.lex_state = 233, .external_lex_state = 55}, - [3039] = {.lex_state = 235, .external_lex_state = 31}, - [3040] = {.lex_state = 235, .external_lex_state = 31}, - [3041] = {.lex_state = 235, .external_lex_state = 31}, - [3042] = {.lex_state = 233, .external_lex_state = 54}, - [3043] = {.lex_state = 235, .external_lex_state = 31}, - [3044] = {.lex_state = 235, .external_lex_state = 22}, - [3045] = {.lex_state = 235, .external_lex_state = 31}, - [3046] = {.lex_state = 235, .external_lex_state = 31}, - [3047] = {.lex_state = 235, .external_lex_state = 31}, - [3048] = {.lex_state = 235, .external_lex_state = 31}, - [3049] = {.lex_state = 235, .external_lex_state = 22}, - [3050] = {.lex_state = 235, .external_lex_state = 31}, - [3051] = {.lex_state = 235, .external_lex_state = 31}, - [3052] = {.lex_state = 235, .external_lex_state = 31}, - [3053] = {.lex_state = 233, .external_lex_state = 55}, - [3054] = {.lex_state = 235, .external_lex_state = 31}, - [3055] = {.lex_state = 233, .external_lex_state = 54}, - [3056] = {.lex_state = 248, .external_lex_state = 40}, - [3057] = {.lex_state = 233, .external_lex_state = 56}, - [3058] = {.lex_state = 233, .external_lex_state = 56}, - [3059] = {.lex_state = 248, .external_lex_state = 40}, - [3060] = {.lex_state = 233, .external_lex_state = 55}, - [3061] = {.lex_state = 233, .external_lex_state = 55}, - [3062] = {.lex_state = 235, .external_lex_state = 22}, - [3063] = {.lex_state = 233, .external_lex_state = 55}, - [3064] = {.lex_state = 233, .external_lex_state = 54}, - [3065] = {.lex_state = 233, .external_lex_state = 54}, - [3066] = {.lex_state = 248, .external_lex_state = 40}, - [3067] = {.lex_state = 233, .external_lex_state = 55}, - [3068] = {.lex_state = 233, .external_lex_state = 55}, - [3069] = {.lex_state = 233, .external_lex_state = 55}, - [3070] = {.lex_state = 233, .external_lex_state = 54}, - [3071] = {.lex_state = 233, .external_lex_state = 55}, - [3072] = {.lex_state = 233, .external_lex_state = 55}, - [3073] = {.lex_state = 233, .external_lex_state = 54}, - [3074] = {.lex_state = 233, .external_lex_state = 54}, - [3075] = {.lex_state = 233, .external_lex_state = 55}, - [3076] = {.lex_state = 233, .external_lex_state = 55}, - [3077] = {.lex_state = 233, .external_lex_state = 55}, - [3078] = {.lex_state = 233, .external_lex_state = 54}, - [3079] = {.lex_state = 233, .external_lex_state = 55}, - [3080] = {.lex_state = 233, .external_lex_state = 54}, - [3081] = {.lex_state = 233, .external_lex_state = 55}, - [3082] = {.lex_state = 233, .external_lex_state = 55}, - [3083] = {.lex_state = 233, .external_lex_state = 54}, - [3084] = {.lex_state = 233, .external_lex_state = 54}, - [3085] = {.lex_state = 233, .external_lex_state = 54}, - [3086] = {.lex_state = 233, .external_lex_state = 54}, - [3087] = {.lex_state = 233, .external_lex_state = 55}, - [3088] = {.lex_state = 233, .external_lex_state = 54}, - [3089] = {.lex_state = 233, .external_lex_state = 55}, - [3090] = {.lex_state = 74, .external_lex_state = 30}, - [3091] = {.lex_state = 233, .external_lex_state = 54}, - [3092] = {.lex_state = 233, .external_lex_state = 54}, - [3093] = {.lex_state = 74, .external_lex_state = 30}, - [3094] = {.lex_state = 233, .external_lex_state = 56}, - [3095] = {.lex_state = 233, .external_lex_state = 56}, - [3096] = {.lex_state = 233, .external_lex_state = 56}, - [3097] = {.lex_state = 233, .external_lex_state = 54}, - [3098] = {.lex_state = 249, .external_lex_state = 57}, - [3099] = {.lex_state = 233, .external_lex_state = 56}, - [3100] = {.lex_state = 233, .external_lex_state = 54}, - [3101] = {.lex_state = 258, .external_lex_state = 41}, - [3102] = {.lex_state = 233, .external_lex_state = 56}, - [3103] = {.lex_state = 248, .external_lex_state = 40}, - [3104] = {.lex_state = 233, .external_lex_state = 56}, - [3105] = {.lex_state = 248, .external_lex_state = 40}, - [3106] = {.lex_state = 233, .external_lex_state = 56}, - [3107] = {.lex_state = 233, .external_lex_state = 56}, - [3108] = {.lex_state = 233, .external_lex_state = 54}, - [3109] = {.lex_state = 233, .external_lex_state = 56}, - [3110] = {.lex_state = 233, .external_lex_state = 54}, - [3111] = {.lex_state = 258, .external_lex_state = 41}, - [3112] = {.lex_state = 248, .external_lex_state = 40}, - [3113] = {.lex_state = 233, .external_lex_state = 55}, - [3114] = {.lex_state = 233, .external_lex_state = 55}, - [3115] = {.lex_state = 248, .external_lex_state = 40}, - [3116] = {.lex_state = 233, .external_lex_state = 55}, - [3117] = {.lex_state = 233, .external_lex_state = 56}, - [3118] = {.lex_state = 233, .external_lex_state = 56}, - [3119] = {.lex_state = 164, .external_lex_state = 44}, - [3120] = {.lex_state = 164, .external_lex_state = 44}, - [3121] = {.lex_state = 258, .external_lex_state = 43}, - [3122] = {.lex_state = 233, .external_lex_state = 56}, - [3123] = {.lex_state = 74, .external_lex_state = 30}, - [3124] = {.lex_state = 233, .external_lex_state = 56}, - [3125] = {.lex_state = 233, .external_lex_state = 56}, - [3126] = {.lex_state = 258, .external_lex_state = 43}, - [3127] = {.lex_state = 233, .external_lex_state = 56}, - [3128] = {.lex_state = 233, .external_lex_state = 56}, - [3129] = {.lex_state = 248, .external_lex_state = 40}, - [3130] = {.lex_state = 258, .external_lex_state = 41}, - [3131] = {.lex_state = 248, .external_lex_state = 43}, - [3132] = {.lex_state = 233, .external_lex_state = 56}, - [3133] = {.lex_state = 258, .external_lex_state = 43}, - [3134] = {.lex_state = 233, .external_lex_state = 56}, - [3135] = {.lex_state = 74, .external_lex_state = 30}, - [3136] = {.lex_state = 233, .external_lex_state = 56}, - [3137] = {.lex_state = 74, .external_lex_state = 30}, - [3138] = {.lex_state = 233, .external_lex_state = 56}, - [3139] = {.lex_state = 258, .external_lex_state = 43}, - [3140] = {.lex_state = 233, .external_lex_state = 56}, - [3141] = {.lex_state = 233, .external_lex_state = 56}, - [3142] = {.lex_state = 258, .external_lex_state = 43}, - [3143] = {.lex_state = 233, .external_lex_state = 56}, - [3144] = {.lex_state = 248, .external_lex_state = 43}, - [3145] = {.lex_state = 233, .external_lex_state = 56}, - [3146] = {.lex_state = 233, .external_lex_state = 56}, - [3147] = {.lex_state = 233, .external_lex_state = 56}, - [3148] = {.lex_state = 233, .external_lex_state = 56}, - [3149] = {.lex_state = 233, .external_lex_state = 56}, - [3150] = {.lex_state = 248, .external_lex_state = 41}, - [3151] = {.lex_state = 248, .external_lex_state = 40}, - [3152] = {.lex_state = 248, .external_lex_state = 40}, - [3153] = {.lex_state = 248, .external_lex_state = 40}, - [3154] = {.lex_state = 248, .external_lex_state = 40}, - [3155] = {.lex_state = 248, .external_lex_state = 40}, - [3156] = {.lex_state = 248, .external_lex_state = 40}, - [3157] = {.lex_state = 248, .external_lex_state = 43}, - [3158] = {.lex_state = 248, .external_lex_state = 41}, - [3159] = {.lex_state = 248, .external_lex_state = 40}, - [3160] = {.lex_state = 248, .external_lex_state = 40}, - [3161] = {.lex_state = 248, .external_lex_state = 43}, - [3162] = {.lex_state = 248, .external_lex_state = 40}, - [3163] = {.lex_state = 248, .external_lex_state = 40}, - [3164] = {.lex_state = 248, .external_lex_state = 40}, - [3165] = {.lex_state = 248, .external_lex_state = 43}, - [3166] = {.lex_state = 248, .external_lex_state = 41}, - [3167] = {.lex_state = 258, .external_lex_state = 43}, - [3168] = {.lex_state = 248, .external_lex_state = 40}, - [3169] = {.lex_state = 248, .external_lex_state = 43}, - [3170] = {.lex_state = 248, .external_lex_state = 43}, - [3171] = {.lex_state = 248, .external_lex_state = 43}, - [3172] = {.lex_state = 248, .external_lex_state = 43}, - [3173] = {.lex_state = 248, .external_lex_state = 43}, - [3174] = {.lex_state = 248, .external_lex_state = 43}, - [3175] = {.lex_state = 248, .external_lex_state = 43}, - [3176] = {.lex_state = 248, .external_lex_state = 43}, - [3177] = {.lex_state = 248, .external_lex_state = 43}, - [3178] = {.lex_state = 248, .external_lex_state = 43}, - [3179] = {.lex_state = 248, .external_lex_state = 43}, - [3180] = {.lex_state = 248, .external_lex_state = 43}, - [3181] = {.lex_state = 248, .external_lex_state = 43}, - [3182] = {.lex_state = 248, .external_lex_state = 43}, - [3183] = {.lex_state = 248, .external_lex_state = 43}, - [3184] = {.lex_state = 248, .external_lex_state = 43}, - [3185] = {.lex_state = 248, .external_lex_state = 43}, - [3186] = {.lex_state = 248, .external_lex_state = 43}, - [3187] = {.lex_state = 248, .external_lex_state = 43}, - [3188] = {.lex_state = 232, .external_lex_state = 51}, - [3189] = {.lex_state = 248, .external_lex_state = 43}, - [3190] = {.lex_state = 248, .external_lex_state = 43}, - [3191] = {.lex_state = 248, .external_lex_state = 43}, - [3192] = {.lex_state = 248, .external_lex_state = 43}, - [3193] = {.lex_state = 248, .external_lex_state = 43}, - [3194] = {.lex_state = 248, .external_lex_state = 43}, - [3195] = {.lex_state = 248, .external_lex_state = 43}, - [3196] = {.lex_state = 248, .external_lex_state = 43}, - [3197] = {.lex_state = 248, .external_lex_state = 43}, - [3198] = {.lex_state = 248, .external_lex_state = 43}, - [3199] = {.lex_state = 248, .external_lex_state = 43}, - [3200] = {.lex_state = 248, .external_lex_state = 43}, - [3201] = {.lex_state = 248, .external_lex_state = 43}, - [3202] = {.lex_state = 248, .external_lex_state = 43}, - [3203] = {.lex_state = 248, .external_lex_state = 43}, - [3204] = {.lex_state = 248, .external_lex_state = 43}, - [3205] = {.lex_state = 248, .external_lex_state = 43}, - [3206] = {.lex_state = 248, .external_lex_state = 43}, - [3207] = {.lex_state = 248, .external_lex_state = 43}, - [3208] = {.lex_state = 248, .external_lex_state = 43}, - [3209] = {.lex_state = 248, .external_lex_state = 43}, - [3210] = {.lex_state = 248, .external_lex_state = 43}, - [3211] = {.lex_state = 248, .external_lex_state = 43}, - [3212] = {.lex_state = 248, .external_lex_state = 43}, - [3213] = {.lex_state = 248, .external_lex_state = 43}, - [3214] = {.lex_state = 232, .external_lex_state = 51}, - [3215] = {.lex_state = 248, .external_lex_state = 43}, - [3216] = {.lex_state = 248, .external_lex_state = 43}, - [3217] = {.lex_state = 226, .external_lex_state = 58}, - [3218] = {.lex_state = 226, .external_lex_state = 58}, - [3219] = {.lex_state = 73, .external_lex_state = 52}, - [3220] = {.lex_state = 225}, - [3221] = {.lex_state = 73, .external_lex_state = 52}, - [3222] = {.lex_state = 73, .external_lex_state = 52}, - [3223] = {.lex_state = 73, .external_lex_state = 52}, - [3224] = {.lex_state = 225}, - [3225] = {.lex_state = 73, .external_lex_state = 52}, - [3226] = {.lex_state = 73, .external_lex_state = 52}, - [3227] = {.lex_state = 73, .external_lex_state = 52}, - [3228] = {.lex_state = 73, .external_lex_state = 52}, - [3229] = {.lex_state = 254}, - [3230] = {.lex_state = 254}, - [3231] = {.lex_state = 254}, - [3232] = {.lex_state = 254}, - [3233] = {.lex_state = 254}, - [3234] = {.lex_state = 254}, - [3235] = {.lex_state = 254}, - [3236] = {.lex_state = 254}, - [3237] = {.lex_state = 254}, - [3238] = {.lex_state = 254}, - [3239] = {.lex_state = 254}, - [3240] = {.lex_state = 254}, - [3241] = {.lex_state = 254}, - [3242] = {.lex_state = 254}, - [3243] = {.lex_state = 254}, - [3244] = {.lex_state = 254}, - [3245] = {.lex_state = 254}, - [3246] = {.lex_state = 254}, - [3247] = {.lex_state = 254}, - [3248] = {.lex_state = 254}, - [3249] = {.lex_state = 254}, - [3250] = {.lex_state = 254}, - [3251] = {.lex_state = 254}, - [3252] = {.lex_state = 254}, - [3253] = {.lex_state = 254}, - [3254] = {.lex_state = 254}, - [3255] = {.lex_state = 254}, - [3256] = {.lex_state = 254}, - [3257] = {.lex_state = 254}, - [3258] = {.lex_state = 254}, - [3259] = {.lex_state = 254}, - [3260] = {.lex_state = 254}, - [3261] = {.lex_state = 254}, - [3262] = {.lex_state = 254}, - [3263] = {.lex_state = 254}, - [3264] = {.lex_state = 254}, - [3265] = {.lex_state = 254}, - [3266] = {.lex_state = 254}, - [3267] = {.lex_state = 73, .external_lex_state = 59}, - [3268] = {.lex_state = 254}, - [3269] = {.lex_state = 254}, - [3270] = {.lex_state = 254}, - [3271] = {.lex_state = 254}, - [3272] = {.lex_state = 254}, - [3273] = {.lex_state = 254}, - [3274] = {.lex_state = 254}, - [3275] = {.lex_state = 254}, - [3276] = {.lex_state = 254}, - [3277] = {.lex_state = 254}, - [3278] = {.lex_state = 254}, - [3279] = {.lex_state = 254}, - [3280] = {.lex_state = 254}, - [3281] = {.lex_state = 254}, - [3282] = {.lex_state = 254}, - [3283] = {.lex_state = 254}, - [3284] = {.lex_state = 254}, - [3285] = {.lex_state = 254}, - [3286] = {.lex_state = 254}, - [3287] = {.lex_state = 254}, - [3288] = {.lex_state = 254}, - [3289] = {.lex_state = 254}, - [3290] = {.lex_state = 254}, - [3291] = {.lex_state = 254}, - [3292] = {.lex_state = 254}, - [3293] = {.lex_state = 254}, - [3294] = {.lex_state = 254}, - [3295] = {.lex_state = 254}, - [3296] = {.lex_state = 254}, - [3297] = {.lex_state = 254}, - [3298] = {.lex_state = 254}, - [3299] = {.lex_state = 254}, - [3300] = {.lex_state = 254}, - [3301] = {.lex_state = 254}, - [3302] = {.lex_state = 254}, - [3303] = {.lex_state = 254}, - [3304] = {.lex_state = 254}, - [3305] = {.lex_state = 254}, - [3306] = {.lex_state = 254}, - [3307] = {.lex_state = 254}, - [3308] = {.lex_state = 254}, - [3309] = {.lex_state = 254}, - [3310] = {.lex_state = 254}, - [3311] = {.lex_state = 254}, - [3312] = {.lex_state = 254}, - [3313] = {.lex_state = 254}, - [3314] = {.lex_state = 254}, - [3315] = {.lex_state = 254}, - [3316] = {.lex_state = 254}, - [3317] = {.lex_state = 254}, - [3318] = {.lex_state = 254}, - [3319] = {.lex_state = 254}, - [3320] = {.lex_state = 254}, - [3321] = {.lex_state = 227}, - [3322] = {.lex_state = 227}, - [3323] = {.lex_state = 228}, - [3324] = {.lex_state = 227}, - [3325] = {.lex_state = 227}, - [3326] = {.lex_state = 227}, - [3327] = {.lex_state = 227}, - [3328] = {.lex_state = 228}, - [3329] = {.lex_state = 227}, - [3330] = {.lex_state = 227}, - [3331] = {.lex_state = 227}, - [3332] = {.lex_state = 227}, - [3333] = {.lex_state = 228}, - [3334] = {.lex_state = 228}, - [3335] = {.lex_state = 228}, - [3336] = {.lex_state = 73, .external_lex_state = 59}, - [3337] = {.lex_state = 73, .external_lex_state = 59}, - [3338] = {.lex_state = 228}, - [3339] = {.lex_state = 227}, - [3340] = {.lex_state = 228}, + [1501] = {.lex_state = 237, .external_lex_state = 23}, + [1502] = {.lex_state = 214, .external_lex_state = 24}, + [1503] = {.lex_state = 240, .external_lex_state = 27}, + [1504] = {.lex_state = 240, .external_lex_state = 27}, + [1505] = {.lex_state = 214, .external_lex_state = 24}, + [1506] = {.lex_state = 430, .external_lex_state = 10}, + [1507] = {.lex_state = 214, .external_lex_state = 24}, + [1508] = {.lex_state = 213, .external_lex_state = 24}, + [1509] = {.lex_state = 180, .external_lex_state = 25}, + [1510] = {.lex_state = 240, .external_lex_state = 27}, + [1511] = {.lex_state = 214, .external_lex_state = 24}, + [1512] = {.lex_state = 240, .external_lex_state = 27}, + [1513] = {.lex_state = 240, .external_lex_state = 27}, + [1514] = {.lex_state = 191, .external_lex_state = 2}, + [1515] = {.lex_state = 218, .external_lex_state = 17}, + [1516] = {.lex_state = 191, .external_lex_state = 2}, + [1517] = {.lex_state = 240, .external_lex_state = 27}, + [1518] = {.lex_state = 214, .external_lex_state = 24}, + [1519] = {.lex_state = 218, .external_lex_state = 17}, + [1520] = {.lex_state = 212, .external_lex_state = 14}, + [1521] = {.lex_state = 218, .external_lex_state = 17}, + [1522] = {.lex_state = 175, .external_lex_state = 20}, + [1523] = {.lex_state = 175, .external_lex_state = 20}, + [1524] = {.lex_state = 218, .external_lex_state = 17}, + [1525] = {.lex_state = 244, .external_lex_state = 26}, + [1526] = {.lex_state = 244, .external_lex_state = 26}, + [1527] = {.lex_state = 244, .external_lex_state = 26}, + [1528] = {.lex_state = 218, .external_lex_state = 17}, + [1529] = {.lex_state = 244, .external_lex_state = 26}, + [1530] = {.lex_state = 238, .external_lex_state = 26}, + [1531] = {.lex_state = 218, .external_lex_state = 17}, + [1532] = {.lex_state = 218, .external_lex_state = 17}, + [1533] = {.lex_state = 218, .external_lex_state = 17}, + [1534] = {.lex_state = 240, .external_lex_state = 27}, + [1535] = {.lex_state = 244, .external_lex_state = 26}, + [1536] = {.lex_state = 244, .external_lex_state = 26}, + [1537] = {.lex_state = 244, .external_lex_state = 26}, + [1538] = {.lex_state = 218, .external_lex_state = 17}, + [1539] = {.lex_state = 218, .external_lex_state = 17}, + [1540] = {.lex_state = 218, .external_lex_state = 18}, + [1541] = {.lex_state = 214, .external_lex_state = 24}, + [1542] = {.lex_state = 218, .external_lex_state = 17}, + [1543] = {.lex_state = 244, .external_lex_state = 26}, + [1544] = {.lex_state = 240, .external_lex_state = 27}, + [1545] = {.lex_state = 212, .external_lex_state = 28}, + [1546] = {.lex_state = 240, .external_lex_state = 27}, + [1547] = {.lex_state = 239, .external_lex_state = 13}, + [1548] = {.lex_state = 218, .external_lex_state = 17}, + [1549] = {.lex_state = 240, .external_lex_state = 27}, + [1550] = {.lex_state = 218, .external_lex_state = 18}, + [1551] = {.lex_state = 244, .external_lex_state = 26}, + [1552] = {.lex_state = 218, .external_lex_state = 17}, + [1553] = {.lex_state = 240, .external_lex_state = 27}, + [1554] = {.lex_state = 240, .external_lex_state = 27}, + [1555] = {.lex_state = 218, .external_lex_state = 17}, + [1556] = {.lex_state = 240, .external_lex_state = 27}, + [1557] = {.lex_state = 218, .external_lex_state = 17}, + [1558] = {.lex_state = 244, .external_lex_state = 29}, + [1559] = {.lex_state = 244, .external_lex_state = 29}, + [1560] = {.lex_state = 216, .external_lex_state = 14}, + [1561] = {.lex_state = 214, .external_lex_state = 24}, + [1562] = {.lex_state = 214, .external_lex_state = 24}, + [1563] = {.lex_state = 240, .external_lex_state = 27}, + [1564] = {.lex_state = 244, .external_lex_state = 26}, + [1565] = {.lex_state = 240, .external_lex_state = 27}, + [1566] = {.lex_state = 240, .external_lex_state = 27}, + [1567] = {.lex_state = 244, .external_lex_state = 26}, + [1568] = {.lex_state = 218, .external_lex_state = 17}, + [1569] = {.lex_state = 240, .external_lex_state = 27}, + [1570] = {.lex_state = 240, .external_lex_state = 27}, + [1571] = {.lex_state = 213, .external_lex_state = 14}, + [1572] = {.lex_state = 244, .external_lex_state = 26}, + [1573] = {.lex_state = 240, .external_lex_state = 27}, + [1574] = {.lex_state = 238, .external_lex_state = 26}, + [1575] = {.lex_state = 238, .external_lex_state = 26}, + [1576] = {.lex_state = 238, .external_lex_state = 26}, + [1577] = {.lex_state = 244, .external_lex_state = 29}, + [1578] = {.lex_state = 240, .external_lex_state = 27}, + [1579] = {.lex_state = 238, .external_lex_state = 26}, + [1580] = {.lex_state = 238, .external_lex_state = 26}, + [1581] = {.lex_state = 218, .external_lex_state = 17}, + [1582] = {.lex_state = 218, .external_lex_state = 17}, + [1583] = {.lex_state = 238, .external_lex_state = 26}, + [1584] = {.lex_state = 218, .external_lex_state = 17}, + [1585] = {.lex_state = 214, .external_lex_state = 30}, + [1586] = {.lex_state = 214, .external_lex_state = 30}, + [1587] = {.lex_state = 218, .external_lex_state = 17}, + [1588] = {.lex_state = 239, .external_lex_state = 13}, + [1589] = {.lex_state = 244, .external_lex_state = 26}, + [1590] = {.lex_state = 244, .external_lex_state = 26}, + [1591] = {.lex_state = 238, .external_lex_state = 26}, + [1592] = {.lex_state = 244, .external_lex_state = 26}, + [1593] = {.lex_state = 239, .external_lex_state = 13}, + [1594] = {.lex_state = 218, .external_lex_state = 17}, + [1595] = {.lex_state = 240, .external_lex_state = 27}, + [1596] = {.lex_state = 214, .external_lex_state = 30}, + [1597] = {.lex_state = 244, .external_lex_state = 26}, + [1598] = {.lex_state = 240, .external_lex_state = 27}, + [1599] = {.lex_state = 244, .external_lex_state = 26}, + [1600] = {.lex_state = 244, .external_lex_state = 26}, + [1601] = {.lex_state = 244, .external_lex_state = 29}, + [1602] = {.lex_state = 240, .external_lex_state = 27}, + [1603] = {.lex_state = 244, .external_lex_state = 26}, + [1604] = {.lex_state = 214, .external_lex_state = 30}, + [1605] = {.lex_state = 238, .external_lex_state = 26}, + [1606] = {.lex_state = 218, .external_lex_state = 17}, + [1607] = {.lex_state = 218, .external_lex_state = 17}, + [1608] = {.lex_state = 240, .external_lex_state = 27}, + [1609] = {.lex_state = 214, .external_lex_state = 14}, + [1610] = {.lex_state = 213, .external_lex_state = 14}, + [1611] = {.lex_state = 238, .external_lex_state = 26}, + [1612] = {.lex_state = 218, .external_lex_state = 17}, + [1613] = {.lex_state = 239, .external_lex_state = 13}, + [1614] = {.lex_state = 244, .external_lex_state = 29}, + [1615] = {.lex_state = 244, .external_lex_state = 26}, + [1616] = {.lex_state = 218, .external_lex_state = 17}, + [1617] = {.lex_state = 244, .external_lex_state = 26}, + [1618] = {.lex_state = 240, .external_lex_state = 27}, + [1619] = {.lex_state = 244, .external_lex_state = 29}, + [1620] = {.lex_state = 244, .external_lex_state = 26}, + [1621] = {.lex_state = 238, .external_lex_state = 26}, + [1622] = {.lex_state = 244, .external_lex_state = 29}, + [1623] = {.lex_state = 214, .external_lex_state = 28}, + [1624] = {.lex_state = 238, .external_lex_state = 26}, + [1625] = {.lex_state = 238, .external_lex_state = 26}, + [1626] = {.lex_state = 239, .external_lex_state = 13}, + [1627] = {.lex_state = 214, .external_lex_state = 28}, + [1628] = {.lex_state = 214, .external_lex_state = 28}, + [1629] = {.lex_state = 214, .external_lex_state = 28}, + [1630] = {.lex_state = 214, .external_lex_state = 28}, + [1631] = {.lex_state = 214, .external_lex_state = 14}, + [1632] = {.lex_state = 213, .external_lex_state = 14}, + [1633] = {.lex_state = 214, .external_lex_state = 14}, + [1634] = {.lex_state = 214, .external_lex_state = 14}, + [1635] = {.lex_state = 214, .external_lex_state = 28}, + [1636] = {.lex_state = 214, .external_lex_state = 14}, + [1637] = {.lex_state = 244, .external_lex_state = 29}, + [1638] = {.lex_state = 214, .external_lex_state = 28}, + [1639] = {.lex_state = 238, .external_lex_state = 26}, + [1640] = {.lex_state = 243, .external_lex_state = 12}, + [1641] = {.lex_state = 244, .external_lex_state = 29}, + [1642] = {.lex_state = 214, .external_lex_state = 28}, + [1643] = {.lex_state = 214, .external_lex_state = 28}, + [1644] = {.lex_state = 218, .external_lex_state = 17}, + [1645] = {.lex_state = 214, .external_lex_state = 28}, + [1646] = {.lex_state = 244, .external_lex_state = 29}, + [1647] = {.lex_state = 218, .external_lex_state = 17}, + [1648] = {.lex_state = 238, .external_lex_state = 26}, + [1649] = {.lex_state = 218, .external_lex_state = 17}, + [1650] = {.lex_state = 218, .external_lex_state = 17}, + [1651] = {.lex_state = 218, .external_lex_state = 17}, + [1652] = {.lex_state = 214, .external_lex_state = 28}, + [1653] = {.lex_state = 218, .external_lex_state = 17}, + [1654] = {.lex_state = 214, .external_lex_state = 28}, + [1655] = {.lex_state = 238, .external_lex_state = 26}, + [1656] = {.lex_state = 214, .external_lex_state = 28}, + [1657] = {.lex_state = 244, .external_lex_state = 29}, + [1658] = {.lex_state = 214, .external_lex_state = 28}, + [1659] = {.lex_state = 238, .external_lex_state = 26}, + [1660] = {.lex_state = 214, .external_lex_state = 28}, + [1661] = {.lex_state = 214, .external_lex_state = 28}, + [1662] = {.lex_state = 214, .external_lex_state = 28}, + [1663] = {.lex_state = 239, .external_lex_state = 13}, + [1664] = {.lex_state = 214, .external_lex_state = 28}, + [1665] = {.lex_state = 214, .external_lex_state = 28}, + [1666] = {.lex_state = 238, .external_lex_state = 26}, + [1667] = {.lex_state = 238, .external_lex_state = 26}, + [1668] = {.lex_state = 214, .external_lex_state = 28}, + [1669] = {.lex_state = 238, .external_lex_state = 26}, + [1670] = {.lex_state = 218, .external_lex_state = 17}, + [1671] = {.lex_state = 214, .external_lex_state = 28}, + [1672] = {.lex_state = 239, .external_lex_state = 13}, + [1673] = {.lex_state = 214, .external_lex_state = 28}, + [1674] = {.lex_state = 238, .external_lex_state = 26}, + [1675] = {.lex_state = 214, .external_lex_state = 28}, + [1676] = {.lex_state = 218, .external_lex_state = 17}, + [1677] = {.lex_state = 214, .external_lex_state = 14}, + [1678] = {.lex_state = 244, .external_lex_state = 29}, + [1679] = {.lex_state = 244, .external_lex_state = 29}, + [1680] = {.lex_state = 238, .external_lex_state = 26}, + [1681] = {.lex_state = 214, .external_lex_state = 28}, + [1682] = {.lex_state = 214, .external_lex_state = 28}, + [1683] = {.lex_state = 214, .external_lex_state = 28}, + [1684] = {.lex_state = 214, .external_lex_state = 28}, + [1685] = {.lex_state = 214, .external_lex_state = 28}, + [1686] = {.lex_state = 238, .external_lex_state = 26}, + [1687] = {.lex_state = 238, .external_lex_state = 26}, + [1688] = {.lex_state = 214, .external_lex_state = 14}, + [1689] = {.lex_state = 214, .external_lex_state = 28}, + [1690] = {.lex_state = 214, .external_lex_state = 28}, + [1691] = {.lex_state = 218, .external_lex_state = 17}, + [1692] = {.lex_state = 244, .external_lex_state = 29}, + [1693] = {.lex_state = 214, .external_lex_state = 28}, + [1694] = {.lex_state = 218, .external_lex_state = 17}, + [1695] = {.lex_state = 214, .external_lex_state = 28}, + [1696] = {.lex_state = 241, .external_lex_state = 15}, + [1697] = {.lex_state = 244, .external_lex_state = 29}, + [1698] = {.lex_state = 214, .external_lex_state = 28}, + [1699] = {.lex_state = 244, .external_lex_state = 29}, + [1700] = {.lex_state = 244, .external_lex_state = 29}, + [1701] = {.lex_state = 214, .external_lex_state = 28}, + [1702] = {.lex_state = 214, .external_lex_state = 28}, + [1703] = {.lex_state = 134, .external_lex_state = 31}, + [1704] = {.lex_state = 238, .external_lex_state = 26}, + [1705] = {.lex_state = 134, .external_lex_state = 31}, + [1706] = {.lex_state = 214, .external_lex_state = 28}, + [1707] = {.lex_state = 243, .external_lex_state = 12}, + [1708] = {.lex_state = 214, .external_lex_state = 28}, + [1709] = {.lex_state = 214, .external_lex_state = 28}, + [1710] = {.lex_state = 244, .external_lex_state = 29}, + [1711] = {.lex_state = 244, .external_lex_state = 29}, + [1712] = {.lex_state = 244, .external_lex_state = 29}, + [1713] = {.lex_state = 214, .external_lex_state = 28}, + [1714] = {.lex_state = 243, .external_lex_state = 12}, + [1715] = {.lex_state = 218, .external_lex_state = 17}, + [1716] = {.lex_state = 214, .external_lex_state = 28}, + [1717] = {.lex_state = 214, .external_lex_state = 28}, + [1718] = {.lex_state = 214, .external_lex_state = 28}, + [1719] = {.lex_state = 214, .external_lex_state = 28}, + [1720] = {.lex_state = 214, .external_lex_state = 28}, + [1721] = {.lex_state = 214, .external_lex_state = 28}, + [1722] = {.lex_state = 214, .external_lex_state = 28}, + [1723] = {.lex_state = 238, .external_lex_state = 26}, + [1724] = {.lex_state = 214, .external_lex_state = 28}, + [1725] = {.lex_state = 214, .external_lex_state = 28}, + [1726] = {.lex_state = 214, .external_lex_state = 28}, + [1727] = {.lex_state = 214, .external_lex_state = 28}, + [1728] = {.lex_state = 214, .external_lex_state = 28}, + [1729] = {.lex_state = 241, .external_lex_state = 15}, + [1730] = {.lex_state = 214, .external_lex_state = 28}, + [1731] = {.lex_state = 214, .external_lex_state = 28}, + [1732] = {.lex_state = 238, .external_lex_state = 26}, + [1733] = {.lex_state = 214, .external_lex_state = 28}, + [1734] = {.lex_state = 214, .external_lex_state = 28}, + [1735] = {.lex_state = 214, .external_lex_state = 28}, + [1736] = {.lex_state = 244, .external_lex_state = 29}, + [1737] = {.lex_state = 214, .external_lex_state = 28}, + [1738] = {.lex_state = 214, .external_lex_state = 28}, + [1739] = {.lex_state = 218, .external_lex_state = 17}, + [1740] = {.lex_state = 214, .external_lex_state = 28}, + [1741] = {.lex_state = 244, .external_lex_state = 29}, + [1742] = {.lex_state = 244, .external_lex_state = 29}, + [1743] = {.lex_state = 214, .external_lex_state = 28}, + [1744] = {.lex_state = 218, .external_lex_state = 18}, + [1745] = {.lex_state = 244, .external_lex_state = 29}, + [1746] = {.lex_state = 214, .external_lex_state = 28}, + [1747] = {.lex_state = 214, .external_lex_state = 28}, + [1748] = {.lex_state = 244, .external_lex_state = 29}, + [1749] = {.lex_state = 239, .external_lex_state = 13}, + [1750] = {.lex_state = 241, .external_lex_state = 15}, + [1751] = {.lex_state = 214, .external_lex_state = 28}, + [1752] = {.lex_state = 214, .external_lex_state = 28}, + [1753] = {.lex_state = 214, .external_lex_state = 28}, + [1754] = {.lex_state = 238, .external_lex_state = 26}, + [1755] = {.lex_state = 238, .external_lex_state = 26}, + [1756] = {.lex_state = 214, .external_lex_state = 28}, + [1757] = {.lex_state = 213, .external_lex_state = 14}, + [1758] = {.lex_state = 242, .external_lex_state = 12}, + [1759] = {.lex_state = 241, .external_lex_state = 15}, + [1760] = {.lex_state = 142, .external_lex_state = 31}, + [1761] = {.lex_state = 243, .external_lex_state = 12}, + [1762] = {.lex_state = 241, .external_lex_state = 15}, + [1763] = {.lex_state = 213, .external_lex_state = 14}, + [1764] = {.lex_state = 243, .external_lex_state = 12}, + [1765] = {.lex_state = 243, .external_lex_state = 12}, + [1766] = {.lex_state = 214, .external_lex_state = 14}, + [1767] = {.lex_state = 142, .external_lex_state = 31}, + [1768] = {.lex_state = 242, .external_lex_state = 12}, + [1769] = {.lex_state = 218, .external_lex_state = 18}, + [1770] = {.lex_state = 243, .external_lex_state = 16}, + [1771] = {.lex_state = 213, .external_lex_state = 14}, + [1772] = {.lex_state = 241, .external_lex_state = 15}, + [1773] = {.lex_state = 218, .external_lex_state = 18}, + [1774] = {.lex_state = 214, .external_lex_state = 14}, + [1775] = {.lex_state = 213, .external_lex_state = 14}, + [1776] = {.lex_state = 214, .external_lex_state = 14}, + [1777] = {.lex_state = 213, .external_lex_state = 14}, + [1778] = {.lex_state = 134, .external_lex_state = 32}, + [1779] = {.lex_state = 134, .external_lex_state = 32}, + [1780] = {.lex_state = 214, .external_lex_state = 14}, + [1781] = {.lex_state = 242, .external_lex_state = 12}, + [1782] = {.lex_state = 213, .external_lex_state = 14}, + [1783] = {.lex_state = 214, .external_lex_state = 14}, + [1784] = {.lex_state = 218, .external_lex_state = 18}, + [1785] = {.lex_state = 213, .external_lex_state = 14}, + [1786] = {.lex_state = 214, .external_lex_state = 14}, + [1787] = {.lex_state = 213, .external_lex_state = 14}, + [1788] = {.lex_state = 218, .external_lex_state = 18}, + [1789] = {.lex_state = 218, .external_lex_state = 18}, + [1790] = {.lex_state = 218, .external_lex_state = 18}, + [1791] = {.lex_state = 213, .external_lex_state = 14}, + [1792] = {.lex_state = 214, .external_lex_state = 14}, + [1793] = {.lex_state = 218, .external_lex_state = 18}, + [1794] = {.lex_state = 213, .external_lex_state = 30}, + [1795] = {.lex_state = 213, .external_lex_state = 30}, + [1796] = {.lex_state = 241, .external_lex_state = 15}, + [1797] = {.lex_state = 213, .external_lex_state = 14}, + [1798] = {.lex_state = 213, .external_lex_state = 14}, + [1799] = {.lex_state = 214, .external_lex_state = 14}, + [1800] = {.lex_state = 218, .external_lex_state = 18}, + [1801] = {.lex_state = 213, .external_lex_state = 14}, + [1802] = {.lex_state = 213, .external_lex_state = 30}, + [1803] = {.lex_state = 213, .external_lex_state = 14}, + [1804] = {.lex_state = 214, .external_lex_state = 14}, + [1805] = {.lex_state = 213, .external_lex_state = 14}, + [1806] = {.lex_state = 214, .external_lex_state = 14}, + [1807] = {.lex_state = 213, .external_lex_state = 30}, + [1808] = {.lex_state = 243, .external_lex_state = 16}, + [1809] = {.lex_state = 214, .external_lex_state = 14}, + [1810] = {.lex_state = 243, .external_lex_state = 12}, + [1811] = {.lex_state = 214, .external_lex_state = 14}, + [1812] = {.lex_state = 214, .external_lex_state = 14}, + [1813] = {.lex_state = 213, .external_lex_state = 14}, + [1814] = {.lex_state = 213, .external_lex_state = 14}, + [1815] = {.lex_state = 242, .external_lex_state = 12}, + [1816] = {.lex_state = 214, .external_lex_state = 28}, + [1817] = {.lex_state = 214, .external_lex_state = 14}, + [1818] = {.lex_state = 213, .external_lex_state = 14}, + [1819] = {.lex_state = 218, .external_lex_state = 18}, + [1820] = {.lex_state = 213, .external_lex_state = 14}, + [1821] = {.lex_state = 218, .external_lex_state = 18}, + [1822] = {.lex_state = 214, .external_lex_state = 14}, + [1823] = {.lex_state = 214, .external_lex_state = 14}, + [1824] = {.lex_state = 218, .external_lex_state = 18}, + [1825] = {.lex_state = 214, .external_lex_state = 14}, + [1826] = {.lex_state = 217, .external_lex_state = 28}, + [1827] = {.lex_state = 213, .external_lex_state = 14}, + [1828] = {.lex_state = 245, .external_lex_state = 33}, + [1829] = {.lex_state = 213, .external_lex_state = 28}, + [1830] = {.lex_state = 213, .external_lex_state = 28}, + [1831] = {.lex_state = 245, .external_lex_state = 33}, + [1832] = {.lex_state = 145, .external_lex_state = 31}, + [1833] = {.lex_state = 245, .external_lex_state = 33}, + [1834] = {.lex_state = 242, .external_lex_state = 12}, + [1835] = {.lex_state = 245, .external_lex_state = 33}, + [1836] = {.lex_state = 145, .external_lex_state = 31}, + [1837] = {.lex_state = 213, .external_lex_state = 28}, + [1838] = {.lex_state = 242, .external_lex_state = 12}, + [1839] = {.lex_state = 213, .external_lex_state = 28}, + [1840] = {.lex_state = 245, .external_lex_state = 33}, + [1841] = {.lex_state = 142, .external_lex_state = 32}, + [1842] = {.lex_state = 213, .external_lex_state = 28}, + [1843] = {.lex_state = 213, .external_lex_state = 28}, + [1844] = {.lex_state = 242, .external_lex_state = 12}, + [1845] = {.lex_state = 214, .external_lex_state = 28}, + [1846] = {.lex_state = 214, .external_lex_state = 28}, + [1847] = {.lex_state = 214, .external_lex_state = 14}, + [1848] = {.lex_state = 214, .external_lex_state = 14}, + [1849] = {.lex_state = 245, .external_lex_state = 33}, + [1850] = {.lex_state = 245, .external_lex_state = 33}, + [1851] = {.lex_state = 213, .external_lex_state = 28}, + [1852] = {.lex_state = 213, .external_lex_state = 28}, + [1853] = {.lex_state = 245, .external_lex_state = 33}, + [1854] = {.lex_state = 213, .external_lex_state = 28}, + [1855] = {.lex_state = 213, .external_lex_state = 28}, + [1856] = {.lex_state = 213, .external_lex_state = 28}, + [1857] = {.lex_state = 213, .external_lex_state = 28}, + [1858] = {.lex_state = 242, .external_lex_state = 12}, + [1859] = {.lex_state = 245, .external_lex_state = 33}, + [1860] = {.lex_state = 214, .external_lex_state = 14}, + [1861] = {.lex_state = 245, .external_lex_state = 33}, + [1862] = {.lex_state = 213, .external_lex_state = 28}, + [1863] = {.lex_state = 213, .external_lex_state = 28}, + [1864] = {.lex_state = 213, .external_lex_state = 28}, + [1865] = {.lex_state = 213, .external_lex_state = 28}, + [1866] = {.lex_state = 242, .external_lex_state = 12}, + [1867] = {.lex_state = 245, .external_lex_state = 33}, + [1868] = {.lex_state = 242, .external_lex_state = 12}, + [1869] = {.lex_state = 213, .external_lex_state = 28}, + [1870] = {.lex_state = 242, .external_lex_state = 12}, + [1871] = {.lex_state = 214, .external_lex_state = 14}, + [1872] = {.lex_state = 425, .external_lex_state = 31}, + [1873] = {.lex_state = 213, .external_lex_state = 28}, + [1874] = {.lex_state = 243, .external_lex_state = 16}, + [1875] = {.lex_state = 425, .external_lex_state = 31}, + [1876] = {.lex_state = 213, .external_lex_state = 28}, + [1877] = {.lex_state = 242, .external_lex_state = 12}, + [1878] = {.lex_state = 213, .external_lex_state = 28}, + [1879] = {.lex_state = 213, .external_lex_state = 28}, + [1880] = {.lex_state = 245, .external_lex_state = 33}, + [1881] = {.lex_state = 213, .external_lex_state = 28}, + [1882] = {.lex_state = 213, .external_lex_state = 28}, + [1883] = {.lex_state = 213, .external_lex_state = 28}, + [1884] = {.lex_state = 213, .external_lex_state = 28}, + [1885] = {.lex_state = 151, .external_lex_state = 31}, + [1886] = {.lex_state = 142, .external_lex_state = 32}, + [1887] = {.lex_state = 151, .external_lex_state = 31}, + [1888] = {.lex_state = 234, .external_lex_state = 33}, + [1889] = {.lex_state = 234, .external_lex_state = 33}, + [1890] = {.lex_state = 234, .external_lex_state = 33}, + [1891] = {.lex_state = 234, .external_lex_state = 33}, + [1892] = {.lex_state = 234, .external_lex_state = 33}, + [1893] = {.lex_state = 234, .external_lex_state = 33}, + [1894] = {.lex_state = 151, .external_lex_state = 32}, + [1895] = {.lex_state = 151, .external_lex_state = 32}, + [1896] = {.lex_state = 234, .external_lex_state = 33}, + [1897] = {.lex_state = 234, .external_lex_state = 33}, + [1898] = {.lex_state = 425, .external_lex_state = 32}, + [1899] = {.lex_state = 234, .external_lex_state = 33}, + [1900] = {.lex_state = 234, .external_lex_state = 33}, + [1901] = {.lex_state = 181, .external_lex_state = 34}, + [1902] = {.lex_state = 425, .external_lex_state = 32}, + [1903] = {.lex_state = 234, .external_lex_state = 33}, + [1904] = {.lex_state = 145, .external_lex_state = 32}, + [1905] = {.lex_state = 181, .external_lex_state = 34}, + [1906] = {.lex_state = 67, .external_lex_state = 35}, + [1907] = {.lex_state = 145, .external_lex_state = 32}, + [1908] = {.lex_state = 254, .external_lex_state = 36}, + [1909] = {.lex_state = 234, .external_lex_state = 33}, + [1910] = {.lex_state = 425, .external_lex_state = 31}, + [1911] = {.lex_state = 234, .external_lex_state = 33}, + [1912] = {.lex_state = 181, .external_lex_state = 34}, + [1913] = {.lex_state = 234, .external_lex_state = 33}, + [1914] = {.lex_state = 234, .external_lex_state = 33}, + [1915] = {.lex_state = 181, .external_lex_state = 34}, + [1916] = {.lex_state = 234, .external_lex_state = 33}, + [1917] = {.lex_state = 425, .external_lex_state = 31}, + [1918] = {.lex_state = 234, .external_lex_state = 33}, + [1919] = {.lex_state = 234, .external_lex_state = 33}, + [1920] = {.lex_state = 67, .external_lex_state = 35}, + [1921] = {.lex_state = 250, .external_lex_state = 37}, + [1922] = {.lex_state = 169, .external_lex_state = 34}, + [1923] = {.lex_state = 67, .external_lex_state = 35}, + [1924] = {.lex_state = 67, .external_lex_state = 35}, + [1925] = {.lex_state = 67, .external_lex_state = 35}, + [1926] = {.lex_state = 250, .external_lex_state = 37}, + [1927] = {.lex_state = 250, .external_lex_state = 37}, + [1928] = {.lex_state = 67, .external_lex_state = 35}, + [1929] = {.lex_state = 250, .external_lex_state = 37}, + [1930] = {.lex_state = 250, .external_lex_state = 37}, + [1931] = {.lex_state = 67, .external_lex_state = 35}, + [1932] = {.lex_state = 67, .external_lex_state = 35}, + [1933] = {.lex_state = 250, .external_lex_state = 37}, + [1934] = {.lex_state = 250, .external_lex_state = 37}, + [1935] = {.lex_state = 254, .external_lex_state = 36}, + [1936] = {.lex_state = 67, .external_lex_state = 35}, + [1937] = {.lex_state = 254, .external_lex_state = 36}, + [1938] = {.lex_state = 250, .external_lex_state = 37}, + [1939] = {.lex_state = 250, .external_lex_state = 37}, + [1940] = {.lex_state = 250, .external_lex_state = 37}, + [1941] = {.lex_state = 250, .external_lex_state = 37}, + [1942] = {.lex_state = 250, .external_lex_state = 37}, + [1943] = {.lex_state = 250, .external_lex_state = 37}, + [1944] = {.lex_state = 67, .external_lex_state = 35}, + [1945] = {.lex_state = 250, .external_lex_state = 37}, + [1946] = {.lex_state = 169, .external_lex_state = 34}, + [1947] = {.lex_state = 67, .external_lex_state = 35}, + [1948] = {.lex_state = 425, .external_lex_state = 32}, + [1949] = {.lex_state = 250, .external_lex_state = 37}, + [1950] = {.lex_state = 250, .external_lex_state = 37}, + [1951] = {.lex_state = 234, .external_lex_state = 33}, + [1952] = {.lex_state = 425, .external_lex_state = 32}, + [1953] = {.lex_state = 250, .external_lex_state = 37}, + [1954] = {.lex_state = 67, .external_lex_state = 35}, + [1955] = {.lex_state = 250, .external_lex_state = 37}, + [1956] = {.lex_state = 254, .external_lex_state = 36}, + [1957] = {.lex_state = 67, .external_lex_state = 35}, + [1958] = {.lex_state = 254, .external_lex_state = 36}, + [1959] = {.lex_state = 250, .external_lex_state = 37}, + [1960] = {.lex_state = 250, .external_lex_state = 37}, + [1961] = {.lex_state = 67, .external_lex_state = 35}, + [1962] = {.lex_state = 67, .external_lex_state = 35}, + [1963] = {.lex_state = 67, .external_lex_state = 35}, + [1964] = {.lex_state = 67, .external_lex_state = 35}, + [1965] = {.lex_state = 67, .external_lex_state = 35}, + [1966] = {.lex_state = 67, .external_lex_state = 35}, + [1967] = {.lex_state = 67, .external_lex_state = 35}, + [1968] = {.lex_state = 67, .external_lex_state = 35}, + [1969] = {.lex_state = 250, .external_lex_state = 37}, + [1970] = {.lex_state = 250, .external_lex_state = 37}, + [1971] = {.lex_state = 250, .external_lex_state = 37}, + [1972] = {.lex_state = 67, .external_lex_state = 35}, + [1973] = {.lex_state = 234, .external_lex_state = 2}, + [1974] = {.lex_state = 219, .external_lex_state = 28}, + [1975] = {.lex_state = 221, .external_lex_state = 28}, + [1976] = {.lex_state = 221, .external_lex_state = 28}, + [1977] = {.lex_state = 234, .external_lex_state = 22}, + [1978] = {.lex_state = 234, .external_lex_state = 22}, + [1979] = {.lex_state = 234, .external_lex_state = 22}, + [1980] = {.lex_state = 221, .external_lex_state = 28}, + [1981] = {.lex_state = 221, .external_lex_state = 28}, + [1982] = {.lex_state = 221, .external_lex_state = 28}, + [1983] = {.lex_state = 219, .external_lex_state = 28}, + [1984] = {.lex_state = 219, .external_lex_state = 28}, + [1985] = {.lex_state = 236, .external_lex_state = 38}, + [1986] = {.lex_state = 221, .external_lex_state = 28}, + [1987] = {.lex_state = 234, .external_lex_state = 22}, + [1988] = {.lex_state = 219, .external_lex_state = 28}, + [1989] = {.lex_state = 219, .external_lex_state = 28}, + [1990] = {.lex_state = 234, .external_lex_state = 22}, + [1991] = {.lex_state = 236, .external_lex_state = 38}, + [1992] = {.lex_state = 219, .external_lex_state = 28}, + [1993] = {.lex_state = 219, .external_lex_state = 28}, + [1994] = {.lex_state = 234, .external_lex_state = 22}, + [1995] = {.lex_state = 219, .external_lex_state = 28}, + [1996] = {.lex_state = 221, .external_lex_state = 28}, + [1997] = {.lex_state = 236, .external_lex_state = 38}, + [1998] = {.lex_state = 236, .external_lex_state = 38}, + [1999] = {.lex_state = 219, .external_lex_state = 28}, + [2000] = {.lex_state = 236, .external_lex_state = 38}, + [2001] = {.lex_state = 234, .external_lex_state = 22}, + [2002] = {.lex_state = 221, .external_lex_state = 28}, + [2003] = {.lex_state = 236, .external_lex_state = 38}, + [2004] = {.lex_state = 154, .external_lex_state = 31}, + [2005] = {.lex_state = 219, .external_lex_state = 28}, + [2006] = {.lex_state = 219, .external_lex_state = 28}, + [2007] = {.lex_state = 154, .external_lex_state = 31}, + [2008] = {.lex_state = 236, .external_lex_state = 38}, + [2009] = {.lex_state = 234, .external_lex_state = 22}, + [2010] = {.lex_state = 234, .external_lex_state = 22}, + [2011] = {.lex_state = 234, .external_lex_state = 22}, + [2012] = {.lex_state = 221, .external_lex_state = 28}, + [2013] = {.lex_state = 219, .external_lex_state = 28}, + [2014] = {.lex_state = 236, .external_lex_state = 38}, + [2015] = {.lex_state = 219, .external_lex_state = 28}, + [2016] = {.lex_state = 236, .external_lex_state = 38}, + [2017] = {.lex_state = 234, .external_lex_state = 22}, + [2018] = {.lex_state = 234, .external_lex_state = 22}, + [2019] = {.lex_state = 221, .external_lex_state = 28}, + [2020] = {.lex_state = 221, .external_lex_state = 28}, + [2021] = {.lex_state = 221, .external_lex_state = 28}, + [2022] = {.lex_state = 221, .external_lex_state = 28}, + [2023] = {.lex_state = 221, .external_lex_state = 28}, + [2024] = {.lex_state = 234, .external_lex_state = 22}, + [2025] = {.lex_state = 234, .external_lex_state = 22}, + [2026] = {.lex_state = 234, .external_lex_state = 22}, + [2027] = {.lex_state = 234, .external_lex_state = 22}, + [2028] = {.lex_state = 221, .external_lex_state = 28}, + [2029] = {.lex_state = 219, .external_lex_state = 28}, + [2030] = {.lex_state = 221, .external_lex_state = 28}, + [2031] = {.lex_state = 234, .external_lex_state = 22}, + [2032] = {.lex_state = 234, .external_lex_state = 22}, + [2033] = {.lex_state = 221, .external_lex_state = 28}, + [2034] = {.lex_state = 219, .external_lex_state = 28}, + [2035] = {.lex_state = 234, .external_lex_state = 22}, + [2036] = {.lex_state = 221, .external_lex_state = 28}, + [2037] = {.lex_state = 219, .external_lex_state = 28}, + [2038] = {.lex_state = 219, .external_lex_state = 28}, + [2039] = {.lex_state = 234, .external_lex_state = 22}, + [2040] = {.lex_state = 219, .external_lex_state = 28}, + [2041] = {.lex_state = 234, .external_lex_state = 22}, + [2042] = {.lex_state = 234, .external_lex_state = 22}, + [2043] = {.lex_state = 221, .external_lex_state = 28}, + [2044] = {.lex_state = 221, .external_lex_state = 28}, + [2045] = {.lex_state = 234, .external_lex_state = 22}, + [2046] = {.lex_state = 234, .external_lex_state = 22}, + [2047] = {.lex_state = 219, .external_lex_state = 28}, + [2048] = {.lex_state = 219, .external_lex_state = 28}, + [2049] = {.lex_state = 234, .external_lex_state = 22}, + [2050] = {.lex_state = 221, .external_lex_state = 28}, + [2051] = {.lex_state = 254, .external_lex_state = 39}, + [2052] = {.lex_state = 234, .external_lex_state = 22}, + [2053] = {.lex_state = 221, .external_lex_state = 28}, + [2054] = {.lex_state = 219, .external_lex_state = 28}, + [2055] = {.lex_state = 234, .external_lex_state = 22}, + [2056] = {.lex_state = 234, .external_lex_state = 22}, + [2057] = {.lex_state = 219, .external_lex_state = 28}, + [2058] = {.lex_state = 234, .external_lex_state = 22}, + [2059] = {.lex_state = 234, .external_lex_state = 22}, + [2060] = {.lex_state = 236, .external_lex_state = 38}, + [2061] = {.lex_state = 234, .external_lex_state = 22}, + [2062] = {.lex_state = 154, .external_lex_state = 32}, + [2063] = {.lex_state = 222, .external_lex_state = 40}, + [2064] = {.lex_state = 236, .external_lex_state = 38}, + [2065] = {.lex_state = 195, .external_lex_state = 22}, + [2066] = {.lex_state = 234, .external_lex_state = 41}, + [2067] = {.lex_state = 234, .external_lex_state = 22}, + [2068] = {.lex_state = 195, .external_lex_state = 22}, + [2069] = {.lex_state = 234, .external_lex_state = 41}, + [2070] = {.lex_state = 236, .external_lex_state = 38}, + [2071] = {.lex_state = 234, .external_lex_state = 33}, + [2072] = {.lex_state = 234, .external_lex_state = 41}, + [2073] = {.lex_state = 236, .external_lex_state = 38}, + [2074] = {.lex_state = 236, .external_lex_state = 38}, + [2075] = {.lex_state = 236, .external_lex_state = 38}, + [2076] = {.lex_state = 234, .external_lex_state = 33}, + [2077] = {.lex_state = 236, .external_lex_state = 38}, + [2078] = {.lex_state = 222, .external_lex_state = 40}, + [2079] = {.lex_state = 236, .external_lex_state = 38}, + [2080] = {.lex_state = 236, .external_lex_state = 38}, + [2081] = {.lex_state = 154, .external_lex_state = 32}, + [2082] = {.lex_state = 234, .external_lex_state = 22}, + [2083] = {.lex_state = 234, .external_lex_state = 33}, + [2084] = {.lex_state = 236, .external_lex_state = 38}, + [2085] = {.lex_state = 236, .external_lex_state = 38}, + [2086] = {.lex_state = 236, .external_lex_state = 38}, + [2087] = {.lex_state = 236, .external_lex_state = 38}, + [2088] = {.lex_state = 234, .external_lex_state = 41}, + [2089] = {.lex_state = 234, .external_lex_state = 22}, + [2090] = {.lex_state = 246, .external_lex_state = 42}, + [2091] = {.lex_state = 234, .external_lex_state = 41}, + [2092] = {.lex_state = 234, .external_lex_state = 41}, + [2093] = {.lex_state = 236, .external_lex_state = 38}, + [2094] = {.lex_state = 236, .external_lex_state = 38}, + [2095] = {.lex_state = 223, .external_lex_state = 43}, + [2096] = {.lex_state = 236, .external_lex_state = 38}, + [2097] = {.lex_state = 236, .external_lex_state = 38}, + [2098] = {.lex_state = 223, .external_lex_state = 43}, + [2099] = {.lex_state = 236, .external_lex_state = 38}, + [2100] = {.lex_state = 236, .external_lex_state = 38}, + [2101] = {.lex_state = 236, .external_lex_state = 38}, + [2102] = {.lex_state = 234, .external_lex_state = 41}, + [2103] = {.lex_state = 234, .external_lex_state = 22}, + [2104] = {.lex_state = 234, .external_lex_state = 22}, + [2105] = {.lex_state = 251, .external_lex_state = 44}, + [2106] = {.lex_state = 234, .external_lex_state = 22}, + [2107] = {.lex_state = 234, .external_lex_state = 22}, + [2108] = {.lex_state = 234, .external_lex_state = 22}, + [2109] = {.lex_state = 234, .external_lex_state = 22}, + [2110] = {.lex_state = 234, .external_lex_state = 22}, + [2111] = {.lex_state = 234, .external_lex_state = 22}, + [2112] = {.lex_state = 234, .external_lex_state = 22}, + [2113] = {.lex_state = 234, .external_lex_state = 22}, + [2114] = {.lex_state = 234, .external_lex_state = 22}, + [2115] = {.lex_state = 68, .external_lex_state = 45}, + [2116] = {.lex_state = 234, .external_lex_state = 22}, + [2117] = {.lex_state = 234, .external_lex_state = 22}, + [2118] = {.lex_state = 251, .external_lex_state = 44}, + [2119] = {.lex_state = 234, .external_lex_state = 22}, + [2120] = {.lex_state = 234, .external_lex_state = 22}, + [2121] = {.lex_state = 234, .external_lex_state = 22}, + [2122] = {.lex_state = 234, .external_lex_state = 22}, + [2123] = {.lex_state = 254, .external_lex_state = 46}, + [2124] = {.lex_state = 234, .external_lex_state = 22}, + [2125] = {.lex_state = 234, .external_lex_state = 22}, + [2126] = {.lex_state = 234, .external_lex_state = 22}, + [2127] = {.lex_state = 234, .external_lex_state = 2}, + [2128] = {.lex_state = 68, .external_lex_state = 45}, + [2129] = {.lex_state = 234, .external_lex_state = 22}, + [2130] = {.lex_state = 234, .external_lex_state = 22}, + [2131] = {.lex_state = 251, .external_lex_state = 44}, + [2132] = {.lex_state = 251, .external_lex_state = 44}, + [2133] = {.lex_state = 234, .external_lex_state = 22}, + [2134] = {.lex_state = 234, .external_lex_state = 22}, + [2135] = {.lex_state = 251, .external_lex_state = 44}, + [2136] = {.lex_state = 251, .external_lex_state = 44}, + [2137] = {.lex_state = 234, .external_lex_state = 22}, + [2138] = {.lex_state = 234, .external_lex_state = 22}, + [2139] = {.lex_state = 251, .external_lex_state = 44}, + [2140] = {.lex_state = 251, .external_lex_state = 44}, + [2141] = {.lex_state = 234, .external_lex_state = 22}, + [2142] = {.lex_state = 234, .external_lex_state = 22}, + [2143] = {.lex_state = 234, .external_lex_state = 22}, + [2144] = {.lex_state = 68, .external_lex_state = 45}, + [2145] = {.lex_state = 234, .external_lex_state = 22}, + [2146] = {.lex_state = 234, .external_lex_state = 22}, + [2147] = {.lex_state = 251, .external_lex_state = 44}, + [2148] = {.lex_state = 251, .external_lex_state = 44}, + [2149] = {.lex_state = 234, .external_lex_state = 22}, + [2150] = {.lex_state = 234, .external_lex_state = 22}, + [2151] = {.lex_state = 234, .external_lex_state = 22}, + [2152] = {.lex_state = 234, .external_lex_state = 22}, + [2153] = {.lex_state = 234, .external_lex_state = 22}, + [2154] = {.lex_state = 234, .external_lex_state = 22}, + [2155] = {.lex_state = 234, .external_lex_state = 22}, + [2156] = {.lex_state = 234, .external_lex_state = 22}, + [2157] = {.lex_state = 234, .external_lex_state = 2}, + [2158] = {.lex_state = 234, .external_lex_state = 22}, + [2159] = {.lex_state = 234, .external_lex_state = 22}, + [2160] = {.lex_state = 234, .external_lex_state = 22}, + [2161] = {.lex_state = 223, .external_lex_state = 47}, + [2162] = {.lex_state = 223, .external_lex_state = 47}, + [2163] = {.lex_state = 234, .external_lex_state = 22}, + [2164] = {.lex_state = 234, .external_lex_state = 22}, + [2165] = {.lex_state = 234, .external_lex_state = 22}, + [2166] = {.lex_state = 234, .external_lex_state = 22}, + [2167] = {.lex_state = 234, .external_lex_state = 22}, + [2168] = {.lex_state = 234, .external_lex_state = 22}, + [2169] = {.lex_state = 234, .external_lex_state = 22}, + [2170] = {.lex_state = 234, .external_lex_state = 22}, + [2171] = {.lex_state = 234, .external_lex_state = 22}, + [2172] = {.lex_state = 234, .external_lex_state = 22}, + [2173] = {.lex_state = 234, .external_lex_state = 22}, + [2174] = {.lex_state = 234, .external_lex_state = 22}, + [2175] = {.lex_state = 234, .external_lex_state = 2}, + [2176] = {.lex_state = 234, .external_lex_state = 22}, + [2177] = {.lex_state = 234, .external_lex_state = 22}, + [2178] = {.lex_state = 234, .external_lex_state = 22}, + [2179] = {.lex_state = 234, .external_lex_state = 22}, + [2180] = {.lex_state = 234, .external_lex_state = 2}, + [2181] = {.lex_state = 234, .external_lex_state = 22}, + [2182] = {.lex_state = 250, .external_lex_state = 22}, + [2183] = {.lex_state = 232, .external_lex_state = 48}, + [2184] = {.lex_state = 250, .external_lex_state = 22}, + [2185] = {.lex_state = 250, .external_lex_state = 22}, + [2186] = {.lex_state = 250, .external_lex_state = 22}, + [2187] = {.lex_state = 250, .external_lex_state = 22}, + [2188] = {.lex_state = 250, .external_lex_state = 22}, + [2189] = {.lex_state = 250, .external_lex_state = 22}, + [2190] = {.lex_state = 250, .external_lex_state = 22}, + [2191] = {.lex_state = 250, .external_lex_state = 22}, + [2192] = {.lex_state = 250, .external_lex_state = 22}, + [2193] = {.lex_state = 232, .external_lex_state = 48}, + [2194] = {.lex_state = 232, .external_lex_state = 48}, + [2195] = {.lex_state = 234, .external_lex_state = 2}, + [2196] = {.lex_state = 250, .external_lex_state = 22}, + [2197] = {.lex_state = 250, .external_lex_state = 22}, + [2198] = {.lex_state = 250, .external_lex_state = 22}, + [2199] = {.lex_state = 250, .external_lex_state = 22}, + [2200] = {.lex_state = 250, .external_lex_state = 22}, + [2201] = {.lex_state = 250, .external_lex_state = 22}, + [2202] = {.lex_state = 232, .external_lex_state = 48}, + [2203] = {.lex_state = 232, .external_lex_state = 48}, + [2204] = {.lex_state = 232, .external_lex_state = 48}, + [2205] = {.lex_state = 250, .external_lex_state = 22}, + [2206] = {.lex_state = 250, .external_lex_state = 22}, + [2207] = {.lex_state = 250, .external_lex_state = 22}, + [2208] = {.lex_state = 250, .external_lex_state = 22}, + [2209] = {.lex_state = 250, .external_lex_state = 22}, + [2210] = {.lex_state = 250, .external_lex_state = 22}, + [2211] = {.lex_state = 250, .external_lex_state = 22}, + [2212] = {.lex_state = 250, .external_lex_state = 22}, + [2213] = {.lex_state = 232, .external_lex_state = 48}, + [2214] = {.lex_state = 250, .external_lex_state = 22}, + [2215] = {.lex_state = 250, .external_lex_state = 22}, + [2216] = {.lex_state = 250, .external_lex_state = 22}, + [2217] = {.lex_state = 250, .external_lex_state = 22}, + [2218] = {.lex_state = 250, .external_lex_state = 22}, + [2219] = {.lex_state = 250, .external_lex_state = 22}, + [2220] = {.lex_state = 250, .external_lex_state = 22}, + [2221] = {.lex_state = 250, .external_lex_state = 22}, + [2222] = {.lex_state = 250, .external_lex_state = 22}, + [2223] = {.lex_state = 250, .external_lex_state = 22}, + [2224] = {.lex_state = 250, .external_lex_state = 22}, + [2225] = {.lex_state = 232, .external_lex_state = 48}, + [2226] = {.lex_state = 250, .external_lex_state = 22}, + [2227] = {.lex_state = 250, .external_lex_state = 22}, + [2228] = {.lex_state = 250, .external_lex_state = 22}, + [2229] = {.lex_state = 250, .external_lex_state = 22}, + [2230] = {.lex_state = 250, .external_lex_state = 22}, + [2231] = {.lex_state = 250, .external_lex_state = 22}, + [2232] = {.lex_state = 250, .external_lex_state = 22}, + [2233] = {.lex_state = 250, .external_lex_state = 22}, + [2234] = {.lex_state = 250, .external_lex_state = 22}, + [2235] = {.lex_state = 250, .external_lex_state = 22}, + [2236] = {.lex_state = 250, .external_lex_state = 22}, + [2237] = {.lex_state = 250, .external_lex_state = 22}, + [2238] = {.lex_state = 250, .external_lex_state = 22}, + [2239] = {.lex_state = 250, .external_lex_state = 22}, + [2240] = {.lex_state = 232, .external_lex_state = 48}, + [2241] = {.lex_state = 250, .external_lex_state = 22}, + [2242] = {.lex_state = 250, .external_lex_state = 22}, + [2243] = {.lex_state = 250, .external_lex_state = 22}, + [2244] = {.lex_state = 250, .external_lex_state = 22}, + [2245] = {.lex_state = 250, .external_lex_state = 22}, + [2246] = {.lex_state = 250, .external_lex_state = 22}, + [2247] = {.lex_state = 250, .external_lex_state = 22}, + [2248] = {.lex_state = 232, .external_lex_state = 48}, + [2249] = {.lex_state = 250, .external_lex_state = 22}, + [2250] = {.lex_state = 250, .external_lex_state = 22}, + [2251] = {.lex_state = 250, .external_lex_state = 22}, + [2252] = {.lex_state = 250, .external_lex_state = 22}, + [2253] = {.lex_state = 232, .external_lex_state = 48}, + [2254] = {.lex_state = 232, .external_lex_state = 48}, + [2255] = {.lex_state = 232, .external_lex_state = 48}, + [2256] = {.lex_state = 250, .external_lex_state = 22}, + [2257] = {.lex_state = 232, .external_lex_state = 48}, + [2258] = {.lex_state = 250, .external_lex_state = 22}, + [2259] = {.lex_state = 232, .external_lex_state = 48}, + [2260] = {.lex_state = 250, .external_lex_state = 22}, + [2261] = {.lex_state = 250, .external_lex_state = 22}, + [2262] = {.lex_state = 250, .external_lex_state = 22}, + [2263] = {.lex_state = 250, .external_lex_state = 22}, + [2264] = {.lex_state = 232, .external_lex_state = 48}, + [2265] = {.lex_state = 232, .external_lex_state = 48}, + [2266] = {.lex_state = 250, .external_lex_state = 22}, + [2267] = {.lex_state = 232, .external_lex_state = 48}, + [2268] = {.lex_state = 232, .external_lex_state = 48}, + [2269] = {.lex_state = 232, .external_lex_state = 48}, + [2270] = {.lex_state = 250, .external_lex_state = 22}, + [2271] = {.lex_state = 250, .external_lex_state = 22}, + [2272] = {.lex_state = 232, .external_lex_state = 48}, + [2273] = {.lex_state = 250, .external_lex_state = 22}, + [2274] = {.lex_state = 232, .external_lex_state = 48}, + [2275] = {.lex_state = 250, .external_lex_state = 22}, + [2276] = {.lex_state = 232, .external_lex_state = 48}, + [2277] = {.lex_state = 232, .external_lex_state = 48}, + [2278] = {.lex_state = 250, .external_lex_state = 22}, + [2279] = {.lex_state = 250, .external_lex_state = 22}, + [2280] = {.lex_state = 232, .external_lex_state = 48}, + [2281] = {.lex_state = 250, .external_lex_state = 22}, + [2282] = {.lex_state = 250, .external_lex_state = 22}, + [2283] = {.lex_state = 250, .external_lex_state = 22}, + [2284] = {.lex_state = 232, .external_lex_state = 48}, + [2285] = {.lex_state = 250, .external_lex_state = 22}, + [2286] = {.lex_state = 250, .external_lex_state = 22}, + [2287] = {.lex_state = 232, .external_lex_state = 48}, + [2288] = {.lex_state = 250, .external_lex_state = 22}, + [2289] = {.lex_state = 232, .external_lex_state = 48}, + [2290] = {.lex_state = 250, .external_lex_state = 22}, + [2291] = {.lex_state = 232, .external_lex_state = 48}, + [2292] = {.lex_state = 232, .external_lex_state = 48}, + [2293] = {.lex_state = 250, .external_lex_state = 22}, + [2294] = {.lex_state = 232, .external_lex_state = 48}, + [2295] = {.lex_state = 68, .external_lex_state = 45}, + [2296] = {.lex_state = 232, .external_lex_state = 48}, + [2297] = {.lex_state = 250, .external_lex_state = 22}, + [2298] = {.lex_state = 234, .external_lex_state = 2}, + [2299] = {.lex_state = 232, .external_lex_state = 48}, + [2300] = {.lex_state = 250, .external_lex_state = 22}, + [2301] = {.lex_state = 250, .external_lex_state = 22}, + [2302] = {.lex_state = 232, .external_lex_state = 48}, + [2303] = {.lex_state = 232, .external_lex_state = 48}, + [2304] = {.lex_state = 232, .external_lex_state = 48}, + [2305] = {.lex_state = 232, .external_lex_state = 48}, + [2306] = {.lex_state = 232, .external_lex_state = 48}, + [2307] = {.lex_state = 232, .external_lex_state = 48}, + [2308] = {.lex_state = 232, .external_lex_state = 48}, + [2309] = {.lex_state = 234, .external_lex_state = 2}, + [2310] = {.lex_state = 250, .external_lex_state = 22}, + [2311] = {.lex_state = 232, .external_lex_state = 48}, + [2312] = {.lex_state = 232, .external_lex_state = 48}, + [2313] = {.lex_state = 250, .external_lex_state = 22}, + [2314] = {.lex_state = 250, .external_lex_state = 22}, + [2315] = {.lex_state = 250, .external_lex_state = 22}, + [2316] = {.lex_state = 250, .external_lex_state = 22}, + [2317] = {.lex_state = 232, .external_lex_state = 48}, + [2318] = {.lex_state = 250, .external_lex_state = 22}, + [2319] = {.lex_state = 250, .external_lex_state = 22}, + [2320] = {.lex_state = 250, .external_lex_state = 22}, + [2321] = {.lex_state = 250, .external_lex_state = 22}, + [2322] = {.lex_state = 250, .external_lex_state = 22}, + [2323] = {.lex_state = 250, .external_lex_state = 22}, + [2324] = {.lex_state = 250, .external_lex_state = 22}, + [2325] = {.lex_state = 232, .external_lex_state = 48}, + [2326] = {.lex_state = 250, .external_lex_state = 22}, + [2327] = {.lex_state = 250, .external_lex_state = 22}, + [2328] = {.lex_state = 232, .external_lex_state = 48}, + [2329] = {.lex_state = 250, .external_lex_state = 22}, + [2330] = {.lex_state = 250, .external_lex_state = 22}, + [2331] = {.lex_state = 250, .external_lex_state = 22}, + [2332] = {.lex_state = 250, .external_lex_state = 22}, + [2333] = {.lex_state = 250, .external_lex_state = 22}, + [2334] = {.lex_state = 232, .external_lex_state = 48}, + [2335] = {.lex_state = 250, .external_lex_state = 22}, + [2336] = {.lex_state = 250, .external_lex_state = 22}, + [2337] = {.lex_state = 68, .external_lex_state = 45}, + [2338] = {.lex_state = 232, .external_lex_state = 48}, + [2339] = {.lex_state = 250, .external_lex_state = 22}, + [2340] = {.lex_state = 232, .external_lex_state = 48}, + [2341] = {.lex_state = 250, .external_lex_state = 22}, + [2342] = {.lex_state = 250, .external_lex_state = 22}, + [2343] = {.lex_state = 250, .external_lex_state = 22}, + [2344] = {.lex_state = 250, .external_lex_state = 22}, + [2345] = {.lex_state = 250, .external_lex_state = 22}, + [2346] = {.lex_state = 250, .external_lex_state = 22}, + [2347] = {.lex_state = 250, .external_lex_state = 22}, + [2348] = {.lex_state = 250, .external_lex_state = 22}, + [2349] = {.lex_state = 250, .external_lex_state = 22}, + [2350] = {.lex_state = 250, .external_lex_state = 22}, + [2351] = {.lex_state = 250, .external_lex_state = 22}, + [2352] = {.lex_state = 250, .external_lex_state = 22}, + [2353] = {.lex_state = 250, .external_lex_state = 22}, + [2354] = {.lex_state = 250, .external_lex_state = 22}, + [2355] = {.lex_state = 250, .external_lex_state = 22}, + [2356] = {.lex_state = 250, .external_lex_state = 22}, + [2357] = {.lex_state = 250, .external_lex_state = 22}, + [2358] = {.lex_state = 250, .external_lex_state = 22}, + [2359] = {.lex_state = 250, .external_lex_state = 22}, + [2360] = {.lex_state = 250, .external_lex_state = 22}, + [2361] = {.lex_state = 250, .external_lex_state = 22}, + [2362] = {.lex_state = 250, .external_lex_state = 22}, + [2363] = {.lex_state = 250, .external_lex_state = 22}, + [2364] = {.lex_state = 250, .external_lex_state = 22}, + [2365] = {.lex_state = 232, .external_lex_state = 48}, + [2366] = {.lex_state = 250, .external_lex_state = 22}, + [2367] = {.lex_state = 232, .external_lex_state = 48}, + [2368] = {.lex_state = 232, .external_lex_state = 48}, + [2369] = {.lex_state = 250, .external_lex_state = 22}, + [2370] = {.lex_state = 250, .external_lex_state = 22}, + [2371] = {.lex_state = 250, .external_lex_state = 22}, + [2372] = {.lex_state = 250, .external_lex_state = 22}, + [2373] = {.lex_state = 68, .external_lex_state = 45}, + [2374] = {.lex_state = 250, .external_lex_state = 22}, + [2375] = {.lex_state = 250, .external_lex_state = 22}, + [2376] = {.lex_state = 250, .external_lex_state = 22}, + [2377] = {.lex_state = 250, .external_lex_state = 22}, + [2378] = {.lex_state = 250, .external_lex_state = 22}, + [2379] = {.lex_state = 250, .external_lex_state = 22}, + [2380] = {.lex_state = 250, .external_lex_state = 22}, + [2381] = {.lex_state = 250, .external_lex_state = 22}, + [2382] = {.lex_state = 250, .external_lex_state = 22}, + [2383] = {.lex_state = 250, .external_lex_state = 22}, + [2384] = {.lex_state = 232, .external_lex_state = 48}, + [2385] = {.lex_state = 250, .external_lex_state = 22}, + [2386] = {.lex_state = 250, .external_lex_state = 22}, + [2387] = {.lex_state = 250, .external_lex_state = 22}, + [2388] = {.lex_state = 234, .external_lex_state = 2}, + [2389] = {.lex_state = 250, .external_lex_state = 22}, + [2390] = {.lex_state = 232, .external_lex_state = 48}, + [2391] = {.lex_state = 250, .external_lex_state = 22}, + [2392] = {.lex_state = 250, .external_lex_state = 22}, + [2393] = {.lex_state = 250, .external_lex_state = 22}, + [2394] = {.lex_state = 250, .external_lex_state = 22}, + [2395] = {.lex_state = 250, .external_lex_state = 22}, + [2396] = {.lex_state = 71, .external_lex_state = 49}, + [2397] = {.lex_state = 232, .external_lex_state = 48}, + [2398] = {.lex_state = 250, .external_lex_state = 22}, + [2399] = {.lex_state = 232, .external_lex_state = 48}, + [2400] = {.lex_state = 250, .external_lex_state = 22}, + [2401] = {.lex_state = 250, .external_lex_state = 22}, + [2402] = {.lex_state = 250, .external_lex_state = 22}, + [2403] = {.lex_state = 250, .external_lex_state = 22}, + [2404] = {.lex_state = 250, .external_lex_state = 22}, + [2405] = {.lex_state = 234, .external_lex_state = 2}, + [2406] = {.lex_state = 234, .external_lex_state = 2}, + [2407] = {.lex_state = 250, .external_lex_state = 22}, + [2408] = {.lex_state = 250, .external_lex_state = 22}, + [2409] = {.lex_state = 234, .external_lex_state = 2}, + [2410] = {.lex_state = 232, .external_lex_state = 48}, + [2411] = {.lex_state = 250, .external_lex_state = 22}, + [2412] = {.lex_state = 250, .external_lex_state = 22}, + [2413] = {.lex_state = 250, .external_lex_state = 22}, + [2414] = {.lex_state = 250, .external_lex_state = 22}, + [2415] = {.lex_state = 250, .external_lex_state = 22}, + [2416] = {.lex_state = 250, .external_lex_state = 22}, + [2417] = {.lex_state = 250, .external_lex_state = 22}, + [2418] = {.lex_state = 71, .external_lex_state = 50}, + [2419] = {.lex_state = 71, .external_lex_state = 49}, + [2420] = {.lex_state = 71, .external_lex_state = 49}, + [2421] = {.lex_state = 71, .external_lex_state = 49}, + [2422] = {.lex_state = 71, .external_lex_state = 32}, + [2423] = {.lex_state = 71, .external_lex_state = 49}, + [2424] = {.lex_state = 71, .external_lex_state = 49}, + [2425] = {.lex_state = 71, .external_lex_state = 32}, + [2426] = {.lex_state = 71, .external_lex_state = 32}, + [2427] = {.lex_state = 71, .external_lex_state = 32}, + [2428] = {.lex_state = 254, .external_lex_state = 51}, + [2429] = {.lex_state = 254, .external_lex_state = 51}, + [2430] = {.lex_state = 254, .external_lex_state = 51}, + [2431] = {.lex_state = 254, .external_lex_state = 51}, + [2432] = {.lex_state = 421, .external_lex_state = 49}, + [2433] = {.lex_state = 71, .external_lex_state = 31}, + [2434] = {.lex_state = 71, .external_lex_state = 32}, + [2435] = {.lex_state = 71, .external_lex_state = 49}, + [2436] = {.lex_state = 71, .external_lex_state = 32}, + [2437] = {.lex_state = 71, .external_lex_state = 31}, + [2438] = {.lex_state = 421, .external_lex_state = 49}, + [2439] = {.lex_state = 421, .external_lex_state = 49}, + [2440] = {.lex_state = 421, .external_lex_state = 49}, + [2441] = {.lex_state = 71, .external_lex_state = 32}, + [2442] = {.lex_state = 71, .external_lex_state = 50}, + [2443] = {.lex_state = 71, .external_lex_state = 50}, + [2444] = {.lex_state = 71, .external_lex_state = 50}, + [2445] = {.lex_state = 71, .external_lex_state = 50}, + [2446] = {.lex_state = 71, .external_lex_state = 31}, + [2447] = {.lex_state = 421, .external_lex_state = 50}, + [2448] = {.lex_state = 422, .external_lex_state = 31}, + [2449] = {.lex_state = 71, .external_lex_state = 32}, + [2450] = {.lex_state = 71, .external_lex_state = 32}, + [2451] = {.lex_state = 71, .external_lex_state = 49}, + [2452] = {.lex_state = 71, .external_lex_state = 49}, + [2453] = {.lex_state = 71, .external_lex_state = 32}, + [2454] = {.lex_state = 71, .external_lex_state = 50}, + [2455] = {.lex_state = 71, .external_lex_state = 31}, + [2456] = {.lex_state = 71, .external_lex_state = 50}, + [2457] = {.lex_state = 71, .external_lex_state = 31}, + [2458] = {.lex_state = 71, .external_lex_state = 49}, + [2459] = {.lex_state = 71, .external_lex_state = 49}, + [2460] = {.lex_state = 71, .external_lex_state = 49}, + [2461] = {.lex_state = 71, .external_lex_state = 32}, + [2462] = {.lex_state = 71, .external_lex_state = 32}, + [2463] = {.lex_state = 71, .external_lex_state = 49}, + [2464] = {.lex_state = 421, .external_lex_state = 49}, + [2465] = {.lex_state = 71, .external_lex_state = 49}, + [2466] = {.lex_state = 71, .external_lex_state = 49}, + [2467] = {.lex_state = 421, .external_lex_state = 49}, + [2468] = {.lex_state = 71, .external_lex_state = 49}, + [2469] = {.lex_state = 421, .external_lex_state = 49}, + [2470] = {.lex_state = 421, .external_lex_state = 49}, + [2471] = {.lex_state = 71, .external_lex_state = 49}, + [2472] = {.lex_state = 71, .external_lex_state = 49}, + [2473] = {.lex_state = 421, .external_lex_state = 49}, + [2474] = {.lex_state = 421, .external_lex_state = 49}, + [2475] = {.lex_state = 71, .external_lex_state = 31}, + [2476] = {.lex_state = 71, .external_lex_state = 50}, + [2477] = {.lex_state = 71, .external_lex_state = 50}, + [2478] = {.lex_state = 71, .external_lex_state = 50}, + [2479] = {.lex_state = 421, .external_lex_state = 49}, + [2480] = {.lex_state = 421, .external_lex_state = 49}, + [2481] = {.lex_state = 421, .external_lex_state = 49}, + [2482] = {.lex_state = 422, .external_lex_state = 31}, + [2483] = {.lex_state = 421, .external_lex_state = 49}, + [2484] = {.lex_state = 71, .external_lex_state = 49}, + [2485] = {.lex_state = 71, .external_lex_state = 49}, + [2486] = {.lex_state = 71, .external_lex_state = 49}, + [2487] = {.lex_state = 254, .external_lex_state = 36}, + [2488] = {.lex_state = 254, .external_lex_state = 36}, + [2489] = {.lex_state = 421, .external_lex_state = 49}, + [2490] = {.lex_state = 71, .external_lex_state = 49}, + [2491] = {.lex_state = 71, .external_lex_state = 49}, + [2492] = {.lex_state = 421, .external_lex_state = 49}, + [2493] = {.lex_state = 71, .external_lex_state = 50}, + [2494] = {.lex_state = 421, .external_lex_state = 49}, + [2495] = {.lex_state = 71, .external_lex_state = 49}, + [2496] = {.lex_state = 254, .external_lex_state = 36}, + [2497] = {.lex_state = 71, .external_lex_state = 49}, + [2498] = {.lex_state = 71, .external_lex_state = 50}, + [2499] = {.lex_state = 71, .external_lex_state = 49}, + [2500] = {.lex_state = 421, .external_lex_state = 49}, + [2501] = {.lex_state = 421, .external_lex_state = 49}, + [2502] = {.lex_state = 421, .external_lex_state = 49}, + [2503] = {.lex_state = 254, .external_lex_state = 36}, + [2504] = {.lex_state = 71, .external_lex_state = 50}, + [2505] = {.lex_state = 71, .external_lex_state = 49}, + [2506] = {.lex_state = 71, .external_lex_state = 49}, + [2507] = {.lex_state = 71, .external_lex_state = 49}, + [2508] = {.lex_state = 421, .external_lex_state = 49}, + [2509] = {.lex_state = 421, .external_lex_state = 49}, + [2510] = {.lex_state = 71, .external_lex_state = 49}, + [2511] = {.lex_state = 421, .external_lex_state = 49}, + [2512] = {.lex_state = 422, .external_lex_state = 32}, + [2513] = {.lex_state = 71, .external_lex_state = 50}, + [2514] = {.lex_state = 233, .external_lex_state = 52}, + [2515] = {.lex_state = 71, .external_lex_state = 50}, + [2516] = {.lex_state = 233, .external_lex_state = 52}, + [2517] = {.lex_state = 71, .external_lex_state = 50}, + [2518] = {.lex_state = 233, .external_lex_state = 52}, + [2519] = {.lex_state = 182, .external_lex_state = 53}, + [2520] = {.lex_state = 247}, + [2521] = {.lex_state = 233, .external_lex_state = 52}, + [2522] = {.lex_state = 182, .external_lex_state = 53}, + [2523] = {.lex_state = 247}, + [2524] = {.lex_state = 233, .external_lex_state = 52}, + [2525] = {.lex_state = 421, .external_lex_state = 49}, + [2526] = {.lex_state = 421, .external_lex_state = 49}, + [2527] = {.lex_state = 247}, + [2528] = {.lex_state = 247}, + [2529] = {.lex_state = 71, .external_lex_state = 50}, + [2530] = {.lex_state = 71, .external_lex_state = 50}, + [2531] = {.lex_state = 71, .external_lex_state = 50}, + [2532] = {.lex_state = 247}, + [2533] = {.lex_state = 233, .external_lex_state = 52}, + [2534] = {.lex_state = 71, .external_lex_state = 32}, + [2535] = {.lex_state = 233, .external_lex_state = 52}, + [2536] = {.lex_state = 233, .external_lex_state = 52}, + [2537] = {.lex_state = 233, .external_lex_state = 52}, + [2538] = {.lex_state = 247}, + [2539] = {.lex_state = 233, .external_lex_state = 52}, + [2540] = {.lex_state = 233, .external_lex_state = 52}, + [2541] = {.lex_state = 71, .external_lex_state = 32}, + [2542] = {.lex_state = 247}, + [2543] = {.lex_state = 421, .external_lex_state = 32}, + [2544] = {.lex_state = 422, .external_lex_state = 31}, + [2545] = {.lex_state = 233, .external_lex_state = 52}, + [2546] = {.lex_state = 71, .external_lex_state = 50}, + [2547] = {.lex_state = 422, .external_lex_state = 32}, + [2548] = {.lex_state = 422, .external_lex_state = 32}, + [2549] = {.lex_state = 71, .external_lex_state = 32}, + [2550] = {.lex_state = 421, .external_lex_state = 50}, + [2551] = {.lex_state = 71, .external_lex_state = 50}, + [2552] = {.lex_state = 233, .external_lex_state = 52}, + [2553] = {.lex_state = 233, .external_lex_state = 52}, + [2554] = {.lex_state = 421, .external_lex_state = 50}, + [2555] = {.lex_state = 233, .external_lex_state = 52}, + [2556] = {.lex_state = 422, .external_lex_state = 32}, + [2557] = {.lex_state = 421, .external_lex_state = 50}, + [2558] = {.lex_state = 421, .external_lex_state = 49}, + [2559] = {.lex_state = 421, .external_lex_state = 50}, + [2560] = {.lex_state = 421, .external_lex_state = 50}, + [2561] = {.lex_state = 422, .external_lex_state = 31}, + [2562] = {.lex_state = 422, .external_lex_state = 32}, + [2563] = {.lex_state = 421, .external_lex_state = 50}, + [2564] = {.lex_state = 71, .external_lex_state = 50}, + [2565] = {.lex_state = 71, .external_lex_state = 50}, + [2566] = {.lex_state = 71, .external_lex_state = 50}, + [2567] = {.lex_state = 247}, + [2568] = {.lex_state = 421, .external_lex_state = 49}, + [2569] = {.lex_state = 421, .external_lex_state = 50}, + [2570] = {.lex_state = 421, .external_lex_state = 50}, + [2571] = {.lex_state = 421, .external_lex_state = 50}, + [2572] = {.lex_state = 421, .external_lex_state = 50}, + [2573] = {.lex_state = 421, .external_lex_state = 50}, + [2574] = {.lex_state = 71, .external_lex_state = 50}, + [2575] = {.lex_state = 71, .external_lex_state = 50}, + [2576] = {.lex_state = 182, .external_lex_state = 53}, + [2577] = {.lex_state = 233, .external_lex_state = 52}, + [2578] = {.lex_state = 421, .external_lex_state = 32}, + [2579] = {.lex_state = 422, .external_lex_state = 32}, + [2580] = {.lex_state = 233, .external_lex_state = 52}, + [2581] = {.lex_state = 233, .external_lex_state = 52}, + [2582] = {.lex_state = 233, .external_lex_state = 52}, + [2583] = {.lex_state = 71, .external_lex_state = 50}, + [2584] = {.lex_state = 182, .external_lex_state = 53}, + [2585] = {.lex_state = 233, .external_lex_state = 52}, + [2586] = {.lex_state = 233, .external_lex_state = 52}, + [2587] = {.lex_state = 422, .external_lex_state = 32}, + [2588] = {.lex_state = 182, .external_lex_state = 53}, + [2589] = {.lex_state = 247}, + [2590] = {.lex_state = 421, .external_lex_state = 49}, + [2591] = {.lex_state = 71, .external_lex_state = 50}, + [2592] = {.lex_state = 233, .external_lex_state = 52}, + [2593] = {.lex_state = 233, .external_lex_state = 52}, + [2594] = {.lex_state = 421, .external_lex_state = 50}, + [2595] = {.lex_state = 421, .external_lex_state = 31}, + [2596] = {.lex_state = 233, .external_lex_state = 52}, + [2597] = {.lex_state = 421, .external_lex_state = 32}, + [2598] = {.lex_state = 421, .external_lex_state = 49}, + [2599] = {.lex_state = 421, .external_lex_state = 50}, + [2600] = {.lex_state = 421, .external_lex_state = 49}, + [2601] = {.lex_state = 421, .external_lex_state = 32}, + [2602] = {.lex_state = 233, .external_lex_state = 52}, + [2603] = {.lex_state = 233, .external_lex_state = 52}, + [2604] = {.lex_state = 422, .external_lex_state = 32}, + [2605] = {.lex_state = 182, .external_lex_state = 53}, + [2606] = {.lex_state = 421, .external_lex_state = 50}, + [2607] = {.lex_state = 421, .external_lex_state = 50}, + [2608] = {.lex_state = 233, .external_lex_state = 52}, + [2609] = {.lex_state = 233, .external_lex_state = 52}, + [2610] = {.lex_state = 422, .external_lex_state = 31}, + [2611] = {.lex_state = 421, .external_lex_state = 50}, + [2612] = {.lex_state = 233, .external_lex_state = 52}, + [2613] = {.lex_state = 421, .external_lex_state = 32}, + [2614] = {.lex_state = 71, .external_lex_state = 50}, + [2615] = {.lex_state = 421, .external_lex_state = 50}, + [2616] = {.lex_state = 233, .external_lex_state = 52}, + [2617] = {.lex_state = 71, .external_lex_state = 50}, + [2618] = {.lex_state = 233, .external_lex_state = 52}, + [2619] = {.lex_state = 421, .external_lex_state = 32}, + [2620] = {.lex_state = 421, .external_lex_state = 31}, + [2621] = {.lex_state = 71, .external_lex_state = 32}, + [2622] = {.lex_state = 421, .external_lex_state = 32}, + [2623] = {.lex_state = 421, .external_lex_state = 32}, + [2624] = {.lex_state = 233, .external_lex_state = 52}, + [2625] = {.lex_state = 71, .external_lex_state = 32}, + [2626] = {.lex_state = 421, .external_lex_state = 32}, + [2627] = {.lex_state = 421, .external_lex_state = 32}, + [2628] = {.lex_state = 233, .external_lex_state = 52}, + [2629] = {.lex_state = 233, .external_lex_state = 52}, + [2630] = {.lex_state = 233, .external_lex_state = 52}, + [2631] = {.lex_state = 421, .external_lex_state = 31}, + [2632] = {.lex_state = 233, .external_lex_state = 52}, + [2633] = {.lex_state = 233, .external_lex_state = 52}, + [2634] = {.lex_state = 422, .external_lex_state = 32}, + [2635] = {.lex_state = 421, .external_lex_state = 50}, + [2636] = {.lex_state = 421, .external_lex_state = 31}, + [2637] = {.lex_state = 233, .external_lex_state = 52}, + [2638] = {.lex_state = 233, .external_lex_state = 52}, + [2639] = {.lex_state = 233, .external_lex_state = 52}, + [2640] = {.lex_state = 233, .external_lex_state = 52}, + [2641] = {.lex_state = 422, .external_lex_state = 32}, + [2642] = {.lex_state = 233, .external_lex_state = 52}, + [2643] = {.lex_state = 421, .external_lex_state = 32}, + [2644] = {.lex_state = 71, .external_lex_state = 32}, + [2645] = {.lex_state = 233, .external_lex_state = 52}, + [2646] = {.lex_state = 233, .external_lex_state = 52}, + [2647] = {.lex_state = 421, .external_lex_state = 32}, + [2648] = {.lex_state = 71, .external_lex_state = 32}, + [2649] = {.lex_state = 421, .external_lex_state = 50}, + [2650] = {.lex_state = 421, .external_lex_state = 49}, + [2651] = {.lex_state = 71, .external_lex_state = 31}, + [2652] = {.lex_state = 233, .external_lex_state = 52}, + [2653] = {.lex_state = 233, .external_lex_state = 52}, + [2654] = {.lex_state = 71, .external_lex_state = 50}, + [2655] = {.lex_state = 421, .external_lex_state = 49}, + [2656] = {.lex_state = 71, .external_lex_state = 50}, + [2657] = {.lex_state = 71, .external_lex_state = 50}, + [2658] = {.lex_state = 71, .external_lex_state = 50}, + [2659] = {.lex_state = 233, .external_lex_state = 52}, + [2660] = {.lex_state = 422, .external_lex_state = 32}, + [2661] = {.lex_state = 421, .external_lex_state = 49}, + [2662] = {.lex_state = 233, .external_lex_state = 52}, + [2663] = {.lex_state = 421, .external_lex_state = 49}, + [2664] = {.lex_state = 421, .external_lex_state = 49}, + [2665] = {.lex_state = 421, .external_lex_state = 49}, + [2666] = {.lex_state = 233, .external_lex_state = 52}, + [2667] = {.lex_state = 71, .external_lex_state = 50}, + [2668] = {.lex_state = 421, .external_lex_state = 50}, + [2669] = {.lex_state = 421, .external_lex_state = 50}, + [2670] = {.lex_state = 421, .external_lex_state = 50}, + [2671] = {.lex_state = 71, .external_lex_state = 50}, + [2672] = {.lex_state = 71, .external_lex_state = 50}, + [2673] = {.lex_state = 71, .external_lex_state = 50}, + [2674] = {.lex_state = 71, .external_lex_state = 50}, + [2675] = {.lex_state = 71, .external_lex_state = 50}, + [2676] = {.lex_state = 71, .external_lex_state = 50}, + [2677] = {.lex_state = 71, .external_lex_state = 50}, + [2678] = {.lex_state = 421, .external_lex_state = 32}, + [2679] = {.lex_state = 421, .external_lex_state = 50}, + [2680] = {.lex_state = 421, .external_lex_state = 50}, + [2681] = {.lex_state = 182, .external_lex_state = 53}, + [2682] = {.lex_state = 182, .external_lex_state = 53}, + [2683] = {.lex_state = 421, .external_lex_state = 50}, + [2684] = {.lex_state = 182, .external_lex_state = 53}, + [2685] = {.lex_state = 421, .external_lex_state = 32}, + [2686] = {.lex_state = 421, .external_lex_state = 50}, + [2687] = {.lex_state = 182, .external_lex_state = 53}, + [2688] = {.lex_state = 421, .external_lex_state = 50}, + [2689] = {.lex_state = 421, .external_lex_state = 50}, + [2690] = {.lex_state = 421, .external_lex_state = 50}, + [2691] = {.lex_state = 247}, + [2692] = {.lex_state = 182, .external_lex_state = 53}, + [2693] = {.lex_state = 421, .external_lex_state = 50}, + [2694] = {.lex_state = 421, .external_lex_state = 50}, + [2695] = {.lex_state = 71, .external_lex_state = 32}, + [2696] = {.lex_state = 71, .external_lex_state = 32}, + [2697] = {.lex_state = 421, .external_lex_state = 31}, + [2698] = {.lex_state = 421, .external_lex_state = 50}, + [2699] = {.lex_state = 421, .external_lex_state = 50}, + [2700] = {.lex_state = 421, .external_lex_state = 50}, + [2701] = {.lex_state = 421, .external_lex_state = 50}, + [2702] = {.lex_state = 421, .external_lex_state = 50}, + [2703] = {.lex_state = 421, .external_lex_state = 32}, + [2704] = {.lex_state = 421, .external_lex_state = 50}, + [2705] = {.lex_state = 182, .external_lex_state = 53}, + [2706] = {.lex_state = 421, .external_lex_state = 50}, + [2707] = {.lex_state = 71, .external_lex_state = 31}, + [2708] = {.lex_state = 71, .external_lex_state = 31}, + [2709] = {.lex_state = 71, .external_lex_state = 31}, + [2710] = {.lex_state = 421, .external_lex_state = 50}, + [2711] = {.lex_state = 421, .external_lex_state = 50}, + [2712] = {.lex_state = 421, .external_lex_state = 50}, + [2713] = {.lex_state = 422, .external_lex_state = 31}, + [2714] = {.lex_state = 71, .external_lex_state = 32}, + [2715] = {.lex_state = 421, .external_lex_state = 32}, + [2716] = {.lex_state = 421, .external_lex_state = 50}, + [2717] = {.lex_state = 422, .external_lex_state = 31}, + [2718] = {.lex_state = 421, .external_lex_state = 50}, + [2719] = {.lex_state = 421, .external_lex_state = 49}, + [2720] = {.lex_state = 247}, + [2721] = {.lex_state = 421, .external_lex_state = 49}, + [2722] = {.lex_state = 247}, + [2723] = {.lex_state = 421, .external_lex_state = 49}, + [2724] = {.lex_state = 421, .external_lex_state = 50}, + [2725] = {.lex_state = 71, .external_lex_state = 32}, + [2726] = {.lex_state = 421, .external_lex_state = 50}, + [2727] = {.lex_state = 421, .external_lex_state = 32}, + [2728] = {.lex_state = 421, .external_lex_state = 49}, + [2729] = {.lex_state = 421, .external_lex_state = 32}, + [2730] = {.lex_state = 247}, + [2731] = {.lex_state = 421, .external_lex_state = 50}, + [2732] = {.lex_state = 182, .external_lex_state = 53}, + [2733] = {.lex_state = 421, .external_lex_state = 50}, + [2734] = {.lex_state = 421, .external_lex_state = 32}, + [2735] = {.lex_state = 421, .external_lex_state = 32}, + [2736] = {.lex_state = 421, .external_lex_state = 31}, + [2737] = {.lex_state = 421, .external_lex_state = 50}, + [2738] = {.lex_state = 421, .external_lex_state = 50}, + [2739] = {.lex_state = 421, .external_lex_state = 50}, + [2740] = {.lex_state = 71, .external_lex_state = 32}, + [2741] = {.lex_state = 182, .external_lex_state = 53}, + [2742] = {.lex_state = 182, .external_lex_state = 53}, + [2743] = {.lex_state = 182, .external_lex_state = 53}, + [2744] = {.lex_state = 247}, + [2745] = {.lex_state = 247}, + [2746] = {.lex_state = 182, .external_lex_state = 53}, + [2747] = {.lex_state = 422, .external_lex_state = 32}, + [2748] = {.lex_state = 182, .external_lex_state = 53}, + [2749] = {.lex_state = 182, .external_lex_state = 53}, + [2750] = {.lex_state = 182, .external_lex_state = 53}, + [2751] = {.lex_state = 421, .external_lex_state = 50}, + [2752] = {.lex_state = 247}, + [2753] = {.lex_state = 421, .external_lex_state = 50}, + [2754] = {.lex_state = 182, .external_lex_state = 53}, + [2755] = {.lex_state = 247}, + [2756] = {.lex_state = 182, .external_lex_state = 53}, + [2757] = {.lex_state = 71, .external_lex_state = 32}, + [2758] = {.lex_state = 422, .external_lex_state = 31}, + [2759] = {.lex_state = 247}, + [2760] = {.lex_state = 182, .external_lex_state = 53}, + [2761] = {.lex_state = 182, .external_lex_state = 53}, + [2762] = {.lex_state = 182, .external_lex_state = 53}, + [2763] = {.lex_state = 421, .external_lex_state = 50}, + [2764] = {.lex_state = 71, .external_lex_state = 32}, + [2765] = {.lex_state = 71, .external_lex_state = 32}, + [2766] = {.lex_state = 71, .external_lex_state = 32}, + [2767] = {.lex_state = 422, .external_lex_state = 32}, + [2768] = {.lex_state = 422, .external_lex_state = 32}, + [2769] = {.lex_state = 422, .external_lex_state = 32}, + [2770] = {.lex_state = 422, .external_lex_state = 32}, + [2771] = {.lex_state = 71, .external_lex_state = 32}, + [2772] = {.lex_state = 71, .external_lex_state = 32}, + [2773] = {.lex_state = 422, .external_lex_state = 32}, + [2774] = {.lex_state = 71, .external_lex_state = 32}, + [2775] = {.lex_state = 71, .external_lex_state = 32}, + [2776] = {.lex_state = 71, .external_lex_state = 32}, + [2777] = {.lex_state = 71, .external_lex_state = 32}, + [2778] = {.lex_state = 71, .external_lex_state = 32}, + [2779] = {.lex_state = 422, .external_lex_state = 32}, + [2780] = {.lex_state = 71, .external_lex_state = 32}, + [2781] = {.lex_state = 71, .external_lex_state = 32}, + [2782] = {.lex_state = 181, .external_lex_state = 34}, + [2783] = {.lex_state = 421, .external_lex_state = 50}, + [2784] = {.lex_state = 71, .external_lex_state = 32}, + [2785] = {.lex_state = 71, .external_lex_state = 32}, + [2786] = {.lex_state = 422, .external_lex_state = 32}, + [2787] = {.lex_state = 71, .external_lex_state = 32}, + [2788] = {.lex_state = 71, .external_lex_state = 32}, + [2789] = {.lex_state = 422, .external_lex_state = 32}, + [2790] = {.lex_state = 421, .external_lex_state = 50}, + [2791] = {.lex_state = 421, .external_lex_state = 32}, + [2792] = {.lex_state = 422, .external_lex_state = 32}, + [2793] = {.lex_state = 421, .external_lex_state = 32}, + [2794] = {.lex_state = 421, .external_lex_state = 50}, + [2795] = {.lex_state = 421, .external_lex_state = 50}, + [2796] = {.lex_state = 421, .external_lex_state = 50}, + [2797] = {.lex_state = 421, .external_lex_state = 50}, + [2798] = {.lex_state = 71, .external_lex_state = 32}, + [2799] = {.lex_state = 421, .external_lex_state = 50}, + [2800] = {.lex_state = 71, .external_lex_state = 32}, + [2801] = {.lex_state = 421, .external_lex_state = 50}, + [2802] = {.lex_state = 421, .external_lex_state = 50}, + [2803] = {.lex_state = 71, .external_lex_state = 32}, + [2804] = {.lex_state = 422, .external_lex_state = 32}, + [2805] = {.lex_state = 421, .external_lex_state = 50}, + [2806] = {.lex_state = 71, .external_lex_state = 32}, + [2807] = {.lex_state = 71, .external_lex_state = 32}, + [2808] = {.lex_state = 422, .external_lex_state = 32}, + [2809] = {.lex_state = 422, .external_lex_state = 32}, + [2810] = {.lex_state = 71, .external_lex_state = 32}, + [2811] = {.lex_state = 71, .external_lex_state = 32}, + [2812] = {.lex_state = 422, .external_lex_state = 32}, + [2813] = {.lex_state = 422, .external_lex_state = 32}, + [2814] = {.lex_state = 422, .external_lex_state = 32}, + [2815] = {.lex_state = 157, .external_lex_state = 54}, + [2816] = {.lex_state = 71, .external_lex_state = 32}, + [2817] = {.lex_state = 71, .external_lex_state = 32}, + [2818] = {.lex_state = 421, .external_lex_state = 32}, + [2819] = {.lex_state = 422, .external_lex_state = 32}, + [2820] = {.lex_state = 422, .external_lex_state = 32}, + [2821] = {.lex_state = 422, .external_lex_state = 32}, + [2822] = {.lex_state = 422, .external_lex_state = 32}, + [2823] = {.lex_state = 422, .external_lex_state = 32}, + [2824] = {.lex_state = 157, .external_lex_state = 54}, + [2825] = {.lex_state = 71, .external_lex_state = 32}, + [2826] = {.lex_state = 71, .external_lex_state = 32}, + [2827] = {.lex_state = 421, .external_lex_state = 32}, + [2828] = {.lex_state = 422, .external_lex_state = 32}, + [2829] = {.lex_state = 71, .external_lex_state = 32}, + [2830] = {.lex_state = 71, .external_lex_state = 32}, + [2831] = {.lex_state = 71, .external_lex_state = 32}, + [2832] = {.lex_state = 422, .external_lex_state = 32}, + [2833] = {.lex_state = 422, .external_lex_state = 32}, + [2834] = {.lex_state = 71, .external_lex_state = 32}, + [2835] = {.lex_state = 422, .external_lex_state = 32}, + [2836] = {.lex_state = 71, .external_lex_state = 32}, + [2837] = {.lex_state = 71, .external_lex_state = 32}, + [2838] = {.lex_state = 422, .external_lex_state = 32}, + [2839] = {.lex_state = 71, .external_lex_state = 32}, + [2840] = {.lex_state = 422, .external_lex_state = 32}, + [2841] = {.lex_state = 422, .external_lex_state = 32}, + [2842] = {.lex_state = 71, .external_lex_state = 32}, + [2843] = {.lex_state = 71, .external_lex_state = 32}, + [2844] = {.lex_state = 71, .external_lex_state = 32}, + [2845] = {.lex_state = 71, .external_lex_state = 32}, + [2846] = {.lex_state = 422, .external_lex_state = 32}, + [2847] = {.lex_state = 71, .external_lex_state = 32}, + [2848] = {.lex_state = 422, .external_lex_state = 32}, + [2849] = {.lex_state = 71, .external_lex_state = 32}, + [2850] = {.lex_state = 422, .external_lex_state = 32}, + [2851] = {.lex_state = 422, .external_lex_state = 32}, + [2852] = {.lex_state = 71, .external_lex_state = 32}, + [2853] = {.lex_state = 422, .external_lex_state = 32}, + [2854] = {.lex_state = 71, .external_lex_state = 32}, + [2855] = {.lex_state = 422, .external_lex_state = 32}, + [2856] = {.lex_state = 422, .external_lex_state = 32}, + [2857] = {.lex_state = 422, .external_lex_state = 32}, + [2858] = {.lex_state = 422, .external_lex_state = 32}, + [2859] = {.lex_state = 71, .external_lex_state = 32}, + [2860] = {.lex_state = 71, .external_lex_state = 32}, + [2861] = {.lex_state = 71, .external_lex_state = 32}, + [2862] = {.lex_state = 422, .external_lex_state = 32}, + [2863] = {.lex_state = 422, .external_lex_state = 32}, + [2864] = {.lex_state = 422, .external_lex_state = 32}, + [2865] = {.lex_state = 71, .external_lex_state = 32}, + [2866] = {.lex_state = 422, .external_lex_state = 32}, + [2867] = {.lex_state = 422, .external_lex_state = 32}, + [2868] = {.lex_state = 422, .external_lex_state = 32}, + [2869] = {.lex_state = 422, .external_lex_state = 32}, + [2870] = {.lex_state = 422, .external_lex_state = 32}, + [2871] = {.lex_state = 422, .external_lex_state = 32}, + [2872] = {.lex_state = 422, .external_lex_state = 32}, + [2873] = {.lex_state = 422, .external_lex_state = 32}, + [2874] = {.lex_state = 71, .external_lex_state = 32}, + [2875] = {.lex_state = 422, .external_lex_state = 32}, + [2876] = {.lex_state = 71, .external_lex_state = 32}, + [2877] = {.lex_state = 181, .external_lex_state = 34}, + [2878] = {.lex_state = 71, .external_lex_state = 32}, + [2879] = {.lex_state = 421, .external_lex_state = 32}, + [2880] = {.lex_state = 238, .external_lex_state = 55}, + [2881] = {.lex_state = 421, .external_lex_state = 32}, + [2882] = {.lex_state = 71, .external_lex_state = 49}, + [2883] = {.lex_state = 422, .external_lex_state = 32}, + [2884] = {.lex_state = 422, .external_lex_state = 32}, + [2885] = {.lex_state = 247}, + [2886] = {.lex_state = 421, .external_lex_state = 32}, + [2887] = {.lex_state = 421, .external_lex_state = 32}, + [2888] = {.lex_state = 238, .external_lex_state = 55}, + [2889] = {.lex_state = 238, .external_lex_state = 55}, + [2890] = {.lex_state = 238, .external_lex_state = 55}, + [2891] = {.lex_state = 421, .external_lex_state = 32}, + [2892] = {.lex_state = 238, .external_lex_state = 55}, + [2893] = {.lex_state = 181, .external_lex_state = 34}, + [2894] = {.lex_state = 421, .external_lex_state = 32}, + [2895] = {.lex_state = 422, .external_lex_state = 32}, + [2896] = {.lex_state = 247}, + [2897] = {.lex_state = 247}, + [2898] = {.lex_state = 247}, + [2899] = {.lex_state = 247}, + [2900] = {.lex_state = 247}, + [2901] = {.lex_state = 238, .external_lex_state = 55}, + [2902] = {.lex_state = 421, .external_lex_state = 32}, + [2903] = {.lex_state = 421, .external_lex_state = 32}, + [2904] = {.lex_state = 238, .external_lex_state = 55}, + [2905] = {.lex_state = 245, .external_lex_state = 33}, + [2906] = {.lex_state = 232, .external_lex_state = 40}, + [2907] = {.lex_state = 71, .external_lex_state = 50}, + [2908] = {.lex_state = 421, .external_lex_state = 32}, + [2909] = {.lex_state = 245, .external_lex_state = 33}, + [2910] = {.lex_state = 245, .external_lex_state = 33}, + [2911] = {.lex_state = 71, .external_lex_state = 32}, + [2912] = {.lex_state = 245, .external_lex_state = 33}, + [2913] = {.lex_state = 245, .external_lex_state = 33}, + [2914] = {.lex_state = 71, .external_lex_state = 31}, + [2915] = {.lex_state = 245, .external_lex_state = 33}, + [2916] = {.lex_state = 245, .external_lex_state = 33}, + [2917] = {.lex_state = 245, .external_lex_state = 33}, + [2918] = {.lex_state = 245, .external_lex_state = 33}, + [2919] = {.lex_state = 245, .external_lex_state = 33}, + [2920] = {.lex_state = 71, .external_lex_state = 32}, + [2921] = {.lex_state = 232, .external_lex_state = 40}, + [2922] = {.lex_state = 71, .external_lex_state = 32}, + [2923] = {.lex_state = 245, .external_lex_state = 33}, + [2924] = {.lex_state = 238, .external_lex_state = 55}, + [2925] = {.lex_state = 238, .external_lex_state = 55}, + [2926] = {.lex_state = 238, .external_lex_state = 55}, + [2927] = {.lex_state = 238, .external_lex_state = 55}, + [2928] = {.lex_state = 238, .external_lex_state = 55}, + [2929] = {.lex_state = 257, .external_lex_state = 56}, + [2930] = {.lex_state = 238, .external_lex_state = 55}, + [2931] = {.lex_state = 245, .external_lex_state = 33}, + [2932] = {.lex_state = 421, .external_lex_state = 32}, + [2933] = {.lex_state = 238, .external_lex_state = 55}, + [2934] = {.lex_state = 238, .external_lex_state = 55}, + [2935] = {.lex_state = 245, .external_lex_state = 33}, + [2936] = {.lex_state = 421, .external_lex_state = 32}, + [2937] = {.lex_state = 71, .external_lex_state = 49}, + [2938] = {.lex_state = 245, .external_lex_state = 33}, + [2939] = {.lex_state = 238, .external_lex_state = 55}, + [2940] = {.lex_state = 71, .external_lex_state = 31}, + [2941] = {.lex_state = 245, .external_lex_state = 33}, + [2942] = {.lex_state = 232, .external_lex_state = 40}, + [2943] = {.lex_state = 238, .external_lex_state = 55}, + [2944] = {.lex_state = 245, .external_lex_state = 33}, + [2945] = {.lex_state = 71, .external_lex_state = 49}, + [2946] = {.lex_state = 232, .external_lex_state = 40}, + [2947] = {.lex_state = 238, .external_lex_state = 55}, + [2948] = {.lex_state = 238, .external_lex_state = 55}, + [2949] = {.lex_state = 238, .external_lex_state = 55}, + [2950] = {.lex_state = 245, .external_lex_state = 33}, + [2951] = {.lex_state = 238, .external_lex_state = 55}, + [2952] = {.lex_state = 71, .external_lex_state = 49}, + [2953] = {.lex_state = 71, .external_lex_state = 32}, + [2954] = {.lex_state = 238, .external_lex_state = 55}, + [2955] = {.lex_state = 232, .external_lex_state = 40}, + [2956] = {.lex_state = 71, .external_lex_state = 49}, + [2957] = {.lex_state = 245, .external_lex_state = 33}, + [2958] = {.lex_state = 71, .external_lex_state = 32}, + [2959] = {.lex_state = 238, .external_lex_state = 55}, + [2960] = {.lex_state = 238, .external_lex_state = 55}, + [2961] = {.lex_state = 245, .external_lex_state = 33}, + [2962] = {.lex_state = 245, .external_lex_state = 33}, + [2963] = {.lex_state = 245, .external_lex_state = 33}, + [2964] = {.lex_state = 245, .external_lex_state = 33}, + [2965] = {.lex_state = 245, .external_lex_state = 33}, + [2966] = {.lex_state = 258, .external_lex_state = 57}, + [2967] = {.lex_state = 245, .external_lex_state = 33}, + [2968] = {.lex_state = 238, .external_lex_state = 55}, + [2969] = {.lex_state = 234, .external_lex_state = 33}, + [2970] = {.lex_state = 71, .external_lex_state = 50}, + [2971] = {.lex_state = 234, .external_lex_state = 33}, + [2972] = {.lex_state = 257, .external_lex_state = 56}, + [2973] = {.lex_state = 257, .external_lex_state = 56}, + [2974] = {.lex_state = 257, .external_lex_state = 56}, + [2975] = {.lex_state = 234, .external_lex_state = 33}, + [2976] = {.lex_state = 234, .external_lex_state = 33}, + [2977] = {.lex_state = 71, .external_lex_state = 50}, + [2978] = {.lex_state = 71, .external_lex_state = 50}, + [2979] = {.lex_state = 234, .external_lex_state = 33}, + [2980] = {.lex_state = 234, .external_lex_state = 33}, + [2981] = {.lex_state = 232, .external_lex_state = 43}, + [2982] = {.lex_state = 234, .external_lex_state = 33}, + [2983] = {.lex_state = 234, .external_lex_state = 33}, + [2984] = {.lex_state = 234, .external_lex_state = 33}, + [2985] = {.lex_state = 234, .external_lex_state = 33}, + [2986] = {.lex_state = 234, .external_lex_state = 33}, + [2987] = {.lex_state = 234, .external_lex_state = 33}, + [2988] = {.lex_state = 234, .external_lex_state = 33}, + [2989] = {.lex_state = 234, .external_lex_state = 22}, + [2990] = {.lex_state = 234, .external_lex_state = 33}, + [2991] = {.lex_state = 234, .external_lex_state = 33}, + [2992] = {.lex_state = 257, .external_lex_state = 57}, + [2993] = {.lex_state = 234, .external_lex_state = 33}, + [2994] = {.lex_state = 234, .external_lex_state = 33}, + [2995] = {.lex_state = 257, .external_lex_state = 57}, + [2996] = {.lex_state = 234, .external_lex_state = 33}, + [2997] = {.lex_state = 234, .external_lex_state = 33}, + [2998] = {.lex_state = 257, .external_lex_state = 56}, + [2999] = {.lex_state = 234, .external_lex_state = 33}, + [3000] = {.lex_state = 232, .external_lex_state = 47}, + [3001] = {.lex_state = 234, .external_lex_state = 33}, + [3002] = {.lex_state = 234, .external_lex_state = 33}, + [3003] = {.lex_state = 232, .external_lex_state = 47}, + [3004] = {.lex_state = 234, .external_lex_state = 33}, + [3005] = {.lex_state = 234, .external_lex_state = 33}, + [3006] = {.lex_state = 234, .external_lex_state = 33}, + [3007] = {.lex_state = 234, .external_lex_state = 33}, + [3008] = {.lex_state = 234, .external_lex_state = 33}, + [3009] = {.lex_state = 234, .external_lex_state = 33}, + [3010] = {.lex_state = 232, .external_lex_state = 47}, + [3011] = {.lex_state = 257, .external_lex_state = 56}, + [3012] = {.lex_state = 234, .external_lex_state = 33}, + [3013] = {.lex_state = 234, .external_lex_state = 33}, + [3014] = {.lex_state = 71, .external_lex_state = 50}, + [3015] = {.lex_state = 257, .external_lex_state = 56}, + [3016] = {.lex_state = 232, .external_lex_state = 47}, + [3017] = {.lex_state = 71, .external_lex_state = 50}, + [3018] = {.lex_state = 257, .external_lex_state = 56}, + [3019] = {.lex_state = 258, .external_lex_state = 58}, + [3020] = {.lex_state = 257, .external_lex_state = 56}, + [3021] = {.lex_state = 234, .external_lex_state = 33}, + [3022] = {.lex_state = 257, .external_lex_state = 56}, + [3023] = {.lex_state = 71, .external_lex_state = 50}, + [3024] = {.lex_state = 257, .external_lex_state = 56}, + [3025] = {.lex_state = 71, .external_lex_state = 50}, + [3026] = {.lex_state = 71, .external_lex_state = 50}, + [3027] = {.lex_state = 234, .external_lex_state = 33}, + [3028] = {.lex_state = 234, .external_lex_state = 22}, + [3029] = {.lex_state = 232, .external_lex_state = 47}, + [3030] = {.lex_state = 257, .external_lex_state = 56}, + [3031] = {.lex_state = 234, .external_lex_state = 33}, + [3032] = {.lex_state = 234, .external_lex_state = 33}, + [3033] = {.lex_state = 257, .external_lex_state = 57}, + [3034] = {.lex_state = 234, .external_lex_state = 33}, + [3035] = {.lex_state = 234, .external_lex_state = 33}, + [3036] = {.lex_state = 234, .external_lex_state = 33}, + [3037] = {.lex_state = 234, .external_lex_state = 33}, + [3038] = {.lex_state = 234, .external_lex_state = 33}, + [3039] = {.lex_state = 257, .external_lex_state = 57}, + [3040] = {.lex_state = 234, .external_lex_state = 33}, + [3041] = {.lex_state = 234, .external_lex_state = 33}, + [3042] = {.lex_state = 234, .external_lex_state = 33}, + [3043] = {.lex_state = 234, .external_lex_state = 33}, + [3044] = {.lex_state = 234, .external_lex_state = 33}, + [3045] = {.lex_state = 234, .external_lex_state = 33}, + [3046] = {.lex_state = 234, .external_lex_state = 33}, + [3047] = {.lex_state = 234, .external_lex_state = 33}, + [3048] = {.lex_state = 234, .external_lex_state = 33}, + [3049] = {.lex_state = 234, .external_lex_state = 33}, + [3050] = {.lex_state = 234, .external_lex_state = 33}, + [3051] = {.lex_state = 234, .external_lex_state = 33}, + [3052] = {.lex_state = 71, .external_lex_state = 50}, + [3053] = {.lex_state = 257, .external_lex_state = 57}, + [3054] = {.lex_state = 234, .external_lex_state = 33}, + [3055] = {.lex_state = 234, .external_lex_state = 33}, + [3056] = {.lex_state = 71, .external_lex_state = 50}, + [3057] = {.lex_state = 234, .external_lex_state = 33}, + [3058] = {.lex_state = 234, .external_lex_state = 33}, + [3059] = {.lex_state = 234, .external_lex_state = 33}, + [3060] = {.lex_state = 234, .external_lex_state = 33}, + [3061] = {.lex_state = 234, .external_lex_state = 33}, + [3062] = {.lex_state = 234, .external_lex_state = 33}, + [3063] = {.lex_state = 234, .external_lex_state = 33}, + [3064] = {.lex_state = 234, .external_lex_state = 33}, + [3065] = {.lex_state = 234, .external_lex_state = 33}, + [3066] = {.lex_state = 234, .external_lex_state = 33}, + [3067] = {.lex_state = 232, .external_lex_state = 43}, + [3068] = {.lex_state = 234, .external_lex_state = 33}, + [3069] = {.lex_state = 257, .external_lex_state = 56}, + [3070] = {.lex_state = 257, .external_lex_state = 57}, + [3071] = {.lex_state = 71, .external_lex_state = 32}, + [3072] = {.lex_state = 257, .external_lex_state = 57}, + [3073] = {.lex_state = 257, .external_lex_state = 56}, + [3074] = {.lex_state = 257, .external_lex_state = 58}, + [3075] = {.lex_state = 257, .external_lex_state = 57}, + [3076] = {.lex_state = 257, .external_lex_state = 57}, + [3077] = {.lex_state = 232, .external_lex_state = 40}, + [3078] = {.lex_state = 71, .external_lex_state = 32}, + [3079] = {.lex_state = 257, .external_lex_state = 56}, + [3080] = {.lex_state = 257, .external_lex_state = 57}, + [3081] = {.lex_state = 257, .external_lex_state = 57}, + [3082] = {.lex_state = 257, .external_lex_state = 57}, + [3083] = {.lex_state = 257, .external_lex_state = 56}, + [3084] = {.lex_state = 232, .external_lex_state = 40}, + [3085] = {.lex_state = 257, .external_lex_state = 56}, + [3086] = {.lex_state = 257, .external_lex_state = 57}, + [3087] = {.lex_state = 257, .external_lex_state = 56}, + [3088] = {.lex_state = 257, .external_lex_state = 57}, + [3089] = {.lex_state = 232, .external_lex_state = 40}, + [3090] = {.lex_state = 232, .external_lex_state = 40}, + [3091] = {.lex_state = 257, .external_lex_state = 56}, + [3092] = {.lex_state = 257, .external_lex_state = 58}, + [3093] = {.lex_state = 257, .external_lex_state = 57}, + [3094] = {.lex_state = 257, .external_lex_state = 58}, + [3095] = {.lex_state = 257, .external_lex_state = 58}, + [3096] = {.lex_state = 257, .external_lex_state = 58}, + [3097] = {.lex_state = 257, .external_lex_state = 56}, + [3098] = {.lex_state = 257, .external_lex_state = 56}, + [3099] = {.lex_state = 257, .external_lex_state = 57}, + [3100] = {.lex_state = 257, .external_lex_state = 58}, + [3101] = {.lex_state = 232, .external_lex_state = 40}, + [3102] = {.lex_state = 257, .external_lex_state = 56}, + [3103] = {.lex_state = 257, .external_lex_state = 57}, + [3104] = {.lex_state = 257, .external_lex_state = 57}, + [3105] = {.lex_state = 257, .external_lex_state = 56}, + [3106] = {.lex_state = 257, .external_lex_state = 56}, + [3107] = {.lex_state = 247, .external_lex_state = 43}, + [3108] = {.lex_state = 248, .external_lex_state = 59}, + [3109] = {.lex_state = 257, .external_lex_state = 56}, + [3110] = {.lex_state = 257, .external_lex_state = 57}, + [3111] = {.lex_state = 257, .external_lex_state = 57}, + [3112] = {.lex_state = 257, .external_lex_state = 56}, + [3113] = {.lex_state = 257, .external_lex_state = 56}, + [3114] = {.lex_state = 247, .external_lex_state = 43}, + [3115] = {.lex_state = 232, .external_lex_state = 40}, + [3116] = {.lex_state = 234, .external_lex_state = 22}, + [3117] = {.lex_state = 257, .external_lex_state = 57}, + [3118] = {.lex_state = 257, .external_lex_state = 56}, + [3119] = {.lex_state = 257, .external_lex_state = 58}, + [3120] = {.lex_state = 257, .external_lex_state = 57}, + [3121] = {.lex_state = 257, .external_lex_state = 58}, + [3122] = {.lex_state = 257, .external_lex_state = 58}, + [3123] = {.lex_state = 257, .external_lex_state = 57}, + [3124] = {.lex_state = 257, .external_lex_state = 58}, + [3125] = {.lex_state = 257, .external_lex_state = 57}, + [3126] = {.lex_state = 257, .external_lex_state = 56}, + [3127] = {.lex_state = 232, .external_lex_state = 40}, + [3128] = {.lex_state = 257, .external_lex_state = 56}, + [3129] = {.lex_state = 257, .external_lex_state = 56}, + [3130] = {.lex_state = 257, .external_lex_state = 58}, + [3131] = {.lex_state = 257, .external_lex_state = 58}, + [3132] = {.lex_state = 257, .external_lex_state = 58}, + [3133] = {.lex_state = 247, .external_lex_state = 47}, + [3134] = {.lex_state = 257, .external_lex_state = 58}, + [3135] = {.lex_state = 257, .external_lex_state = 58}, + [3136] = {.lex_state = 257, .external_lex_state = 58}, + [3137] = {.lex_state = 71, .external_lex_state = 32}, + [3138] = {.lex_state = 257, .external_lex_state = 58}, + [3139] = {.lex_state = 257, .external_lex_state = 58}, + [3140] = {.lex_state = 257, .external_lex_state = 58}, + [3141] = {.lex_state = 257, .external_lex_state = 58}, + [3142] = {.lex_state = 247, .external_lex_state = 47}, + [3143] = {.lex_state = 247, .external_lex_state = 43}, + [3144] = {.lex_state = 232, .external_lex_state = 40}, + [3145] = {.lex_state = 232, .external_lex_state = 47}, + [3146] = {.lex_state = 247, .external_lex_state = 47}, + [3147] = {.lex_state = 247, .external_lex_state = 47}, + [3148] = {.lex_state = 247, .external_lex_state = 47}, + [3149] = {.lex_state = 257, .external_lex_state = 58}, + [3150] = {.lex_state = 257, .external_lex_state = 58}, + [3151] = {.lex_state = 257, .external_lex_state = 58}, + [3152] = {.lex_state = 257, .external_lex_state = 58}, + [3153] = {.lex_state = 257, .external_lex_state = 58}, + [3154] = {.lex_state = 257, .external_lex_state = 58}, + [3155] = {.lex_state = 71, .external_lex_state = 32}, + [3156] = {.lex_state = 257, .external_lex_state = 58}, + [3157] = {.lex_state = 232, .external_lex_state = 47}, + [3158] = {.lex_state = 257, .external_lex_state = 58}, + [3159] = {.lex_state = 160, .external_lex_state = 45}, + [3160] = {.lex_state = 160, .external_lex_state = 45}, + [3161] = {.lex_state = 71, .external_lex_state = 32}, + [3162] = {.lex_state = 257, .external_lex_state = 58}, + [3163] = {.lex_state = 257, .external_lex_state = 58}, + [3164] = {.lex_state = 232, .external_lex_state = 47}, + [3165] = {.lex_state = 232, .external_lex_state = 40}, + [3166] = {.lex_state = 232, .external_lex_state = 40}, + [3167] = {.lex_state = 247, .external_lex_state = 47}, + [3168] = {.lex_state = 232, .external_lex_state = 43}, + [3169] = {.lex_state = 232, .external_lex_state = 40}, + [3170] = {.lex_state = 232, .external_lex_state = 40}, + [3171] = {.lex_state = 232, .external_lex_state = 43}, + [3172] = {.lex_state = 232, .external_lex_state = 40}, + [3173] = {.lex_state = 232, .external_lex_state = 47}, + [3174] = {.lex_state = 232, .external_lex_state = 40}, + [3175] = {.lex_state = 232, .external_lex_state = 47}, + [3176] = {.lex_state = 232, .external_lex_state = 43}, + [3177] = {.lex_state = 232, .external_lex_state = 40}, + [3178] = {.lex_state = 232, .external_lex_state = 40}, + [3179] = {.lex_state = 232, .external_lex_state = 40}, + [3180] = {.lex_state = 232, .external_lex_state = 40}, + [3181] = {.lex_state = 232, .external_lex_state = 40}, + [3182] = {.lex_state = 232, .external_lex_state = 40}, + [3183] = {.lex_state = 232, .external_lex_state = 47}, + [3184] = {.lex_state = 232, .external_lex_state = 47}, + [3185] = {.lex_state = 232, .external_lex_state = 47}, + [3186] = {.lex_state = 232, .external_lex_state = 47}, + [3187] = {.lex_state = 232, .external_lex_state = 47}, + [3188] = {.lex_state = 232, .external_lex_state = 47}, + [3189] = {.lex_state = 232, .external_lex_state = 47}, + [3190] = {.lex_state = 232, .external_lex_state = 47}, + [3191] = {.lex_state = 232, .external_lex_state = 47}, + [3192] = {.lex_state = 232, .external_lex_state = 47}, + [3193] = {.lex_state = 232, .external_lex_state = 47}, + [3194] = {.lex_state = 232, .external_lex_state = 47}, + [3195] = {.lex_state = 232, .external_lex_state = 47}, + [3196] = {.lex_state = 232, .external_lex_state = 47}, + [3197] = {.lex_state = 232, .external_lex_state = 47}, + [3198] = {.lex_state = 232, .external_lex_state = 47}, + [3199] = {.lex_state = 232, .external_lex_state = 47}, + [3200] = {.lex_state = 232, .external_lex_state = 47}, + [3201] = {.lex_state = 232, .external_lex_state = 47}, + [3202] = {.lex_state = 231, .external_lex_state = 48}, + [3203] = {.lex_state = 232, .external_lex_state = 47}, + [3204] = {.lex_state = 231, .external_lex_state = 48}, + [3205] = {.lex_state = 232, .external_lex_state = 47}, + [3206] = {.lex_state = 232, .external_lex_state = 47}, + [3207] = {.lex_state = 232, .external_lex_state = 47}, + [3208] = {.lex_state = 232, .external_lex_state = 47}, + [3209] = {.lex_state = 232, .external_lex_state = 47}, + [3210] = {.lex_state = 232, .external_lex_state = 47}, + [3211] = {.lex_state = 232, .external_lex_state = 47}, + [3212] = {.lex_state = 232, .external_lex_state = 47}, + [3213] = {.lex_state = 232, .external_lex_state = 47}, + [3214] = {.lex_state = 232, .external_lex_state = 47}, + [3215] = {.lex_state = 232, .external_lex_state = 47}, + [3216] = {.lex_state = 232, .external_lex_state = 47}, + [3217] = {.lex_state = 232, .external_lex_state = 47}, + [3218] = {.lex_state = 232, .external_lex_state = 47}, + [3219] = {.lex_state = 232, .external_lex_state = 47}, + [3220] = {.lex_state = 232, .external_lex_state = 47}, + [3221] = {.lex_state = 232, .external_lex_state = 47}, + [3222] = {.lex_state = 232, .external_lex_state = 47}, + [3223] = {.lex_state = 232, .external_lex_state = 47}, + [3224] = {.lex_state = 232, .external_lex_state = 47}, + [3225] = {.lex_state = 232, .external_lex_state = 47}, + [3226] = {.lex_state = 232, .external_lex_state = 47}, + [3227] = {.lex_state = 232, .external_lex_state = 47}, + [3228] = {.lex_state = 232, .external_lex_state = 47}, + [3229] = {.lex_state = 232, .external_lex_state = 47}, + [3230] = {.lex_state = 232, .external_lex_state = 47}, + [3231] = {.lex_state = 224}, + [3232] = {.lex_state = 225, .external_lex_state = 60}, + [3233] = {.lex_state = 70, .external_lex_state = 54}, + [3234] = {.lex_state = 70, .external_lex_state = 54}, + [3235] = {.lex_state = 70, .external_lex_state = 54}, + [3236] = {.lex_state = 225, .external_lex_state = 60}, + [3237] = {.lex_state = 70, .external_lex_state = 54}, + [3238] = {.lex_state = 70, .external_lex_state = 54}, + [3239] = {.lex_state = 70, .external_lex_state = 54}, + [3240] = {.lex_state = 70, .external_lex_state = 54}, + [3241] = {.lex_state = 224}, + [3242] = {.lex_state = 70, .external_lex_state = 54}, + [3243] = {.lex_state = 253}, + [3244] = {.lex_state = 253}, + [3245] = {.lex_state = 253}, + [3246] = {.lex_state = 253}, + [3247] = {.lex_state = 253}, + [3248] = {.lex_state = 253}, + [3249] = {.lex_state = 253}, + [3250] = {.lex_state = 253}, + [3251] = {.lex_state = 253}, + [3252] = {.lex_state = 253}, + [3253] = {.lex_state = 253}, + [3254] = {.lex_state = 253}, + [3255] = {.lex_state = 253}, + [3256] = {.lex_state = 253}, + [3257] = {.lex_state = 253}, + [3258] = {.lex_state = 253}, + [3259] = {.lex_state = 253}, + [3260] = {.lex_state = 253}, + [3261] = {.lex_state = 253}, + [3262] = {.lex_state = 253}, + [3263] = {.lex_state = 253}, + [3264] = {.lex_state = 253}, + [3265] = {.lex_state = 253}, + [3266] = {.lex_state = 253}, + [3267] = {.lex_state = 253}, + [3268] = {.lex_state = 253}, + [3269] = {.lex_state = 253}, + [3270] = {.lex_state = 253}, + [3271] = {.lex_state = 253}, + [3272] = {.lex_state = 253}, + [3273] = {.lex_state = 253}, + [3274] = {.lex_state = 253}, + [3275] = {.lex_state = 253}, + [3276] = {.lex_state = 253}, + [3277] = {.lex_state = 253}, + [3278] = {.lex_state = 253}, + [3279] = {.lex_state = 253}, + [3280] = {.lex_state = 253}, + [3281] = {.lex_state = 253}, + [3282] = {.lex_state = 253}, + [3283] = {.lex_state = 253}, + [3284] = {.lex_state = 253}, + [3285] = {.lex_state = 253}, + [3286] = {.lex_state = 253}, + [3287] = {.lex_state = 253}, + [3288] = {.lex_state = 253}, + [3289] = {.lex_state = 253}, + [3290] = {.lex_state = 253}, + [3291] = {.lex_state = 253}, + [3292] = {.lex_state = 253}, + [3293] = {.lex_state = 253}, + [3294] = {.lex_state = 253}, + [3295] = {.lex_state = 253}, + [3296] = {.lex_state = 253}, + [3297] = {.lex_state = 253}, + [3298] = {.lex_state = 253}, + [3299] = {.lex_state = 253}, + [3300] = {.lex_state = 253}, + [3301] = {.lex_state = 70, .external_lex_state = 61}, + [3302] = {.lex_state = 253}, + [3303] = {.lex_state = 253}, + [3304] = {.lex_state = 253}, + [3305] = {.lex_state = 253}, + [3306] = {.lex_state = 253}, + [3307] = {.lex_state = 253}, + [3308] = {.lex_state = 253}, + [3309] = {.lex_state = 253}, + [3310] = {.lex_state = 253}, + [3311] = {.lex_state = 253}, + [3312] = {.lex_state = 253}, + [3313] = {.lex_state = 253}, + [3314] = {.lex_state = 253}, + [3315] = {.lex_state = 253}, + [3316] = {.lex_state = 253}, + [3317] = {.lex_state = 253}, + [3318] = {.lex_state = 253}, + [3319] = {.lex_state = 253}, + [3320] = {.lex_state = 253}, + [3321] = {.lex_state = 253}, + [3322] = {.lex_state = 253}, + [3323] = {.lex_state = 253}, + [3324] = {.lex_state = 253}, + [3325] = {.lex_state = 253}, + [3326] = {.lex_state = 253}, + [3327] = {.lex_state = 253}, + [3328] = {.lex_state = 253}, + [3329] = {.lex_state = 253}, + [3330] = {.lex_state = 253}, + [3331] = {.lex_state = 253}, + [3332] = {.lex_state = 253}, + [3333] = {.lex_state = 253}, + [3334] = {.lex_state = 253}, + [3335] = {.lex_state = 227}, + [3336] = {.lex_state = 226}, + [3337] = {.lex_state = 226}, + [3338] = {.lex_state = 226}, + [3339] = {.lex_state = 226}, + [3340] = {.lex_state = 226}, [3341] = {.lex_state = 227}, - [3342] = {.lex_state = 227}, - [3343] = {.lex_state = 73, .external_lex_state = 59}, - [3344] = {.lex_state = 73, .external_lex_state = 59}, - [3345] = {.lex_state = 227}, + [3342] = {.lex_state = 226}, + [3343] = {.lex_state = 226}, + [3344] = {.lex_state = 227}, + [3345] = {.lex_state = 226}, [3346] = {.lex_state = 227}, - [3347] = {.lex_state = 227}, - [3348] = {.lex_state = 227}, - [3349] = {.lex_state = 228}, - [3350] = {.lex_state = 228}, - [3351] = {.lex_state = 227}, - [3352] = {.lex_state = 228}, - [3353] = {.lex_state = 228}, - [3354] = {.lex_state = 228}, - [3355] = {.lex_state = 227}, - [3356] = {.lex_state = 227}, - [3357] = {.lex_state = 227}, + [3347] = {.lex_state = 226}, + [3348] = {.lex_state = 226}, + [3349] = {.lex_state = 226}, + [3350] = {.lex_state = 226}, + [3351] = {.lex_state = 226}, + [3352] = {.lex_state = 226}, + [3353] = {.lex_state = 226}, + [3354] = {.lex_state = 226}, + [3355] = {.lex_state = 226}, + [3356] = {.lex_state = 226}, + [3357] = {.lex_state = 226}, [3358] = {.lex_state = 227}, [3359] = {.lex_state = 227}, [3360] = {.lex_state = 227}, [3361] = {.lex_state = 227}, - [3362] = {.lex_state = 227}, - [3363] = {.lex_state = 227}, - [3364] = {.lex_state = 227}, - [3365] = {.lex_state = 227}, + [3362] = {.lex_state = 226}, + [3363] = {.lex_state = 226}, + [3364] = {.lex_state = 226}, + [3365] = {.lex_state = 226}, [3366] = {.lex_state = 227}, [3367] = {.lex_state = 227}, - [3368] = {.lex_state = 227}, - [3369] = {.lex_state = 228}, - [3370] = {.lex_state = 228}, - [3371] = {.lex_state = 228}, - [3372] = {.lex_state = 228}, - [3373] = {.lex_state = 227}, - [3374] = {.lex_state = 227}, + [3368] = {.lex_state = 226}, + [3369] = {.lex_state = 227}, + [3370] = {.lex_state = 226}, + [3371] = {.lex_state = 226}, + [3372] = {.lex_state = 226}, + [3373] = {.lex_state = 226}, + [3374] = {.lex_state = 226}, [3375] = {.lex_state = 227}, - [3376] = {.lex_state = 227}, - [3377] = {.lex_state = 227}, - [3378] = {.lex_state = 228}, - [3379] = {.lex_state = 227}, - [3380] = {.lex_state = 227}, - [3381] = {.lex_state = 227}, + [3376] = {.lex_state = 226}, + [3377] = {.lex_state = 226}, + [3378] = {.lex_state = 227}, + [3379] = {.lex_state = 226}, + [3380] = {.lex_state = 226}, + [3381] = {.lex_state = 226}, [3382] = {.lex_state = 227}, - [3383] = {.lex_state = 227}, - [3384] = {.lex_state = 228}, + [3383] = {.lex_state = 226}, + [3384] = {.lex_state = 70, .external_lex_state = 61}, [3385] = {.lex_state = 227}, [3386] = {.lex_state = 227}, - [3387] = {.lex_state = 227}, - [3388] = {.lex_state = 227}, - [3389] = {.lex_state = 228}, - [3390] = {.lex_state = 227}, - [3391] = {.lex_state = 227}, - [3392] = {.lex_state = 228}, + [3387] = {.lex_state = 226}, + [3388] = {.lex_state = 70, .external_lex_state = 61}, + [3389] = {.lex_state = 226}, + [3390] = {.lex_state = 226}, + [3391] = {.lex_state = 226}, + [3392] = {.lex_state = 226}, [3393] = {.lex_state = 227}, - [3394] = {.lex_state = 227}, - [3395] = {.lex_state = 228}, - [3396] = {.lex_state = 228}, - [3397] = {.lex_state = 227}, - [3398] = {.lex_state = 227}, - [3399] = {.lex_state = 227}, - [3400] = {.lex_state = 227}, - [3401] = {.lex_state = 227}, + [3394] = {.lex_state = 226}, + [3395] = {.lex_state = 227}, + [3396] = {.lex_state = 226}, + [3397] = {.lex_state = 70, .external_lex_state = 61}, + [3398] = {.lex_state = 226}, + [3399] = {.lex_state = 226}, + [3400] = {.lex_state = 226}, + [3401] = {.lex_state = 70, .external_lex_state = 61}, [3402] = {.lex_state = 227}, - [3403] = {.lex_state = 227}, - [3404] = {.lex_state = 228}, - [3405] = {.lex_state = 227}, - [3406] = {.lex_state = 228}, - [3407] = {.lex_state = 228}, + [3403] = {.lex_state = 226}, + [3404] = {.lex_state = 226}, + [3405] = {.lex_state = 226}, + [3406] = {.lex_state = 226}, + [3407] = {.lex_state = 226}, [3408] = {.lex_state = 227}, - [3409] = {.lex_state = 228}, - [3410] = {.lex_state = 228}, - [3411] = {.lex_state = 227}, + [3409] = {.lex_state = 226}, + [3410] = {.lex_state = 227}, + [3411] = {.lex_state = 226}, [3412] = {.lex_state = 227}, - [3413] = {.lex_state = 227}, - [3414] = {.lex_state = 227}, - [3415] = {.lex_state = 227}, + [3413] = {.lex_state = 226}, + [3414] = {.lex_state = 226}, + [3415] = {.lex_state = 70, .external_lex_state = 61}, [3416] = {.lex_state = 227}, - [3417] = {.lex_state = 227}, - [3418] = {.lex_state = 228}, - [3419] = {.lex_state = 227}, - [3420] = {.lex_state = 227}, - [3421] = {.lex_state = 228}, - [3422] = {.lex_state = 227}, - [3423] = {.lex_state = 228}, - [3424] = {.lex_state = 228}, - [3425] = {.lex_state = 227}, - [3426] = {.lex_state = 227}, - [3427] = {.lex_state = 227}, - [3428] = {.lex_state = 227}, + [3417] = {.lex_state = 226}, + [3418] = {.lex_state = 227}, + [3419] = {.lex_state = 226}, + [3420] = {.lex_state = 70, .external_lex_state = 61}, + [3421] = {.lex_state = 226}, + [3422] = {.lex_state = 70, .external_lex_state = 61}, + [3423] = {.lex_state = 227}, + [3424] = {.lex_state = 226}, + [3425] = {.lex_state = 226}, + [3426] = {.lex_state = 226}, + [3427] = {.lex_state = 226}, + [3428] = {.lex_state = 226}, [3429] = {.lex_state = 227}, - [3430] = {.lex_state = 227}, - [3431] = {.lex_state = 228}, + [3430] = {.lex_state = 226}, + [3431] = {.lex_state = 227}, [3432] = {.lex_state = 227}, [3433] = {.lex_state = 227}, - [3434] = {.lex_state = 228}, - [3435] = {.lex_state = 227}, - [3436] = {.lex_state = 227}, - [3437] = {.lex_state = 227}, - [3438] = {.lex_state = 227}, - [3439] = {.lex_state = 228}, - [3440] = {.lex_state = 228}, + [3434] = {.lex_state = 226}, + [3435] = {.lex_state = 226}, + [3436] = {.lex_state = 226}, + [3437] = {.lex_state = 226}, + [3438] = {.lex_state = 226}, + [3439] = {.lex_state = 226}, + [3440] = {.lex_state = 226}, [3441] = {.lex_state = 227}, - [3442] = {.lex_state = 228}, - [3443] = {.lex_state = 228}, - [3444] = {.lex_state = 73, .external_lex_state = 59}, - [3445] = {.lex_state = 227}, + [3442] = {.lex_state = 226}, + [3443] = {.lex_state = 226}, + [3444] = {.lex_state = 227}, + [3445] = {.lex_state = 226}, [3446] = {.lex_state = 227}, - [3447] = {.lex_state = 228}, - [3448] = {.lex_state = 228}, - [3449] = {.lex_state = 227}, - [3450] = {.lex_state = 227}, - [3451] = {.lex_state = 227}, - [3452] = {.lex_state = 228}, - [3453] = {.lex_state = 227}, - [3454] = {.lex_state = 227}, - [3455] = {.lex_state = 73, .external_lex_state = 59}, - [3456] = {.lex_state = 73, .external_lex_state = 59}, - [3457] = {.lex_state = 228}, + [3447] = {.lex_state = 227}, + [3448] = {.lex_state = 227}, + [3449] = {.lex_state = 226}, + [3450] = {.lex_state = 226}, + [3451] = {.lex_state = 226}, + [3452] = {.lex_state = 226}, + [3453] = {.lex_state = 226}, + [3454] = {.lex_state = 226}, + [3455] = {.lex_state = 227}, + [3456] = {.lex_state = 226}, + [3457] = {.lex_state = 227}, [3458] = {.lex_state = 227}, - [3459] = {.lex_state = 73, .external_lex_state = 52}, - [3460] = {.lex_state = 73, .external_lex_state = 59}, - [3461] = {.lex_state = 73, .external_lex_state = 59}, - [3462] = {.lex_state = 73, .external_lex_state = 52}, - [3463] = {.lex_state = 73, .external_lex_state = 52}, - [3464] = {.lex_state = 73, .external_lex_state = 59}, - [3465] = {.lex_state = 73, .external_lex_state = 59}, - [3466] = {.lex_state = 73, .external_lex_state = 59}, - [3467] = {.lex_state = 73, .external_lex_state = 52}, - [3468] = {.lex_state = 73, .external_lex_state = 52}, - [3469] = {.lex_state = 73, .external_lex_state = 59}, - [3470] = {.lex_state = 73, .external_lex_state = 59}, - [3471] = {.lex_state = 73, .external_lex_state = 52}, - [3472] = {.lex_state = 421, .external_lex_state = 44}, - [3473] = {.lex_state = 73, .external_lex_state = 59}, - [3474] = {.lex_state = 73, .external_lex_state = 59}, - [3475] = {.lex_state = 73, .external_lex_state = 59}, - [3476] = {.lex_state = 73, .external_lex_state = 52}, - [3477] = {.lex_state = 73, .external_lex_state = 59}, - [3478] = {.lex_state = 73, .external_lex_state = 59}, - [3479] = {.lex_state = 229}, - [3480] = {.lex_state = 73, .external_lex_state = 59}, - [3481] = {.lex_state = 73, .external_lex_state = 52}, - [3482] = {.lex_state = 73, .external_lex_state = 59}, - [3483] = {.lex_state = 73, .external_lex_state = 52}, - [3484] = {.lex_state = 73, .external_lex_state = 52}, - [3485] = {.lex_state = 73, .external_lex_state = 59}, - [3486] = {.lex_state = 73, .external_lex_state = 59}, - [3487] = {.lex_state = 73, .external_lex_state = 59}, - [3488] = {.lex_state = 73, .external_lex_state = 59}, - [3489] = {.lex_state = 73, .external_lex_state = 59}, - [3490] = {.lex_state = 73, .external_lex_state = 52}, - [3491] = {.lex_state = 73, .external_lex_state = 52}, - [3492] = {.lex_state = 230}, - [3493] = {.lex_state = 248, .external_lex_state = 60}, - [3494] = {.lex_state = 73, .external_lex_state = 52}, - [3495] = {.lex_state = 230}, - [3496] = {.lex_state = 230}, - [3497] = {.lex_state = 248, .external_lex_state = 60}, - [3498] = {.lex_state = 230}, - [3499] = {.lex_state = 248, .external_lex_state = 60}, - [3500] = {.lex_state = 212, .external_lex_state = 61}, - [3501] = {.lex_state = 257, .external_lex_state = 58}, - [3502] = {.lex_state = 248, .external_lex_state = 60}, - [3503] = {.lex_state = 230}, - [3504] = {.lex_state = 212, .external_lex_state = 61}, - [3505] = {.lex_state = 248, .external_lex_state = 60}, - [3506] = {.lex_state = 230}, - [3507] = {.lex_state = 212, .external_lex_state = 61}, - [3508] = {.lex_state = 230}, - [3509] = {.lex_state = 248, .external_lex_state = 60}, - [3510] = {.lex_state = 248, .external_lex_state = 60}, - [3511] = {.lex_state = 248, .external_lex_state = 60}, - [3512] = {.lex_state = 248, .external_lex_state = 60}, - [3513] = {.lex_state = 254, .external_lex_state = 62}, - [3514] = {.lex_state = 253, .external_lex_state = 51}, - [3515] = {.lex_state = 258}, - [3516] = {.lex_state = 254, .external_lex_state = 62}, - [3517] = {.lex_state = 254, .external_lex_state = 62}, - [3518] = {.lex_state = 73, .external_lex_state = 52}, - [3519] = {.lex_state = 254, .external_lex_state = 62}, - [3520] = {.lex_state = 254, .external_lex_state = 62}, - [3521] = {.lex_state = 73, .external_lex_state = 52}, - [3522] = {.lex_state = 254, .external_lex_state = 62}, - [3523] = {.lex_state = 254, .external_lex_state = 62}, - [3524] = {.lex_state = 254, .external_lex_state = 62}, - [3525] = {.lex_state = 254, .external_lex_state = 62}, - [3526] = {.lex_state = 254, .external_lex_state = 62}, - [3527] = {.lex_state = 254, .external_lex_state = 62}, - [3528] = {.lex_state = 254}, - [3529] = {.lex_state = 72, .external_lex_state = 63}, - [3530] = {.lex_state = 254}, - [3531] = {.lex_state = 75, .external_lex_state = 64}, - [3532] = {.lex_state = 75, .external_lex_state = 64}, - [3533] = {.lex_state = 75, .external_lex_state = 64}, - [3534] = {.lex_state = 257}, - [3535] = {.lex_state = 75, .external_lex_state = 64}, - [3536] = {.lex_state = 75, .external_lex_state = 64}, - [3537] = {.lex_state = 75, .external_lex_state = 64}, - [3538] = {.lex_state = 75, .external_lex_state = 64}, - [3539] = {.lex_state = 257}, - [3540] = {.lex_state = 257}, - [3541] = {.lex_state = 75, .external_lex_state = 64}, - [3542] = {.lex_state = 257}, - [3543] = {.lex_state = 257}, - [3544] = {.lex_state = 257}, - [3545] = {.lex_state = 257}, - [3546] = {.lex_state = 257}, - [3547] = {.lex_state = 257}, - [3548] = {.lex_state = 257}, - [3549] = {.lex_state = 257}, - [3550] = {.lex_state = 257}, - [3551] = {.lex_state = 257}, - [3552] = {.lex_state = 257}, - [3553] = {.lex_state = 257}, - [3554] = {.lex_state = 257}, - [3555] = {.lex_state = 75, .external_lex_state = 64}, - [3556] = {.lex_state = 257}, - [3557] = {.lex_state = 257}, - [3558] = {.lex_state = 257}, - [3559] = {.lex_state = 75, .external_lex_state = 64}, - [3560] = {.lex_state = 75, .external_lex_state = 64}, - [3561] = {.lex_state = 212}, - [3562] = {.lex_state = 75, .external_lex_state = 64}, - [3563] = {.lex_state = 212}, - [3564] = {.lex_state = 75, .external_lex_state = 44}, - [3565] = {.lex_state = 212}, - [3566] = {.lex_state = 212}, - [3567] = {.lex_state = 212}, - [3568] = {.lex_state = 212}, - [3569] = {.lex_state = 75, .external_lex_state = 44}, - [3570] = {.lex_state = 212}, - [3571] = {.lex_state = 212, .external_lex_state = 61}, - [3572] = {.lex_state = 212}, - [3573] = {.lex_state = 212}, - [3574] = {.lex_state = 212}, - [3575] = {.lex_state = 212, .external_lex_state = 61}, - [3576] = {.lex_state = 212, .external_lex_state = 61}, - [3577] = {.lex_state = 212}, - [3578] = {.lex_state = 212}, - [3579] = {.lex_state = 212}, - [3580] = {.lex_state = 212, .external_lex_state = 61}, - [3581] = {.lex_state = 212, .external_lex_state = 61}, - [3582] = {.lex_state = 75, .external_lex_state = 64}, - [3583] = {.lex_state = 75, .external_lex_state = 44}, - [3584] = {.lex_state = 75, .external_lex_state = 64}, - [3585] = {.lex_state = 75, .external_lex_state = 64}, - [3586] = {.lex_state = 75, .external_lex_state = 64}, - [3587] = {.lex_state = 212, .external_lex_state = 61}, - [3588] = {.lex_state = 75, .external_lex_state = 64}, - [3589] = {.lex_state = 75, .external_lex_state = 64}, - [3590] = {.lex_state = 75, .external_lex_state = 64}, - [3591] = {.lex_state = 75, .external_lex_state = 64}, - [3592] = {.lex_state = 75, .external_lex_state = 64}, - [3593] = {.lex_state = 75, .external_lex_state = 64}, - [3594] = {.lex_state = 75, .external_lex_state = 64}, - [3595] = {.lex_state = 75, .external_lex_state = 44}, - [3596] = {.lex_state = 212}, - [3597] = {.lex_state = 75, .external_lex_state = 64}, - [3598] = {.lex_state = 212}, - [3599] = {.lex_state = 75, .external_lex_state = 64}, - [3600] = {.lex_state = 75, .external_lex_state = 64}, - [3601] = {.lex_state = 212}, - [3602] = {.lex_state = 212}, - [3603] = {.lex_state = 75, .external_lex_state = 64}, - [3604] = {.lex_state = 212, .external_lex_state = 61}, - [3605] = {.lex_state = 75, .external_lex_state = 64}, - [3606] = {.lex_state = 212}, - [3607] = {.lex_state = 212}, - [3608] = {.lex_state = 212}, - [3609] = {.lex_state = 212}, - [3610] = {.lex_state = 212}, - [3611] = {.lex_state = 212}, - [3612] = {.lex_state = 212}, - [3613] = {.lex_state = 75, .external_lex_state = 64}, - [3614] = {.lex_state = 260, .external_lex_state = 65}, - [3615] = {.lex_state = 258}, - [3616] = {.lex_state = 237, .external_lex_state = 62}, - [3617] = {.lex_state = 237, .external_lex_state = 62}, - [3618] = {.lex_state = 258}, - [3619] = {.lex_state = 237, .external_lex_state = 62}, - [3620] = {.lex_state = 237, .external_lex_state = 62}, - [3621] = {.lex_state = 258}, - [3622] = {.lex_state = 75, .external_lex_state = 44}, - [3623] = {.lex_state = 258}, - [3624] = {.lex_state = 71, .external_lex_state = 44}, - [3625] = {.lex_state = 71, .external_lex_state = 44}, - [3626] = {.lex_state = 71, .external_lex_state = 44}, - [3627] = {.lex_state = 237, .external_lex_state = 62}, - [3628] = {.lex_state = 237, .external_lex_state = 62}, - [3629] = {.lex_state = 71, .external_lex_state = 44}, - [3630] = {.lex_state = 71, .external_lex_state = 44}, - [3631] = {.lex_state = 237, .external_lex_state = 62}, - [3632] = {.lex_state = 237, .external_lex_state = 62}, - [3633] = {.lex_state = 237, .external_lex_state = 62}, - [3634] = {.lex_state = 258}, - [3635] = {.lex_state = 71, .external_lex_state = 44}, - [3636] = {.lex_state = 71, .external_lex_state = 44}, - [3637] = {.lex_state = 71, .external_lex_state = 44}, - [3638] = {.lex_state = 250, .external_lex_state = 66}, - [3639] = {.lex_state = 258}, - [3640] = {.lex_state = 260, .external_lex_state = 65}, - [3641] = {.lex_state = 260, .external_lex_state = 65}, - [3642] = {.lex_state = 212, .external_lex_state = 67}, - [3643] = {.lex_state = 435, .external_lex_state = 68}, - [3644] = {.lex_state = 435, .external_lex_state = 68}, - [3645] = {.lex_state = 212, .external_lex_state = 67}, - [3646] = {.lex_state = 212, .external_lex_state = 67}, - [3647] = {.lex_state = 435, .external_lex_state = 68}, - [3648] = {.lex_state = 212, .external_lex_state = 67}, - [3649] = {.lex_state = 212, .external_lex_state = 67}, - [3650] = {.lex_state = 212, .external_lex_state = 67}, - [3651] = {.lex_state = 435, .external_lex_state = 68}, - [3652] = {.lex_state = 435, .external_lex_state = 68}, - [3653] = {.lex_state = 435, .external_lex_state = 68}, - [3654] = {.lex_state = 435, .external_lex_state = 68}, - [3655] = {.lex_state = 257}, - [3656] = {.lex_state = 435, .external_lex_state = 68}, - [3657] = {.lex_state = 260, .external_lex_state = 65}, - [3658] = {.lex_state = 212, .external_lex_state = 69}, - [3659] = {.lex_state = 435, .external_lex_state = 68}, - [3660] = {.lex_state = 212, .external_lex_state = 69}, - [3661] = {.lex_state = 257}, - [3662] = {.lex_state = 212, .external_lex_state = 69}, - [3663] = {.lex_state = 237, .external_lex_state = 62}, - [3664] = {.lex_state = 212, .external_lex_state = 69}, - [3665] = {.lex_state = 260, .external_lex_state = 65}, - [3666] = {.lex_state = 235}, - [3667] = {.lex_state = 75, .external_lex_state = 44}, - [3668] = {.lex_state = 212, .external_lex_state = 67}, - [3669] = {.lex_state = 435, .external_lex_state = 68}, - [3670] = {.lex_state = 260, .external_lex_state = 65}, - [3671] = {.lex_state = 435, .external_lex_state = 68}, - [3672] = {.lex_state = 235}, - [3673] = {.lex_state = 257}, - [3674] = {.lex_state = 212, .external_lex_state = 67}, - [3675] = {.lex_state = 237, .external_lex_state = 62}, - [3676] = {.lex_state = 237, .external_lex_state = 62}, - [3677] = {.lex_state = 435, .external_lex_state = 68}, - [3678] = {.lex_state = 435, .external_lex_state = 68}, - [3679] = {.lex_state = 435, .external_lex_state = 68}, - [3680] = {.lex_state = 435, .external_lex_state = 68}, - [3681] = {.lex_state = 212, .external_lex_state = 67}, - [3682] = {.lex_state = 435, .external_lex_state = 68}, - [3683] = {.lex_state = 435, .external_lex_state = 68}, - [3684] = {.lex_state = 435, .external_lex_state = 68}, - [3685] = {.lex_state = 212, .external_lex_state = 67}, - [3686] = {.lex_state = 435, .external_lex_state = 68}, - [3687] = {.lex_state = 212, .external_lex_state = 67}, - [3688] = {.lex_state = 435, .external_lex_state = 68}, - [3689] = {.lex_state = 212, .external_lex_state = 67}, - [3690] = {.lex_state = 212, .external_lex_state = 67}, - [3691] = {.lex_state = 75, .external_lex_state = 44}, - [3692] = {.lex_state = 435, .external_lex_state = 68}, - [3693] = {.lex_state = 435, .external_lex_state = 68}, - [3694] = {.lex_state = 75, .external_lex_state = 44}, - [3695] = {.lex_state = 435, .external_lex_state = 68}, - [3696] = {.lex_state = 237, .external_lex_state = 62}, - [3697] = {.lex_state = 71, .external_lex_state = 44}, - [3698] = {.lex_state = 75, .external_lex_state = 44}, - [3699] = {.lex_state = 75, .external_lex_state = 44}, - [3700] = {.lex_state = 237, .external_lex_state = 62}, - [3701] = {.lex_state = 75, .external_lex_state = 44}, - [3702] = {.lex_state = 258}, - [3703] = {.lex_state = 435, .external_lex_state = 68}, - [3704] = {.lex_state = 235}, - [3705] = {.lex_state = 235}, - [3706] = {.lex_state = 212, .external_lex_state = 67}, - [3707] = {.lex_state = 237, .external_lex_state = 62}, - [3708] = {.lex_state = 71, .external_lex_state = 44}, - [3709] = {.lex_state = 260, .external_lex_state = 65}, - [3710] = {.lex_state = 71, .external_lex_state = 44}, - [3711] = {.lex_state = 237, .external_lex_state = 62}, - [3712] = {.lex_state = 237, .external_lex_state = 62}, - [3713] = {.lex_state = 260, .external_lex_state = 65}, - [3714] = {.lex_state = 257}, - [3715] = {.lex_state = 237, .external_lex_state = 62}, - [3716] = {.lex_state = 214}, - [3717] = {.lex_state = 260, .external_lex_state = 65}, - [3718] = {.lex_state = 235}, - [3719] = {.lex_state = 237, .external_lex_state = 62}, - [3720] = {.lex_state = 260, .external_lex_state = 65}, - [3721] = {.lex_state = 260, .external_lex_state = 65}, - [3722] = {.lex_state = 219, .external_lex_state = 65}, - [3723] = {.lex_state = 237, .external_lex_state = 62}, - [3724] = {.lex_state = 237, .external_lex_state = 62}, - [3725] = {.lex_state = 237, .external_lex_state = 62}, - [3726] = {.lex_state = 237, .external_lex_state = 62}, - [3727] = {.lex_state = 260, .external_lex_state = 65}, - [3728] = {.lex_state = 237, .external_lex_state = 62}, - [3729] = {.lex_state = 237, .external_lex_state = 62}, - [3730] = {.lex_state = 237, .external_lex_state = 62}, - [3731] = {.lex_state = 260, .external_lex_state = 65}, - [3732] = {.lex_state = 237, .external_lex_state = 62}, - [3733] = {.lex_state = 260, .external_lex_state = 65}, - [3734] = {.lex_state = 260, .external_lex_state = 65}, - [3735] = {.lex_state = 214}, - [3736] = {.lex_state = 219, .external_lex_state = 65}, - [3737] = {.lex_state = 237, .external_lex_state = 62}, - [3738] = {.lex_state = 235}, - [3739] = {.lex_state = 212, .external_lex_state = 67}, - [3740] = {.lex_state = 237, .external_lex_state = 62}, - [3741] = {.lex_state = 214}, - [3742] = {.lex_state = 237, .external_lex_state = 62}, - [3743] = {.lex_state = 237, .external_lex_state = 62}, - [3744] = {.lex_state = 260, .external_lex_state = 58}, - [3745] = {.lex_state = 260, .external_lex_state = 65}, - [3746] = {.lex_state = 260, .external_lex_state = 65}, - [3747] = {.lex_state = 260, .external_lex_state = 65}, - [3748] = {.lex_state = 212, .external_lex_state = 67}, - [3749] = {.lex_state = 260, .external_lex_state = 58}, - [3750] = {.lex_state = 219, .external_lex_state = 65}, - [3751] = {.lex_state = 212, .external_lex_state = 67}, - [3752] = {.lex_state = 212, .external_lex_state = 67}, - [3753] = {.lex_state = 257}, - [3754] = {.lex_state = 214}, - [3755] = {.lex_state = 212, .external_lex_state = 67}, - [3756] = {.lex_state = 212, .external_lex_state = 67}, - [3757] = {.lex_state = 260, .external_lex_state = 65}, - [3758] = {.lex_state = 260, .external_lex_state = 65}, - [3759] = {.lex_state = 212, .external_lex_state = 67}, - [3760] = {.lex_state = 237, .external_lex_state = 62}, - [3761] = {.lex_state = 214}, - [3762] = {.lex_state = 214}, - [3763] = {.lex_state = 260, .external_lex_state = 65}, - [3764] = {.lex_state = 260, .external_lex_state = 65}, - [3765] = {.lex_state = 71, .external_lex_state = 44}, - [3766] = {.lex_state = 260, .external_lex_state = 65}, - [3767] = {.lex_state = 214}, - [3768] = {.lex_state = 214}, - [3769] = {.lex_state = 260, .external_lex_state = 65}, + [3459] = {.lex_state = 226}, + [3460] = {.lex_state = 226}, + [3461] = {.lex_state = 226}, + [3462] = {.lex_state = 226}, + [3463] = {.lex_state = 227}, + [3464] = {.lex_state = 226}, + [3465] = {.lex_state = 227}, + [3466] = {.lex_state = 227}, + [3467] = {.lex_state = 226}, + [3468] = {.lex_state = 226}, + [3469] = {.lex_state = 227}, + [3470] = {.lex_state = 226}, + [3471] = {.lex_state = 226}, + [3472] = {.lex_state = 226}, + [3473] = {.lex_state = 70, .external_lex_state = 61}, + [3474] = {.lex_state = 228}, + [3475] = {.lex_state = 70, .external_lex_state = 54}, + [3476] = {.lex_state = 70, .external_lex_state = 54}, + [3477] = {.lex_state = 70, .external_lex_state = 61}, + [3478] = {.lex_state = 70, .external_lex_state = 61}, + [3479] = {.lex_state = 70, .external_lex_state = 61}, + [3480] = {.lex_state = 70, .external_lex_state = 54}, + [3481] = {.lex_state = 70, .external_lex_state = 54}, + [3482] = {.lex_state = 70, .external_lex_state = 61}, + [3483] = {.lex_state = 421, .external_lex_state = 45}, + [3484] = {.lex_state = 70, .external_lex_state = 54}, + [3485] = {.lex_state = 70, .external_lex_state = 54}, + [3486] = {.lex_state = 70, .external_lex_state = 61}, + [3487] = {.lex_state = 70, .external_lex_state = 61}, + [3488] = {.lex_state = 70, .external_lex_state = 54}, + [3489] = {.lex_state = 70, .external_lex_state = 61}, + [3490] = {.lex_state = 70, .external_lex_state = 61}, + [3491] = {.lex_state = 70, .external_lex_state = 61}, + [3492] = {.lex_state = 70, .external_lex_state = 54}, + [3493] = {.lex_state = 70, .external_lex_state = 61}, + [3494] = {.lex_state = 70, .external_lex_state = 61}, + [3495] = {.lex_state = 70, .external_lex_state = 61}, + [3496] = {.lex_state = 70, .external_lex_state = 54}, + [3497] = {.lex_state = 70, .external_lex_state = 61}, + [3498] = {.lex_state = 70, .external_lex_state = 61}, + [3499] = {.lex_state = 70, .external_lex_state = 61}, + [3500] = {.lex_state = 70, .external_lex_state = 61}, + [3501] = {.lex_state = 70, .external_lex_state = 54}, + [3502] = {.lex_state = 70, .external_lex_state = 61}, + [3503] = {.lex_state = 70, .external_lex_state = 54}, + [3504] = {.lex_state = 70, .external_lex_state = 61}, + [3505] = {.lex_state = 70, .external_lex_state = 54}, + [3506] = {.lex_state = 232, .external_lex_state = 62}, + [3507] = {.lex_state = 256, .external_lex_state = 60}, + [3508] = {.lex_state = 232, .external_lex_state = 62}, + [3509] = {.lex_state = 212, .external_lex_state = 63}, + [3510] = {.lex_state = 232, .external_lex_state = 62}, + [3511] = {.lex_state = 229}, + [3512] = {.lex_state = 232, .external_lex_state = 62}, + [3513] = {.lex_state = 212, .external_lex_state = 63}, + [3514] = {.lex_state = 229}, + [3515] = {.lex_state = 229}, + [3516] = {.lex_state = 232, .external_lex_state = 62}, + [3517] = {.lex_state = 229}, + [3518] = {.lex_state = 229}, + [3519] = {.lex_state = 232, .external_lex_state = 62}, + [3520] = {.lex_state = 70, .external_lex_state = 54}, + [3521] = {.lex_state = 212, .external_lex_state = 63}, + [3522] = {.lex_state = 232, .external_lex_state = 62}, + [3523] = {.lex_state = 229}, + [3524] = {.lex_state = 232, .external_lex_state = 62}, + [3525] = {.lex_state = 232, .external_lex_state = 62}, + [3526] = {.lex_state = 229}, + [3527] = {.lex_state = 253, .external_lex_state = 64}, + [3528] = {.lex_state = 252, .external_lex_state = 48}, + [3529] = {.lex_state = 253, .external_lex_state = 64}, + [3530] = {.lex_state = 70, .external_lex_state = 54}, + [3531] = {.lex_state = 253, .external_lex_state = 64}, + [3532] = {.lex_state = 253, .external_lex_state = 64}, + [3533] = {.lex_state = 257}, + [3534] = {.lex_state = 70, .external_lex_state = 54}, + [3535] = {.lex_state = 253, .external_lex_state = 64}, + [3536] = {.lex_state = 253, .external_lex_state = 64}, + [3537] = {.lex_state = 253, .external_lex_state = 64}, + [3538] = {.lex_state = 253, .external_lex_state = 64}, + [3539] = {.lex_state = 253, .external_lex_state = 64}, + [3540] = {.lex_state = 253, .external_lex_state = 64}, + [3541] = {.lex_state = 253, .external_lex_state = 64}, + [3542] = {.lex_state = 253}, + [3543] = {.lex_state = 69, .external_lex_state = 65}, + [3544] = {.lex_state = 72, .external_lex_state = 66}, + [3545] = {.lex_state = 253}, + [3546] = {.lex_state = 256}, + [3547] = {.lex_state = 256}, + [3548] = {.lex_state = 256}, + [3549] = {.lex_state = 72, .external_lex_state = 66}, + [3550] = {.lex_state = 256}, + [3551] = {.lex_state = 256}, + [3552] = {.lex_state = 256}, + [3553] = {.lex_state = 256}, + [3554] = {.lex_state = 256}, + [3555] = {.lex_state = 72, .external_lex_state = 66}, + [3556] = {.lex_state = 256}, + [3557] = {.lex_state = 256}, + [3558] = {.lex_state = 256}, + [3559] = {.lex_state = 256}, + [3560] = {.lex_state = 72, .external_lex_state = 66}, + [3561] = {.lex_state = 256}, + [3562] = {.lex_state = 72, .external_lex_state = 66}, + [3563] = {.lex_state = 256}, + [3564] = {.lex_state = 72, .external_lex_state = 66}, + [3565] = {.lex_state = 256}, + [3566] = {.lex_state = 256}, + [3567] = {.lex_state = 256}, + [3568] = {.lex_state = 256}, + [3569] = {.lex_state = 72, .external_lex_state = 66}, + [3570] = {.lex_state = 72, .external_lex_state = 66}, + [3571] = {.lex_state = 72, .external_lex_state = 66}, + [3572] = {.lex_state = 256}, + [3573] = {.lex_state = 72, .external_lex_state = 66}, + [3574] = {.lex_state = 219}, + [3575] = {.lex_state = 72, .external_lex_state = 66}, + [3576] = {.lex_state = 72, .external_lex_state = 66}, + [3577] = {.lex_state = 72, .external_lex_state = 66}, + [3578] = {.lex_state = 219}, + [3579] = {.lex_state = 219}, + [3580] = {.lex_state = 219}, + [3581] = {.lex_state = 219}, + [3582] = {.lex_state = 219}, + [3583] = {.lex_state = 72, .external_lex_state = 66}, + [3584] = {.lex_state = 72, .external_lex_state = 66}, + [3585] = {.lex_state = 219}, + [3586] = {.lex_state = 212, .external_lex_state = 63}, + [3587] = {.lex_state = 219}, + [3588] = {.lex_state = 219}, + [3589] = {.lex_state = 219}, + [3590] = {.lex_state = 212, .external_lex_state = 63}, + [3591] = {.lex_state = 72, .external_lex_state = 66}, + [3592] = {.lex_state = 212, .external_lex_state = 63}, + [3593] = {.lex_state = 219}, + [3594] = {.lex_state = 219}, + [3595] = {.lex_state = 219}, + [3596] = {.lex_state = 72, .external_lex_state = 45}, + [3597] = {.lex_state = 212, .external_lex_state = 63}, + [3598] = {.lex_state = 219}, + [3599] = {.lex_state = 72, .external_lex_state = 45}, + [3600] = {.lex_state = 219}, + [3601] = {.lex_state = 212, .external_lex_state = 63}, + [3602] = {.lex_state = 72, .external_lex_state = 66}, + [3603] = {.lex_state = 219}, + [3604] = {.lex_state = 72, .external_lex_state = 66}, + [3605] = {.lex_state = 212, .external_lex_state = 63}, + [3606] = {.lex_state = 72, .external_lex_state = 66}, + [3607] = {.lex_state = 72, .external_lex_state = 45}, + [3608] = {.lex_state = 72, .external_lex_state = 66}, + [3609] = {.lex_state = 219}, + [3610] = {.lex_state = 72, .external_lex_state = 66}, + [3611] = {.lex_state = 72, .external_lex_state = 66}, + [3612] = {.lex_state = 72, .external_lex_state = 66}, + [3613] = {.lex_state = 72, .external_lex_state = 66}, + [3614] = {.lex_state = 72, .external_lex_state = 66}, + [3615] = {.lex_state = 212, .external_lex_state = 63}, + [3616] = {.lex_state = 72, .external_lex_state = 45}, + [3617] = {.lex_state = 219}, + [3618] = {.lex_state = 72, .external_lex_state = 66}, + [3619] = {.lex_state = 219}, + [3620] = {.lex_state = 219}, + [3621] = {.lex_state = 219}, + [3622] = {.lex_state = 219}, + [3623] = {.lex_state = 219}, + [3624] = {.lex_state = 72, .external_lex_state = 66}, + [3625] = {.lex_state = 72, .external_lex_state = 66}, + [3626] = {.lex_state = 219}, + [3627] = {.lex_state = 72, .external_lex_state = 66}, + [3628] = {.lex_state = 68, .external_lex_state = 45}, + [3629] = {.lex_state = 236, .external_lex_state = 64}, + [3630] = {.lex_state = 257}, + [3631] = {.lex_state = 68, .external_lex_state = 45}, + [3632] = {.lex_state = 236, .external_lex_state = 64}, + [3633] = {.lex_state = 68, .external_lex_state = 45}, + [3634] = {.lex_state = 236, .external_lex_state = 64}, + [3635] = {.lex_state = 68, .external_lex_state = 45}, + [3636] = {.lex_state = 236, .external_lex_state = 64}, + [3637] = {.lex_state = 257}, + [3638] = {.lex_state = 260, .external_lex_state = 67}, + [3639] = {.lex_state = 257}, + [3640] = {.lex_state = 236, .external_lex_state = 64}, + [3641] = {.lex_state = 236, .external_lex_state = 64}, + [3642] = {.lex_state = 236, .external_lex_state = 64}, + [3643] = {.lex_state = 257}, + [3644] = {.lex_state = 236, .external_lex_state = 64}, + [3645] = {.lex_state = 257}, + [3646] = {.lex_state = 68, .external_lex_state = 45}, + [3647] = {.lex_state = 249, .external_lex_state = 68}, + [3648] = {.lex_state = 68, .external_lex_state = 45}, + [3649] = {.lex_state = 236, .external_lex_state = 64}, + [3650] = {.lex_state = 257}, + [3651] = {.lex_state = 72, .external_lex_state = 45}, + [3652] = {.lex_state = 68, .external_lex_state = 45}, + [3653] = {.lex_state = 68, .external_lex_state = 45}, + [3654] = {.lex_state = 435, .external_lex_state = 69}, + [3655] = {.lex_state = 212, .external_lex_state = 70}, + [3656] = {.lex_state = 212, .external_lex_state = 70}, + [3657] = {.lex_state = 435, .external_lex_state = 69}, + [3658] = {.lex_state = 72, .external_lex_state = 45}, + [3659] = {.lex_state = 435, .external_lex_state = 69}, + [3660] = {.lex_state = 435, .external_lex_state = 69}, + [3661] = {.lex_state = 435, .external_lex_state = 69}, + [3662] = {.lex_state = 435, .external_lex_state = 69}, + [3663] = {.lex_state = 435, .external_lex_state = 69}, + [3664] = {.lex_state = 212, .external_lex_state = 70}, + [3665] = {.lex_state = 212, .external_lex_state = 70}, + [3666] = {.lex_state = 212, .external_lex_state = 70}, + [3667] = {.lex_state = 435, .external_lex_state = 69}, + [3668] = {.lex_state = 72, .external_lex_state = 45}, + [3669] = {.lex_state = 236, .external_lex_state = 64}, + [3670] = {.lex_state = 236, .external_lex_state = 64}, + [3671] = {.lex_state = 256}, + [3672] = {.lex_state = 212, .external_lex_state = 70}, + [3673] = {.lex_state = 236, .external_lex_state = 64}, + [3674] = {.lex_state = 256}, + [3675] = {.lex_state = 212, .external_lex_state = 71}, + [3676] = {.lex_state = 212, .external_lex_state = 71}, + [3677] = {.lex_state = 435, .external_lex_state = 69}, + [3678] = {.lex_state = 234}, + [3679] = {.lex_state = 212, .external_lex_state = 71}, + [3680] = {.lex_state = 212, .external_lex_state = 71}, + [3681] = {.lex_state = 234}, + [3682] = {.lex_state = 435, .external_lex_state = 69}, + [3683] = {.lex_state = 212, .external_lex_state = 70}, + [3684] = {.lex_state = 435, .external_lex_state = 69}, + [3685] = {.lex_state = 435, .external_lex_state = 69}, + [3686] = {.lex_state = 72, .external_lex_state = 45}, + [3687] = {.lex_state = 212, .external_lex_state = 70}, + [3688] = {.lex_state = 260, .external_lex_state = 67}, + [3689] = {.lex_state = 435, .external_lex_state = 69}, + [3690] = {.lex_state = 212, .external_lex_state = 70}, + [3691] = {.lex_state = 212, .external_lex_state = 70}, + [3692] = {.lex_state = 72, .external_lex_state = 45}, + [3693] = {.lex_state = 260, .external_lex_state = 67}, + [3694] = {.lex_state = 435, .external_lex_state = 69}, + [3695] = {.lex_state = 260, .external_lex_state = 67}, + [3696] = {.lex_state = 212, .external_lex_state = 70}, + [3697] = {.lex_state = 212, .external_lex_state = 70}, + [3698] = {.lex_state = 435, .external_lex_state = 69}, + [3699] = {.lex_state = 72, .external_lex_state = 45}, + [3700] = {.lex_state = 256}, + [3701] = {.lex_state = 68, .external_lex_state = 45}, + [3702] = {.lex_state = 257}, + [3703] = {.lex_state = 234}, + [3704] = {.lex_state = 72, .external_lex_state = 45}, + [3705] = {.lex_state = 435, .external_lex_state = 69}, + [3706] = {.lex_state = 435, .external_lex_state = 69}, + [3707] = {.lex_state = 435, .external_lex_state = 69}, + [3708] = {.lex_state = 435, .external_lex_state = 69}, + [3709] = {.lex_state = 212, .external_lex_state = 70}, + [3710] = {.lex_state = 435, .external_lex_state = 69}, + [3711] = {.lex_state = 435, .external_lex_state = 69}, + [3712] = {.lex_state = 260, .external_lex_state = 67}, + [3713] = {.lex_state = 260, .external_lex_state = 67}, + [3714] = {.lex_state = 435, .external_lex_state = 69}, + [3715] = {.lex_state = 234}, + [3716] = {.lex_state = 236, .external_lex_state = 64}, + [3717] = {.lex_state = 236, .external_lex_state = 64}, + [3718] = {.lex_state = 435, .external_lex_state = 69}, + [3719] = {.lex_state = 435, .external_lex_state = 69}, + [3720] = {.lex_state = 214}, + [3721] = {.lex_state = 214}, + [3722] = {.lex_state = 214}, + [3723] = {.lex_state = 234}, + [3724] = {.lex_state = 214}, + [3725] = {.lex_state = 260, .external_lex_state = 60}, + [3726] = {.lex_state = 217, .external_lex_state = 67}, + [3727] = {.lex_state = 256}, + [3728] = {.lex_state = 217, .external_lex_state = 67}, + [3729] = {.lex_state = 214}, + [3730] = {.lex_state = 214}, + [3731] = {.lex_state = 214}, + [3732] = {.lex_state = 214}, + [3733] = {.lex_state = 260, .external_lex_state = 67}, + [3734] = {.lex_state = 260, .external_lex_state = 67}, + [3735] = {.lex_state = 68, .external_lex_state = 45}, + [3736] = {.lex_state = 260, .external_lex_state = 67}, + [3737] = {.lex_state = 260, .external_lex_state = 67}, + [3738] = {.lex_state = 212, .external_lex_state = 70}, + [3739] = {.lex_state = 260, .external_lex_state = 67}, + [3740] = {.lex_state = 212, .external_lex_state = 70}, + [3741] = {.lex_state = 212, .external_lex_state = 70}, + [3742] = {.lex_state = 212, .external_lex_state = 70}, + [3743] = {.lex_state = 260, .external_lex_state = 60}, + [3744] = {.lex_state = 212, .external_lex_state = 70}, + [3745] = {.lex_state = 256}, + [3746] = {.lex_state = 68, .external_lex_state = 45}, + [3747] = {.lex_state = 260, .external_lex_state = 67}, + [3748] = {.lex_state = 214}, + [3749] = {.lex_state = 260, .external_lex_state = 67}, + [3750] = {.lex_state = 260, .external_lex_state = 67}, + [3751] = {.lex_state = 212, .external_lex_state = 70}, + [3752] = {.lex_state = 260, .external_lex_state = 67}, + [3753] = {.lex_state = 260, .external_lex_state = 67}, + [3754] = {.lex_state = 260, .external_lex_state = 67}, + [3755] = {.lex_state = 212, .external_lex_state = 70}, + [3756] = {.lex_state = 260, .external_lex_state = 67}, + [3757] = {.lex_state = 217, .external_lex_state = 67}, + [3758] = {.lex_state = 260, .external_lex_state = 67}, + [3759] = {.lex_state = 236, .external_lex_state = 64}, + [3760] = {.lex_state = 236, .external_lex_state = 64}, + [3761] = {.lex_state = 260, .external_lex_state = 67}, + [3762] = {.lex_state = 236, .external_lex_state = 64}, + [3763] = {.lex_state = 236, .external_lex_state = 64}, + [3764] = {.lex_state = 236, .external_lex_state = 64}, + [3765] = {.lex_state = 236, .external_lex_state = 64}, + [3766] = {.lex_state = 214}, + [3767] = {.lex_state = 236, .external_lex_state = 64}, + [3768] = {.lex_state = 260, .external_lex_state = 67}, + [3769] = {.lex_state = 236, .external_lex_state = 64}, [3770] = {.lex_state = 214}, - [3771] = {.lex_state = 257}, - [3772] = {.lex_state = 260, .external_lex_state = 65}, - [3773] = {.lex_state = 237, .external_lex_state = 62}, + [3771] = {.lex_state = 236, .external_lex_state = 64}, + [3772] = {.lex_state = 68, .external_lex_state = 45}, + [3773] = {.lex_state = 236, .external_lex_state = 64}, [3774] = {.lex_state = 214}, - [3775] = {.lex_state = 214}, - [3776] = {.lex_state = 214}, - [3777] = {.lex_state = 435}, - [3778] = {.lex_state = 213}, - [3779] = {.lex_state = 259}, - [3780] = {.lex_state = 259}, - [3781] = {.lex_state = 213}, - [3782] = {.lex_state = 435}, - [3783] = {.lex_state = 435}, - [3784] = {.lex_state = 259}, - [3785] = {.lex_state = 259}, - [3786] = {.lex_state = 259}, - [3787] = {.lex_state = 213}, - [3788] = {.lex_state = 213}, - [3789] = {.lex_state = 435}, - [3790] = {.lex_state = 213}, - [3791] = {.lex_state = 260, .external_lex_state = 58}, - [3792] = {.lex_state = 435}, - [3793] = {.lex_state = 435}, - [3794] = {.lex_state = 213}, - [3795] = {.lex_state = 435}, - [3796] = {.lex_state = 259}, - [3797] = {.lex_state = 213}, - [3798] = {.lex_state = 213}, - [3799] = {.lex_state = 259}, - [3800] = {.lex_state = 435}, - [3801] = {.lex_state = 213}, + [3775] = {.lex_state = 260, .external_lex_state = 67}, + [3776] = {.lex_state = 236, .external_lex_state = 64}, + [3777] = {.lex_state = 236, .external_lex_state = 64}, + [3778] = {.lex_state = 234}, + [3779] = {.lex_state = 260, .external_lex_state = 67}, + [3780] = {.lex_state = 256}, + [3781] = {.lex_state = 236, .external_lex_state = 64}, + [3782] = {.lex_state = 236, .external_lex_state = 64}, + [3783] = {.lex_state = 236, .external_lex_state = 64}, + [3784] = {.lex_state = 236, .external_lex_state = 64}, + [3785] = {.lex_state = 260, .external_lex_state = 67}, + [3786] = {.lex_state = 260, .external_lex_state = 67}, + [3787] = {.lex_state = 236, .external_lex_state = 64}, + [3788] = {.lex_state = 236, .external_lex_state = 64}, + [3789] = {.lex_state = 236, .external_lex_state = 64}, + [3790] = {.lex_state = 212, .external_lex_state = 70}, + [3791] = {.lex_state = 214}, + [3792] = {.lex_state = 214}, + [3793] = {.lex_state = 214}, + [3794] = {.lex_state = 435}, + [3795] = {.lex_state = 214}, + [3796] = {.lex_state = 435}, + [3797] = {.lex_state = 259}, + [3798] = {.lex_state = 214}, + [3799] = {.lex_state = 435}, + [3800] = {.lex_state = 259}, + [3801] = {.lex_state = 435}, [3802] = {.lex_state = 435}, - [3803] = {.lex_state = 435}, - [3804] = {.lex_state = 213}, - [3805] = {.lex_state = 213}, + [3803] = {.lex_state = 214}, + [3804] = {.lex_state = 435}, + [3805] = {.lex_state = 214}, [3806] = {.lex_state = 213}, - [3807] = {.lex_state = 213}, - [3808] = {.lex_state = 213}, - [3809] = {.lex_state = 213}, - [3810] = {.lex_state = 213}, - [3811] = {.lex_state = 259}, - [3812] = {.lex_state = 213}, - [3813] = {.lex_state = 213}, - [3814] = {.lex_state = 213}, - [3815] = {.lex_state = 213}, - [3816] = {.lex_state = 213}, - [3817] = {.lex_state = 259}, - [3818] = {.lex_state = 259}, - [3819] = {.lex_state = 259}, - [3820] = {.lex_state = 235}, - [3821] = {.lex_state = 213}, - [3822] = {.lex_state = 213}, - [3823] = {.lex_state = 213}, - [3824] = {.lex_state = 213}, - [3825] = {.lex_state = 259}, - [3826] = {.lex_state = 435}, - [3827] = {.lex_state = 213}, - [3828] = {.lex_state = 435}, - [3829] = {.lex_state = 435}, - [3830] = {.lex_state = 435}, - [3831] = {.lex_state = 259}, - [3832] = {.lex_state = 259}, - [3833] = {.lex_state = 213}, + [3807] = {.lex_state = 435}, + [3808] = {.lex_state = 214}, + [3809] = {.lex_state = 259}, + [3810] = {.lex_state = 214}, + [3811] = {.lex_state = 213}, + [3812] = {.lex_state = 435}, + [3813] = {.lex_state = 214}, + [3814] = {.lex_state = 259}, + [3815] = {.lex_state = 435}, + [3816] = {.lex_state = 435}, + [3817] = {.lex_state = 435}, + [3818] = {.lex_state = 214}, + [3819] = {.lex_state = 214}, + [3820] = {.lex_state = 214}, + [3821] = {.lex_state = 259}, + [3822] = {.lex_state = 214}, + [3823] = {.lex_state = 214}, + [3824] = {.lex_state = 214}, + [3825] = {.lex_state = 214}, + [3826] = {.lex_state = 259}, + [3827] = {.lex_state = 217, .external_lex_state = 67}, + [3828] = {.lex_state = 259}, + [3829] = {.lex_state = 214}, + [3830] = {.lex_state = 259}, + [3831] = {.lex_state = 435}, + [3832] = {.lex_state = 435}, + [3833] = {.lex_state = 435}, [3834] = {.lex_state = 435}, - [3835] = {.lex_state = 435}, + [3835] = {.lex_state = 259}, [3836] = {.lex_state = 214}, - [3837] = {.lex_state = 213}, - [3838] = {.lex_state = 213}, - [3839] = {.lex_state = 435}, + [3837] = {.lex_state = 214}, + [3838] = {.lex_state = 234}, + [3839] = {.lex_state = 214}, [3840] = {.lex_state = 259}, - [3841] = {.lex_state = 213}, - [3842] = {.lex_state = 435}, - [3843] = {.lex_state = 259}, - [3844] = {.lex_state = 213}, + [3841] = {.lex_state = 214}, + [3842] = {.lex_state = 213}, + [3843] = {.lex_state = 214}, + [3844] = {.lex_state = 435}, [3845] = {.lex_state = 214}, [3846] = {.lex_state = 214}, [3847] = {.lex_state = 213}, - [3848] = {.lex_state = 213}, - [3849] = {.lex_state = 259}, - [3850] = {.lex_state = 435}, - [3851] = {.lex_state = 259}, - [3852] = {.lex_state = 213}, - [3853] = {.lex_state = 213}, - [3854] = {.lex_state = 213}, - [3855] = {.lex_state = 213}, - [3856] = {.lex_state = 259}, - [3857] = {.lex_state = 435}, - [3858] = {.lex_state = 259}, - [3859] = {.lex_state = 213}, - [3860] = {.lex_state = 213}, - [3861] = {.lex_state = 435}, - [3862] = {.lex_state = 435}, - [3863] = {.lex_state = 435}, - [3864] = {.lex_state = 213}, - [3865] = {.lex_state = 213}, - [3866] = {.lex_state = 435}, - [3867] = {.lex_state = 435}, - [3868] = {.lex_state = 213}, + [3848] = {.lex_state = 214}, + [3849] = {.lex_state = 214}, + [3850] = {.lex_state = 259}, + [3851] = {.lex_state = 214}, + [3852] = {.lex_state = 214}, + [3853] = {.lex_state = 214}, + [3854] = {.lex_state = 214}, + [3855] = {.lex_state = 259}, + [3856] = {.lex_state = 435}, + [3857] = {.lex_state = 259}, + [3858] = {.lex_state = 214}, + [3859] = {.lex_state = 214}, + [3860] = {.lex_state = 214}, + [3861] = {.lex_state = 214}, + [3862] = {.lex_state = 214}, + [3863] = {.lex_state = 259}, + [3864] = {.lex_state = 214}, + [3865] = {.lex_state = 214}, + [3866] = {.lex_state = 214}, + [3867] = {.lex_state = 214}, + [3868] = {.lex_state = 214}, [3869] = {.lex_state = 435}, - [3870] = {.lex_state = 214}, + [3870] = {.lex_state = 259}, [3871] = {.lex_state = 259}, - [3872] = {.lex_state = 213}, + [3872] = {.lex_state = 259}, [3873] = {.lex_state = 214}, [3874] = {.lex_state = 214}, - [3875] = {.lex_state = 435}, - [3876] = {.lex_state = 435}, - [3877] = {.lex_state = 213}, - [3878] = {.lex_state = 213}, - [3879] = {.lex_state = 248, .external_lex_state = 62}, + [3875] = {.lex_state = 214}, + [3876] = {.lex_state = 259}, + [3877] = {.lex_state = 259}, + [3878] = {.lex_state = 247, .external_lex_state = 64}, + [3879] = {.lex_state = 247, .external_lex_state = 64}, [3880] = {.lex_state = 213}, - [3881] = {.lex_state = 435}, - [3882] = {.lex_state = 435}, - [3883] = {.lex_state = 213}, - [3884] = {.lex_state = 213}, - [3885] = {.lex_state = 213}, - [3886] = {.lex_state = 213}, - [3887] = {.lex_state = 213}, - [3888] = {.lex_state = 213}, - [3889] = {.lex_state = 248, .external_lex_state = 62}, + [3881] = {.lex_state = 259}, + [3882] = {.lex_state = 214}, + [3883] = {.lex_state = 435}, + [3884] = {.lex_state = 214}, + [3885] = {.lex_state = 435}, + [3886] = {.lex_state = 214}, + [3887] = {.lex_state = 214}, + [3888] = {.lex_state = 214}, + [3889] = {.lex_state = 214}, [3890] = {.lex_state = 213}, - [3891] = {.lex_state = 435}, - [3892] = {.lex_state = 248, .external_lex_state = 62}, - [3893] = {.lex_state = 213}, - [3894] = {.lex_state = 213}, - [3895] = {.lex_state = 214}, - [3896] = {.lex_state = 213}, - [3897] = {.lex_state = 248, .external_lex_state = 62}, - [3898] = {.lex_state = 213}, - [3899] = {.lex_state = 213}, - [3900] = {.lex_state = 219, .external_lex_state = 65}, - [3901] = {.lex_state = 213}, - [3902] = {.lex_state = 435}, - [3903] = {.lex_state = 213}, - [3904] = {.lex_state = 185, .external_lex_state = 62}, - [3905] = {.lex_state = 213}, - [3906] = {.lex_state = 213}, - [3907] = {.lex_state = 213}, + [3891] = {.lex_state = 185, .external_lex_state = 64}, + [3892] = {.lex_state = 214}, + [3893] = {.lex_state = 259}, + [3894] = {.lex_state = 259}, + [3895] = {.lex_state = 435}, + [3896] = {.lex_state = 214}, + [3897] = {.lex_state = 214}, + [3898] = {.lex_state = 214}, + [3899] = {.lex_state = 435}, + [3900] = {.lex_state = 435}, + [3901] = {.lex_state = 214}, + [3902] = {.lex_state = 214}, + [3903] = {.lex_state = 435}, + [3904] = {.lex_state = 247, .external_lex_state = 64}, + [3905] = {.lex_state = 435}, + [3906] = {.lex_state = 247, .external_lex_state = 64}, + [3907] = {.lex_state = 214}, [3908] = {.lex_state = 435}, - [3909] = {.lex_state = 259}, - [3910] = {.lex_state = 259}, - [3911] = {.lex_state = 260, .external_lex_state = 58}, - [3912] = {.lex_state = 212, .external_lex_state = 58}, - [3913] = {.lex_state = 260, .external_lex_state = 58}, + [3909] = {.lex_state = 213}, + [3910] = {.lex_state = 435}, + [3911] = {.lex_state = 435}, + [3912] = {.lex_state = 214}, + [3913] = {.lex_state = 435}, [3914] = {.lex_state = 435}, - [3915] = {.lex_state = 435}, - [3916] = {.lex_state = 435}, - [3917] = {.lex_state = 435}, - [3918] = {.lex_state = 435}, - [3919] = {.lex_state = 248}, - [3920] = {.lex_state = 212, .external_lex_state = 58}, + [3915] = {.lex_state = 214}, + [3916] = {.lex_state = 260, .external_lex_state = 60}, + [3917] = {.lex_state = 214}, + [3918] = {.lex_state = 214}, + [3919] = {.lex_state = 435}, + [3920] = {.lex_state = 435}, [3921] = {.lex_state = 435}, - [3922] = {.lex_state = 435}, - [3923] = {.lex_state = 435}, - [3924] = {.lex_state = 435}, - [3925] = {.lex_state = 213}, + [3922] = {.lex_state = 259}, + [3923] = {.lex_state = 214}, + [3924] = {.lex_state = 214}, + [3925] = {.lex_state = 435}, [3926] = {.lex_state = 435}, [3927] = {.lex_state = 435}, - [3928] = {.lex_state = 248}, - [3929] = {.lex_state = 248}, - [3930] = {.lex_state = 213}, + [3928] = {.lex_state = 435}, + [3929] = {.lex_state = 435}, + [3930] = {.lex_state = 435}, [3931] = {.lex_state = 435}, - [3932] = {.lex_state = 435}, - [3933] = {.lex_state = 248}, - [3934] = {.lex_state = 258}, + [3932] = {.lex_state = 247}, + [3933] = {.lex_state = 247}, + [3934] = {.lex_state = 435}, [3935] = {.lex_state = 435}, - [3936] = {.lex_state = 248}, - [3937] = {.lex_state = 212, .external_lex_state = 70}, + [3936] = {.lex_state = 213}, + [3937] = {.lex_state = 257}, [3938] = {.lex_state = 435}, - [3939] = {.lex_state = 258}, + [3939] = {.lex_state = 247}, [3940] = {.lex_state = 435}, [3941] = {.lex_state = 435}, - [3942] = {.lex_state = 435}, - [3943] = {.lex_state = 248}, + [3942] = {.lex_state = 247}, + [3943] = {.lex_state = 247}, [3944] = {.lex_state = 435}, - [3945] = {.lex_state = 248}, - [3946] = {.lex_state = 258}, - [3947] = {.lex_state = 248}, - [3948] = {.lex_state = 248}, - [3949] = {.lex_state = 435}, - [3950] = {.lex_state = 248}, - [3951] = {.lex_state = 435}, - [3952] = {.lex_state = 213}, - [3953] = {.lex_state = 248}, - [3954] = {.lex_state = 258}, + [3945] = {.lex_state = 212, .external_lex_state = 60}, + [3946] = {.lex_state = 435}, + [3947] = {.lex_state = 247}, + [3948] = {.lex_state = 435}, + [3949] = {.lex_state = 247}, + [3950] = {.lex_state = 247}, + [3951] = {.lex_state = 214}, + [3952] = {.lex_state = 260, .external_lex_state = 60}, + [3953] = {.lex_state = 212, .external_lex_state = 60}, + [3954] = {.lex_state = 435}, [3955] = {.lex_state = 435}, - [3956] = {.lex_state = 435}, - [3957] = {.lex_state = 258}, - [3958] = {.lex_state = 214}, - [3959] = {.lex_state = 435}, + [3956] = {.lex_state = 257}, + [3957] = {.lex_state = 435}, + [3958] = {.lex_state = 435}, + [3959] = {.lex_state = 247}, [3960] = {.lex_state = 435}, - [3961] = {.lex_state = 248}, - [3962] = {.lex_state = 214}, - [3963] = {.lex_state = 435}, - [3964] = {.lex_state = 213}, + [3961] = {.lex_state = 257}, + [3962] = {.lex_state = 435}, + [3963] = {.lex_state = 247}, + [3964] = {.lex_state = 247}, [3965] = {.lex_state = 435}, - [3966] = {.lex_state = 258}, - [3967] = {.lex_state = 248}, - [3968] = {.lex_state = 435}, - [3969] = {.lex_state = 248}, + [3966] = {.lex_state = 247}, + [3967] = {.lex_state = 247}, + [3968] = {.lex_state = 247}, + [3969] = {.lex_state = 435}, [3970] = {.lex_state = 435}, - [3971] = {.lex_state = 435}, - [3972] = {.lex_state = 248}, + [3971] = {.lex_state = 247}, + [3972] = {.lex_state = 247}, [3973] = {.lex_state = 435}, - [3974] = {.lex_state = 435}, - [3975] = {.lex_state = 212, .external_lex_state = 58}, - [3976] = {.lex_state = 248}, + [3974] = {.lex_state = 247}, + [3975] = {.lex_state = 213}, + [3976] = {.lex_state = 212, .external_lex_state = 72}, [3977] = {.lex_state = 435}, - [3978] = {.lex_state = 212, .external_lex_state = 58}, - [3979] = {.lex_state = 213}, - [3980] = {.lex_state = 435}, - [3981] = {.lex_state = 248}, - [3982] = {.lex_state = 248}, - [3983] = {.lex_state = 435}, + [3978] = {.lex_state = 212, .external_lex_state = 60}, + [3979] = {.lex_state = 435}, + [3980] = {.lex_state = 214}, + [3981] = {.lex_state = 435}, + [3982] = {.lex_state = 214}, + [3983] = {.lex_state = 257}, [3984] = {.lex_state = 435}, - [3985] = {.lex_state = 248}, + [3985] = {.lex_state = 247}, [3986] = {.lex_state = 435}, - [3987] = {.lex_state = 212, .external_lex_state = 58}, - [3988] = {.lex_state = 435}, - [3989] = {.lex_state = 212, .external_lex_state = 58}, - [3990] = {.lex_state = 248}, - [3991] = {.lex_state = 212, .external_lex_state = 58}, - [3992] = {.lex_state = 212, .external_lex_state = 58}, - [3993] = {.lex_state = 435}, - [3994] = {.lex_state = 435}, - [3995] = {.lex_state = 435}, - [3996] = {.lex_state = 248}, - [3997] = {.lex_state = 248}, - [3998] = {.lex_state = 435}, - [3999] = {.lex_state = 248}, - [4000] = {.lex_state = 248}, - [4001] = {.lex_state = 214}, + [3987] = {.lex_state = 435}, + [3988] = {.lex_state = 257}, + [3989] = {.lex_state = 247}, + [3990] = {.lex_state = 257}, + [3991] = {.lex_state = 435}, + [3992] = {.lex_state = 435}, + [3993] = {.lex_state = 247}, + [3994] = {.lex_state = 213}, + [3995] = {.lex_state = 247}, + [3996] = {.lex_state = 435}, + [3997] = {.lex_state = 260, .external_lex_state = 60}, + [3998] = {.lex_state = 247}, + [3999] = {.lex_state = 435}, + [4000] = {.lex_state = 213}, + [4001] = {.lex_state = 247}, [4002] = {.lex_state = 435}, - [4003] = {.lex_state = 435}, - [4004] = {.lex_state = 248}, + [4003] = {.lex_state = 212, .external_lex_state = 60}, + [4004] = {.lex_state = 435}, [4005] = {.lex_state = 435}, - [4006] = {.lex_state = 248}, - [4007] = {.lex_state = 435}, - [4008] = {.lex_state = 248}, + [4006] = {.lex_state = 212, .external_lex_state = 60}, + [4007] = {.lex_state = 247}, + [4008] = {.lex_state = 212, .external_lex_state = 60}, [4009] = {.lex_state = 435}, [4010] = {.lex_state = 435}, [4011] = {.lex_state = 213}, - [4012] = {.lex_state = 435}, - [4013] = {.lex_state = 217}, + [4012] = {.lex_state = 247}, + [4013] = {.lex_state = 435}, [4014] = {.lex_state = 435}, - [4015] = {.lex_state = 212, .external_lex_state = 58}, - [4016] = {.lex_state = 435, .external_lex_state = 71}, + [4015] = {.lex_state = 213}, + [4016] = {.lex_state = 247}, [4017] = {.lex_state = 435}, [4018] = {.lex_state = 435}, - [4019] = {.lex_state = 214}, - [4020] = {.lex_state = 217}, - [4021] = {.lex_state = 212, .external_lex_state = 58}, - [4022] = {.lex_state = 435, .external_lex_state = 71}, - [4023] = {.lex_state = 217}, - [4024] = {.lex_state = 70, .external_lex_state = 44}, - [4025] = {.lex_state = 214}, - [4026] = {.lex_state = 435}, - [4027] = {.lex_state = 435}, + [4019] = {.lex_state = 435}, + [4020] = {.lex_state = 435}, + [4021] = {.lex_state = 435}, + [4022] = {.lex_state = 247}, + [4023] = {.lex_state = 435}, + [4024] = {.lex_state = 212, .external_lex_state = 60}, + [4025] = {.lex_state = 212, .external_lex_state = 60}, + [4026] = {.lex_state = 214}, + [4027] = {.lex_state = 214}, [4028] = {.lex_state = 435}, [4029] = {.lex_state = 214}, - [4030] = {.lex_state = 435}, + [4030] = {.lex_state = 212, .external_lex_state = 60}, [4031] = {.lex_state = 435}, - [4032] = {.lex_state = 435}, - [4033] = {.lex_state = 212, .external_lex_state = 58}, - [4034] = {.lex_state = 214}, - [4035] = {.lex_state = 258}, + [4032] = {.lex_state = 214}, + [4033] = {.lex_state = 435}, + [4034] = {.lex_state = 212, .external_lex_state = 60}, + [4035] = {.lex_state = 212, .external_lex_state = 60}, [4036] = {.lex_state = 214}, [4037] = {.lex_state = 214}, - [4038] = {.lex_state = 435}, + [4038] = {.lex_state = 214}, [4039] = {.lex_state = 435}, [4040] = {.lex_state = 435}, [4041] = {.lex_state = 214}, - [4042] = {.lex_state = 217}, - [4043] = {.lex_state = 212, .external_lex_state = 58}, - [4044] = {.lex_state = 435}, - [4045] = {.lex_state = 214}, + [4042] = {.lex_state = 435}, + [4043] = {.lex_state = 214}, + [4044] = {.lex_state = 214}, + [4045] = {.lex_state = 257}, [4046] = {.lex_state = 214}, - [4047] = {.lex_state = 212, .external_lex_state = 58}, - [4048] = {.lex_state = 212, .external_lex_state = 58}, - [4049] = {.lex_state = 212, .external_lex_state = 58}, + [4047] = {.lex_state = 219}, + [4048] = {.lex_state = 435}, + [4049] = {.lex_state = 435}, [4050] = {.lex_state = 214}, - [4051] = {.lex_state = 212, .external_lex_state = 58}, - [4052] = {.lex_state = 214}, - [4053] = {.lex_state = 435}, + [4051] = {.lex_state = 212, .external_lex_state = 60}, + [4052] = {.lex_state = 435}, + [4053] = {.lex_state = 214}, [4054] = {.lex_state = 214}, [4055] = {.lex_state = 435}, - [4056] = {.lex_state = 435}, - [4057] = {.lex_state = 435}, - [4058] = {.lex_state = 217}, - [4059] = {.lex_state = 212, .external_lex_state = 58}, - [4060] = {.lex_state = 435}, - [4061] = {.lex_state = 435}, - [4062] = {.lex_state = 435}, - [4063] = {.lex_state = 214}, - [4064] = {.lex_state = 435}, - [4065] = {.lex_state = 435}, - [4066] = {.lex_state = 198, .external_lex_state = 72}, - [4067] = {.lex_state = 258}, - [4068] = {.lex_state = 198, .external_lex_state = 72}, + [4056] = {.lex_state = 219}, + [4057] = {.lex_state = 219}, + [4058] = {.lex_state = 212, .external_lex_state = 60}, + [4059] = {.lex_state = 214}, + [4060] = {.lex_state = 214}, + [4061] = {.lex_state = 214}, + [4062] = {.lex_state = 257}, + [4063] = {.lex_state = 435, .external_lex_state = 73}, + [4064] = {.lex_state = 435, .external_lex_state = 73}, + [4065] = {.lex_state = 219}, + [4066] = {.lex_state = 219}, + [4067] = {.lex_state = 435}, + [4068] = {.lex_state = 214}, [4069] = {.lex_state = 435}, - [4070] = {.lex_state = 212, .external_lex_state = 58}, + [4070] = {.lex_state = 435}, [4071] = {.lex_state = 435}, [4072] = {.lex_state = 214}, - [4073] = {.lex_state = 217}, - [4074] = {.lex_state = 212, .external_lex_state = 58}, + [4073] = {.lex_state = 435}, + [4074] = {.lex_state = 435}, [4075] = {.lex_state = 435}, [4076] = {.lex_state = 435}, - [4077] = {.lex_state = 217}, + [4077] = {.lex_state = 214}, [4078] = {.lex_state = 435}, - [4079] = {.lex_state = 214}, - [4080] = {.lex_state = 214}, - [4081] = {.lex_state = 435}, + [4079] = {.lex_state = 110, .external_lex_state = 45}, + [4080] = {.lex_state = 212, .external_lex_state = 60}, + [4081] = {.lex_state = 214}, [4082] = {.lex_state = 435}, - [4083] = {.lex_state = 435}, - [4084] = {.lex_state = 212, .external_lex_state = 58}, + [4083] = {.lex_state = 219}, + [4084] = {.lex_state = 214}, [4085] = {.lex_state = 435}, - [4086] = {.lex_state = 435}, - [4087] = {.lex_state = 214}, - [4088] = {.lex_state = 214}, - [4089] = {.lex_state = 217}, - [4090] = {.lex_state = 435}, - [4091] = {.lex_state = 435}, - [4092] = {.lex_state = 198, .external_lex_state = 72}, - [4093] = {.lex_state = 212, .external_lex_state = 58}, - [4094] = {.lex_state = 435}, + [4086] = {.lex_state = 214}, + [4087] = {.lex_state = 212, .external_lex_state = 60}, + [4088] = {.lex_state = 212, .external_lex_state = 60}, + [4089] = {.lex_state = 212, .external_lex_state = 60}, + [4090] = {.lex_state = 435, .external_lex_state = 73}, + [4091] = {.lex_state = 257}, + [4092] = {.lex_state = 435}, + [4093] = {.lex_state = 435}, + [4094] = {.lex_state = 214}, [4095] = {.lex_state = 435}, - [4096] = {.lex_state = 214}, + [4096] = {.lex_state = 435, .external_lex_state = 73}, [4097] = {.lex_state = 435}, [4098] = {.lex_state = 435}, - [4099] = {.lex_state = 435}, + [4099] = {.lex_state = 110, .external_lex_state = 45}, [4100] = {.lex_state = 435}, [4101] = {.lex_state = 435}, - [4102] = {.lex_state = 70, .external_lex_state = 44}, - [4103] = {.lex_state = 217}, - [4104] = {.lex_state = 214}, - [4105] = {.lex_state = 435}, - [4106] = {.lex_state = 70, .external_lex_state = 44}, + [4102] = {.lex_state = 214}, + [4103] = {.lex_state = 435}, + [4104] = {.lex_state = 435}, + [4105] = {.lex_state = 212, .external_lex_state = 60}, + [4106] = {.lex_state = 435}, [4107] = {.lex_state = 435}, - [4108] = {.lex_state = 70, .external_lex_state = 44}, - [4109] = {.lex_state = 212, .external_lex_state = 58}, + [4108] = {.lex_state = 212, .external_lex_state = 60}, + [4109] = {.lex_state = 435}, [4110] = {.lex_state = 214}, [4111] = {.lex_state = 435}, - [4112] = {.lex_state = 435}, - [4113] = {.lex_state = 212, .external_lex_state = 58}, - [4114] = {.lex_state = 435}, - [4115] = {.lex_state = 435}, - [4116] = {.lex_state = 214}, - [4117] = {.lex_state = 214}, - [4118] = {.lex_state = 212, .external_lex_state = 58}, + [4112] = {.lex_state = 214}, + [4113] = {.lex_state = 219}, + [4114] = {.lex_state = 198, .external_lex_state = 74}, + [4115] = {.lex_state = 198, .external_lex_state = 74}, + [4116] = {.lex_state = 435}, + [4117] = {.lex_state = 110, .external_lex_state = 45}, + [4118] = {.lex_state = 214}, [4119] = {.lex_state = 435}, [4120] = {.lex_state = 435}, - [4121] = {.lex_state = 217}, + [4121] = {.lex_state = 435}, [4122] = {.lex_state = 214}, [4123] = {.lex_state = 435}, - [4124] = {.lex_state = 435}, - [4125] = {.lex_state = 212, .external_lex_state = 58}, - [4126] = {.lex_state = 212, .external_lex_state = 58}, - [4127] = {.lex_state = 212, .external_lex_state = 58}, - [4128] = {.lex_state = 214}, - [4129] = {.lex_state = 435}, - [4130] = {.lex_state = 212, .external_lex_state = 58}, - [4131] = {.lex_state = 212, .external_lex_state = 58}, - [4132] = {.lex_state = 212, .external_lex_state = 58}, - [4133] = {.lex_state = 435}, + [4124] = {.lex_state = 214}, + [4125] = {.lex_state = 110, .external_lex_state = 45}, + [4126] = {.lex_state = 219}, + [4127] = {.lex_state = 219}, + [4128] = {.lex_state = 435}, + [4129] = {.lex_state = 257}, + [4130] = {.lex_state = 214}, + [4131] = {.lex_state = 214}, + [4132] = {.lex_state = 214}, + [4133] = {.lex_state = 435, .external_lex_state = 73}, [4134] = {.lex_state = 214}, - [4135] = {.lex_state = 212, .external_lex_state = 58}, - [4136] = {.lex_state = 212, .external_lex_state = 58}, - [4137] = {.lex_state = 212, .external_lex_state = 58}, - [4138] = {.lex_state = 212, .external_lex_state = 58}, - [4139] = {.lex_state = 212, .external_lex_state = 58}, - [4140] = {.lex_state = 214}, - [4141] = {.lex_state = 435}, - [4142] = {.lex_state = 212, .external_lex_state = 58}, - [4143] = {.lex_state = 212, .external_lex_state = 58}, + [4135] = {.lex_state = 212, .external_lex_state = 60}, + [4136] = {.lex_state = 214}, + [4137] = {.lex_state = 219}, + [4138] = {.lex_state = 435, .external_lex_state = 73}, + [4139] = {.lex_state = 257}, + [4140] = {.lex_state = 219}, + [4141] = {.lex_state = 212, .external_lex_state = 60}, + [4142] = {.lex_state = 214}, + [4143] = {.lex_state = 435}, [4144] = {.lex_state = 435}, - [4145] = {.lex_state = 212, .external_lex_state = 58}, - [4146] = {.lex_state = 214}, + [4145] = {.lex_state = 435}, + [4146] = {.lex_state = 435}, [4147] = {.lex_state = 435}, - [4148] = {.lex_state = 212, .external_lex_state = 58}, - [4149] = {.lex_state = 212, .external_lex_state = 58}, - [4150] = {.lex_state = 212, .external_lex_state = 58}, - [4151] = {.lex_state = 212, .external_lex_state = 58}, - [4152] = {.lex_state = 214}, - [4153] = {.lex_state = 435, .external_lex_state = 71}, - [4154] = {.lex_state = 212, .external_lex_state = 58}, - [4155] = {.lex_state = 212, .external_lex_state = 58}, - [4156] = {.lex_state = 212, .external_lex_state = 58}, - [4157] = {.lex_state = 212, .external_lex_state = 58}, - [4158] = {.lex_state = 214}, - [4159] = {.lex_state = 435, .external_lex_state = 71}, - [4160] = {.lex_state = 212, .external_lex_state = 58}, - [4161] = {.lex_state = 212, .external_lex_state = 58}, - [4162] = {.lex_state = 212, .external_lex_state = 58}, - [4163] = {.lex_state = 212, .external_lex_state = 58}, - [4164] = {.lex_state = 214}, + [4148] = {.lex_state = 214}, + [4149] = {.lex_state = 212, .external_lex_state = 60}, + [4150] = {.lex_state = 219}, + [4151] = {.lex_state = 214}, + [4152] = {.lex_state = 435}, + [4153] = {.lex_state = 219}, + [4154] = {.lex_state = 214}, + [4155] = {.lex_state = 110, .external_lex_state = 45}, + [4156] = {.lex_state = 212, .external_lex_state = 60}, + [4157] = {.lex_state = 435}, + [4158] = {.lex_state = 219}, + [4159] = {.lex_state = 198, .external_lex_state = 74}, + [4160] = {.lex_state = 214}, + [4161] = {.lex_state = 198, .external_lex_state = 74}, + [4162] = {.lex_state = 212, .external_lex_state = 60}, + [4163] = {.lex_state = 435}, + [4164] = {.lex_state = 435}, [4165] = {.lex_state = 435}, - [4166] = {.lex_state = 435}, - [4167] = {.lex_state = 212, .external_lex_state = 58}, - [4168] = {.lex_state = 214}, - [4169] = {.lex_state = 435}, - [4170] = {.lex_state = 214}, - [4171] = {.lex_state = 217}, - [4172] = {.lex_state = 212, .external_lex_state = 58}, - [4173] = {.lex_state = 435}, - [4174] = {.lex_state = 212, .external_lex_state = 58}, - [4175] = {.lex_state = 212, .external_lex_state = 58}, - [4176] = {.lex_state = 214}, - [4177] = {.lex_state = 258}, - [4178] = {.lex_state = 212, .external_lex_state = 58}, - [4179] = {.lex_state = 212, .external_lex_state = 58}, - [4180] = {.lex_state = 198, .external_lex_state = 72}, + [4166] = {.lex_state = 214}, + [4167] = {.lex_state = 435}, + [4168] = {.lex_state = 212, .external_lex_state = 60}, + [4169] = {.lex_state = 212, .external_lex_state = 60}, + [4170] = {.lex_state = 212, .external_lex_state = 60}, + [4171] = {.lex_state = 212, .external_lex_state = 60}, + [4172] = {.lex_state = 214}, + [4173] = {.lex_state = 212, .external_lex_state = 60}, + [4174] = {.lex_state = 212, .external_lex_state = 60}, + [4175] = {.lex_state = 435}, + [4176] = {.lex_state = 212, .external_lex_state = 60}, + [4177] = {.lex_state = 212, .external_lex_state = 60}, + [4178] = {.lex_state = 214}, + [4179] = {.lex_state = 212, .external_lex_state = 60}, + [4180] = {.lex_state = 212, .external_lex_state = 60}, [4181] = {.lex_state = 435}, - [4182] = {.lex_state = 214}, - [4183] = {.lex_state = 435}, - [4184] = {.lex_state = 217}, - [4185] = {.lex_state = 217}, - [4186] = {.lex_state = 214}, - [4187] = {.lex_state = 212, .external_lex_state = 58}, - [4188] = {.lex_state = 214}, - [4189] = {.lex_state = 217}, - [4190] = {.lex_state = 435}, - [4191] = {.lex_state = 214}, - [4192] = {.lex_state = 435}, - [4193] = {.lex_state = 435}, - [4194] = {.lex_state = 214}, - [4195] = {.lex_state = 217}, - [4196] = {.lex_state = 435}, - [4197] = {.lex_state = 212, .external_lex_state = 58}, - [4198] = {.lex_state = 212, .external_lex_state = 58}, - [4199] = {.lex_state = 258}, - [4200] = {.lex_state = 214}, - [4201] = {.lex_state = 435}, - [4202] = {.lex_state = 435}, - [4203] = {.lex_state = 435}, - [4204] = {.lex_state = 435}, - [4205] = {.lex_state = 435}, - [4206] = {.lex_state = 214}, - [4207] = {.lex_state = 212, .external_lex_state = 58}, - [4208] = {.lex_state = 212, .external_lex_state = 58}, - [4209] = {.lex_state = 212, .external_lex_state = 58}, - [4210] = {.lex_state = 435}, - [4211] = {.lex_state = 212, .external_lex_state = 58}, - [4212] = {.lex_state = 214}, + [4182] = {.lex_state = 212, .external_lex_state = 60}, + [4183] = {.lex_state = 212, .external_lex_state = 60}, + [4184] = {.lex_state = 214}, + [4185] = {.lex_state = 212, .external_lex_state = 60}, + [4186] = {.lex_state = 212, .external_lex_state = 60}, + [4187] = {.lex_state = 212, .external_lex_state = 60}, + [4188] = {.lex_state = 212, .external_lex_state = 60}, + [4189] = {.lex_state = 212, .external_lex_state = 60}, + [4190] = {.lex_state = 214}, + [4191] = {.lex_state = 212, .external_lex_state = 60}, + [4192] = {.lex_state = 212, .external_lex_state = 60}, + [4193] = {.lex_state = 212, .external_lex_state = 60}, + [4194] = {.lex_state = 212, .external_lex_state = 60}, + [4195] = {.lex_state = 212, .external_lex_state = 60}, + [4196] = {.lex_state = 214}, + [4197] = {.lex_state = 212, .external_lex_state = 60}, + [4198] = {.lex_state = 212, .external_lex_state = 60}, + [4199] = {.lex_state = 212, .external_lex_state = 60}, + [4200] = {.lex_state = 435}, + [4201] = {.lex_state = 212, .external_lex_state = 60}, + [4202] = {.lex_state = 214}, + [4203] = {.lex_state = 110, .external_lex_state = 45}, + [4204] = {.lex_state = 212, .external_lex_state = 60}, + [4205] = {.lex_state = 212, .external_lex_state = 60}, + [4206] = {.lex_state = 435}, + [4207] = {.lex_state = 212, .external_lex_state = 60}, + [4208] = {.lex_state = 214}, + [4209] = {.lex_state = 212, .external_lex_state = 60}, + [4210] = {.lex_state = 212, .external_lex_state = 60}, + [4211] = {.lex_state = 212, .external_lex_state = 60}, + [4212] = {.lex_state = 435}, [4213] = {.lex_state = 435}, - [4214] = {.lex_state = 435}, + [4214] = {.lex_state = 214}, [4215] = {.lex_state = 435}, - [4216] = {.lex_state = 212, .external_lex_state = 58}, - [4217] = {.lex_state = 212, .external_lex_state = 58}, - [4218] = {.lex_state = 214}, - [4219] = {.lex_state = 258}, - [4220] = {.lex_state = 435}, - [4221] = {.lex_state = 217}, - [4222] = {.lex_state = 198, .external_lex_state = 72}, - [4223] = {.lex_state = 198, .external_lex_state = 72}, - [4224] = {.lex_state = 214}, + [4216] = {.lex_state = 212, .external_lex_state = 60}, + [4217] = {.lex_state = 214}, + [4218] = {.lex_state = 219}, + [4219] = {.lex_state = 435}, + [4220] = {.lex_state = 214}, + [4221] = {.lex_state = 214}, + [4222] = {.lex_state = 435}, + [4223] = {.lex_state = 214}, + [4224] = {.lex_state = 212, .external_lex_state = 60}, [4225] = {.lex_state = 435}, - [4226] = {.lex_state = 435}, - [4227] = {.lex_state = 217}, - [4228] = {.lex_state = 217}, - [4229] = {.lex_state = 217}, - [4230] = {.lex_state = 212, .external_lex_state = 58}, + [4226] = {.lex_state = 214}, + [4227] = {.lex_state = 435}, + [4228] = {.lex_state = 257}, + [4229] = {.lex_state = 435}, + [4230] = {.lex_state = 435}, [4231] = {.lex_state = 435}, [4232] = {.lex_state = 214}, - [4233] = {.lex_state = 214}, + [4233] = {.lex_state = 435}, [4234] = {.lex_state = 435}, [4235] = {.lex_state = 435}, - [4236] = {.lex_state = 214}, - [4237] = {.lex_state = 214}, - [4238] = {.lex_state = 258}, + [4236] = {.lex_state = 219}, + [4237] = {.lex_state = 435}, + [4238] = {.lex_state = 214}, [4239] = {.lex_state = 435}, - [4240] = {.lex_state = 435}, - [4241] = {.lex_state = 435, .external_lex_state = 71}, - [4242] = {.lex_state = 435, .external_lex_state = 73}, - [4243] = {.lex_state = 212, .external_lex_state = 58}, - [4244] = {.lex_state = 212, .external_lex_state = 58}, - [4245] = {.lex_state = 435}, - [4246] = {.lex_state = 435}, - [4247] = {.lex_state = 212, .external_lex_state = 58}, - [4248] = {.lex_state = 70, .external_lex_state = 44}, - [4249] = {.lex_state = 213}, - [4250] = {.lex_state = 212, .external_lex_state = 58}, - [4251] = {.lex_state = 212, .external_lex_state = 58}, - [4252] = {.lex_state = 435, .external_lex_state = 71}, - [4253] = {.lex_state = 214}, - [4254] = {.lex_state = 212, .external_lex_state = 58}, - [4255] = {.lex_state = 212, .external_lex_state = 58}, - [4256] = {.lex_state = 214}, - [4257] = {.lex_state = 435, .external_lex_state = 73}, - [4258] = {.lex_state = 212, .external_lex_state = 58}, + [4240] = {.lex_state = 212, .external_lex_state = 60}, + [4241] = {.lex_state = 212, .external_lex_state = 60}, + [4242] = {.lex_state = 214}, + [4243] = {.lex_state = 214}, + [4244] = {.lex_state = 219}, + [4245] = {.lex_state = 198, .external_lex_state = 74}, + [4246] = {.lex_state = 198, .external_lex_state = 74}, + [4247] = {.lex_state = 197}, + [4248] = {.lex_state = 212, .external_lex_state = 60}, + [4249] = {.lex_state = 214}, + [4250] = {.lex_state = 435}, + [4251] = {.lex_state = 212, .external_lex_state = 60}, + [4252] = {.lex_state = 435}, + [4253] = {.lex_state = 435}, + [4254] = {.lex_state = 219}, + [4255] = {.lex_state = 435}, + [4256] = {.lex_state = 435}, + [4257] = {.lex_state = 435}, + [4258] = {.lex_state = 219}, [4259] = {.lex_state = 435}, - [4260] = {.lex_state = 214}, - [4261] = {.lex_state = 435}, - [4262] = {.lex_state = 217}, - [4263] = {.lex_state = 258}, - [4264] = {.lex_state = 219}, - [4265] = {.lex_state = 435, .external_lex_state = 73}, + [4260] = {.lex_state = 219}, + [4261] = {.lex_state = 212, .external_lex_state = 60}, + [4262] = {.lex_state = 435, .external_lex_state = 75}, + [4263] = {.lex_state = 435}, + [4264] = {.lex_state = 435}, + [4265] = {.lex_state = 435}, [4266] = {.lex_state = 435}, - [4267] = {.lex_state = 70, .external_lex_state = 44}, - [4268] = {.lex_state = 217}, - [4269] = {.lex_state = 212, .external_lex_state = 58}, - [4270] = {.lex_state = 435}, - [4271] = {.lex_state = 435}, - [4272] = {.lex_state = 214}, + [4267] = {.lex_state = 212, .external_lex_state = 60}, + [4268] = {.lex_state = 435}, + [4269] = {.lex_state = 213}, + [4270] = {.lex_state = 212, .external_lex_state = 60}, + [4271] = {.lex_state = 212, .external_lex_state = 60}, + [4272] = {.lex_state = 198, .external_lex_state = 74}, [4273] = {.lex_state = 214}, - [4274] = {.lex_state = 435}, - [4275] = {.lex_state = 435}, - [4276] = {.lex_state = 435}, - [4277] = {.lex_state = 212, .external_lex_state = 58}, - [4278] = {.lex_state = 212, .external_lex_state = 58}, - [4279] = {.lex_state = 212, .external_lex_state = 58}, - [4280] = {.lex_state = 212, .external_lex_state = 58}, - [4281] = {.lex_state = 212, .external_lex_state = 58}, - [4282] = {.lex_state = 212, .external_lex_state = 58}, - [4283] = {.lex_state = 212, .external_lex_state = 58}, - [4284] = {.lex_state = 212, .external_lex_state = 58}, - [4285] = {.lex_state = 212, .external_lex_state = 58}, - [4286] = {.lex_state = 212, .external_lex_state = 58}, - [4287] = {.lex_state = 212, .external_lex_state = 58}, - [4288] = {.lex_state = 212, .external_lex_state = 58}, - [4289] = {.lex_state = 435}, - [4290] = {.lex_state = 435}, - [4291] = {.lex_state = 435}, - [4292] = {.lex_state = 435, .external_lex_state = 74}, - [4293] = {.lex_state = 435}, - [4294] = {.lex_state = 198, .external_lex_state = 72}, - [4295] = {.lex_state = 435}, - [4296] = {.lex_state = 198, .external_lex_state = 72}, - [4297] = {.lex_state = 435}, - [4298] = {.lex_state = 435}, - [4299] = {.lex_state = 214}, - [4300] = {.lex_state = 435}, - [4301] = {.lex_state = 435}, - [4302] = {.lex_state = 214}, - [4303] = {.lex_state = 435}, - [4304] = {.lex_state = 214}, - [4305] = {.lex_state = 214}, - [4306] = {.lex_state = 212, .external_lex_state = 58}, - [4307] = {.lex_state = 214}, - [4308] = {.lex_state = 197}, - [4309] = {.lex_state = 217}, - [4310] = {.lex_state = 214}, + [4274] = {.lex_state = 212, .external_lex_state = 60}, + [4275] = {.lex_state = 214}, + [4276] = {.lex_state = 212, .external_lex_state = 60}, + [4277] = {.lex_state = 435, .external_lex_state = 75}, + [4278] = {.lex_state = 212, .external_lex_state = 60}, + [4279] = {.lex_state = 198, .external_lex_state = 74}, + [4280] = {.lex_state = 435}, + [4281] = {.lex_state = 435}, + [4282] = {.lex_state = 257}, + [4283] = {.lex_state = 214}, + [4284] = {.lex_state = 212}, + [4285] = {.lex_state = 435, .external_lex_state = 75}, + [4286] = {.lex_state = 435}, + [4287] = {.lex_state = 214}, + [4288] = {.lex_state = 257}, + [4289] = {.lex_state = 219}, + [4290] = {.lex_state = 219}, + [4291] = {.lex_state = 435, .external_lex_state = 73}, + [4292] = {.lex_state = 435, .external_lex_state = 73}, + [4293] = {.lex_state = 219}, + [4294] = {.lex_state = 435}, + [4295] = {.lex_state = 214}, + [4296] = {.lex_state = 435}, + [4297] = {.lex_state = 212, .external_lex_state = 60}, + [4298] = {.lex_state = 212, .external_lex_state = 60}, + [4299] = {.lex_state = 212, .external_lex_state = 60}, + [4300] = {.lex_state = 212, .external_lex_state = 60}, + [4301] = {.lex_state = 212, .external_lex_state = 60}, + [4302] = {.lex_state = 212, .external_lex_state = 60}, + [4303] = {.lex_state = 212, .external_lex_state = 60}, + [4304] = {.lex_state = 212, .external_lex_state = 60}, + [4305] = {.lex_state = 212, .external_lex_state = 60}, + [4306] = {.lex_state = 212, .external_lex_state = 60}, + [4307] = {.lex_state = 212, .external_lex_state = 60}, + [4308] = {.lex_state = 212, .external_lex_state = 60}, + [4309] = {.lex_state = 435}, + [4310] = {.lex_state = 435}, [4311] = {.lex_state = 435}, - [4312] = {.lex_state = 217}, + [4312] = {.lex_state = 435, .external_lex_state = 76}, [4313] = {.lex_state = 435}, - [4314] = {.lex_state = 214}, - [4315] = {.lex_state = 214}, - [4316] = {.lex_state = 435}, + [4314] = {.lex_state = 435}, + [4315] = {.lex_state = 212, .external_lex_state = 60}, + [4316] = {.lex_state = 257}, [4317] = {.lex_state = 435}, - [4318] = {.lex_state = 212, .external_lex_state = 58}, - [4319] = {.lex_state = 214}, - [4320] = {.lex_state = 214}, - [4321] = {.lex_state = 258}, - [4322] = {.lex_state = 435}, + [4318] = {.lex_state = 219}, + [4319] = {.lex_state = 435}, + [4320] = {.lex_state = 435}, + [4321] = {.lex_state = 212, .external_lex_state = 60}, + [4322] = {.lex_state = 214}, [4323] = {.lex_state = 435}, - [4324] = {.lex_state = 435, .external_lex_state = 71}, - [4325] = {.lex_state = 435, .external_lex_state = 71}, - [4326] = {.lex_state = 217}, + [4324] = {.lex_state = 212, .external_lex_state = 60}, + [4325] = {.lex_state = 435}, + [4326] = {.lex_state = 214}, [4327] = {.lex_state = 435}, - [4328] = {.lex_state = 212, .external_lex_state = 58}, - [4329] = {.lex_state = 214}, - [4330] = {.lex_state = 435}, - [4331] = {.lex_state = 435}, + [4328] = {.lex_state = 214}, + [4329] = {.lex_state = 219}, + [4330] = {.lex_state = 214}, + [4331] = {.lex_state = 257}, [4332] = {.lex_state = 435}, - [4333] = {.lex_state = 197}, - [4334] = {.lex_state = 435}, - [4335] = {.lex_state = 214}, - [4336] = {.lex_state = 435}, + [4333] = {.lex_state = 435}, + [4334] = {.lex_state = 219}, + [4335] = {.lex_state = 198, .external_lex_state = 74}, + [4336] = {.lex_state = 198, .external_lex_state = 74}, [4337] = {.lex_state = 435}, - [4338] = {.lex_state = 212, .external_lex_state = 58}, + [4338] = {.lex_state = 212, .external_lex_state = 60}, [4339] = {.lex_state = 435}, [4340] = {.lex_state = 435}, - [4341] = {.lex_state = 435}, - [4342] = {.lex_state = 258}, - [4343] = {.lex_state = 435}, + [4341] = {.lex_state = 212, .external_lex_state = 60}, + [4342] = {.lex_state = 435}, + [4343] = {.lex_state = 219}, [4344] = {.lex_state = 435}, - [4345] = {.lex_state = 213}, - [4346] = {.lex_state = 214}, - [4347] = {.lex_state = 217}, - [4348] = {.lex_state = 258}, - [4349] = {.lex_state = 214}, + [4345] = {.lex_state = 212, .external_lex_state = 60}, + [4346] = {.lex_state = 212, .external_lex_state = 60}, + [4347] = {.lex_state = 435}, + [4348] = {.lex_state = 435}, + [4349] = {.lex_state = 435}, [4350] = {.lex_state = 435}, - [4351] = {.lex_state = 435}, - [4352] = {.lex_state = 258}, - [4353] = {.lex_state = 435, .external_lex_state = 73}, + [4351] = {.lex_state = 212, .external_lex_state = 60}, + [4352] = {.lex_state = 212, .external_lex_state = 60}, + [4353] = {.lex_state = 435}, [4354] = {.lex_state = 435}, - [4355] = {.lex_state = 214}, - [4356] = {.lex_state = 212, .external_lex_state = 58}, - [4357] = {.lex_state = 214}, - [4358] = {.lex_state = 435, .external_lex_state = 73}, + [4355] = {.lex_state = 435}, + [4356] = {.lex_state = 212, .external_lex_state = 60}, + [4357] = {.lex_state = 435}, + [4358] = {.lex_state = 435}, [4359] = {.lex_state = 435}, - [4360] = {.lex_state = 435, .external_lex_state = 73}, + [4360] = {.lex_state = 435}, [4361] = {.lex_state = 435}, - [4362] = {.lex_state = 258}, - [4363] = {.lex_state = 217}, + [4362] = {.lex_state = 257}, + [4363] = {.lex_state = 435}, [4364] = {.lex_state = 435}, - [4365] = {.lex_state = 212, .external_lex_state = 58}, - [4366] = {.lex_state = 212, .external_lex_state = 58}, - [4367] = {.lex_state = 217}, - [4368] = {.lex_state = 198, .external_lex_state = 72}, - [4369] = {.lex_state = 198, .external_lex_state = 72}, + [4365] = {.lex_state = 213}, + [4366] = {.lex_state = 197}, + [4367] = {.lex_state = 219}, + [4368] = {.lex_state = 435}, + [4369] = {.lex_state = 214}, [4370] = {.lex_state = 435}, - [4371] = {.lex_state = 435}, - [4372] = {.lex_state = 435}, - [4373] = {.lex_state = 435}, + [4371] = {.lex_state = 214}, + [4372] = {.lex_state = 219}, + [4373] = {.lex_state = 435, .external_lex_state = 75}, [4374] = {.lex_state = 435}, - [4375] = {.lex_state = 435}, - [4376] = {.lex_state = 435}, + [4375] = {.lex_state = 219}, + [4376] = {.lex_state = 212, .external_lex_state = 60}, [4377] = {.lex_state = 435}, - [4378] = {.lex_state = 212, .external_lex_state = 58}, + [4378] = {.lex_state = 435}, [4379] = {.lex_state = 435}, - [4380] = {.lex_state = 212, .external_lex_state = 58}, + [4380] = {.lex_state = 435, .external_lex_state = 75}, [4381] = {.lex_state = 435}, - [4382] = {.lex_state = 212, .external_lex_state = 58}, - [4383] = {.lex_state = 197}, - [4384] = {.lex_state = 217}, + [4382] = {.lex_state = 435}, + [4383] = {.lex_state = 435}, + [4384] = {.lex_state = 110, .external_lex_state = 45}, [4385] = {.lex_state = 435}, - [4386] = {.lex_state = 435}, - [4387] = {.lex_state = 435}, - [4388] = {.lex_state = 435}, - [4389] = {.lex_state = 212, .external_lex_state = 58}, - [4390] = {.lex_state = 435}, - [4391] = {.lex_state = 435}, - [4392] = {.lex_state = 435}, - [4393] = {.lex_state = 435}, - [4394] = {.lex_state = 212, .external_lex_state = 58}, + [4386] = {.lex_state = 212, .external_lex_state = 60}, + [4387] = {.lex_state = 219}, + [4388] = {.lex_state = 219}, + [4389] = {.lex_state = 435}, + [4390] = {.lex_state = 212, .external_lex_state = 60}, + [4391] = {.lex_state = 219}, + [4392] = {.lex_state = 435, .external_lex_state = 75}, + [4393] = {.lex_state = 212, .external_lex_state = 60}, + [4394] = {.lex_state = 435}, [4395] = {.lex_state = 435}, [4396] = {.lex_state = 435}, [4397] = {.lex_state = 435}, - [4398] = {.lex_state = 217}, - [4399] = {.lex_state = 214}, - [4400] = {.lex_state = 435}, - [4401] = {.lex_state = 214}, + [4398] = {.lex_state = 435}, + [4399] = {.lex_state = 212, .external_lex_state = 60}, + [4400] = {.lex_state = 110, .external_lex_state = 45}, + [4401] = {.lex_state = 212, .external_lex_state = 60}, [4402] = {.lex_state = 435}, [4403] = {.lex_state = 435}, [4404] = {.lex_state = 435}, - [4405] = {.lex_state = 435}, - [4406] = {.lex_state = 435}, - [4407] = {.lex_state = 217}, + [4405] = {.lex_state = 219}, + [4406] = {.lex_state = 214}, + [4407] = {.lex_state = 435}, [4408] = {.lex_state = 435}, - [4409] = {.lex_state = 435}, - [4410] = {.lex_state = 212, .external_lex_state = 58}, - [4411] = {.lex_state = 214}, - [4412] = {.lex_state = 212, .external_lex_state = 58}, - [4413] = {.lex_state = 214}, + [4409] = {.lex_state = 214}, + [4410] = {.lex_state = 197}, + [4411] = {.lex_state = 435}, + [4412] = {.lex_state = 214}, + [4413] = {.lex_state = 435}, [4414] = {.lex_state = 435}, - [4415] = {.lex_state = 217}, - [4416] = {.lex_state = 435, .external_lex_state = 73}, - [4417] = {.lex_state = 214}, + [4415] = {.lex_state = 435}, + [4416] = {.lex_state = 212, .external_lex_state = 60}, + [4417] = {.lex_state = 435}, [4418] = {.lex_state = 435}, - [4419] = {.lex_state = 435}, - [4420] = {.lex_state = 212, .external_lex_state = 58}, - [4421] = {.lex_state = 212, .external_lex_state = 58}, - [4422] = {.lex_state = 212, .external_lex_state = 58}, - [4423] = {.lex_state = 435, .external_lex_state = 73}, + [4419] = {.lex_state = 212, .external_lex_state = 60}, + [4420] = {.lex_state = 212, .external_lex_state = 60}, + [4421] = {.lex_state = 435}, + [4422] = {.lex_state = 435}, + [4423] = {.lex_state = 435}, [4424] = {.lex_state = 435}, - [4425] = {.lex_state = 212, .external_lex_state = 58}, - [4426] = {.lex_state = 212, .external_lex_state = 58}, - [4427] = {.lex_state = 212, .external_lex_state = 58}, - [4428] = {.lex_state = 212, .external_lex_state = 58}, - [4429] = {.lex_state = 435}, - [4430] = {.lex_state = 217}, - [4431] = {.lex_state = 212, .external_lex_state = 58}, - [4432] = {.lex_state = 212, .external_lex_state = 58}, - [4433] = {.lex_state = 435}, - [4434] = {.lex_state = 212, .external_lex_state = 58}, - [4435] = {.lex_state = 217}, - [4436] = {.lex_state = 435}, - [4437] = {.lex_state = 435}, + [4425] = {.lex_state = 435}, + [4426] = {.lex_state = 435}, + [4427] = {.lex_state = 435}, + [4428] = {.lex_state = 435}, + [4429] = {.lex_state = 212, .external_lex_state = 60}, + [4430] = {.lex_state = 435}, + [4431] = {.lex_state = 257}, + [4432] = {.lex_state = 435}, + [4433] = {.lex_state = 214}, + [4434] = {.lex_state = 219}, + [4435] = {.lex_state = 212, .external_lex_state = 60}, + [4436] = {.lex_state = 435, .external_lex_state = 75}, + [4437] = {.lex_state = 214}, [4438] = {.lex_state = 435}, [4439] = {.lex_state = 435}, [4440] = {.lex_state = 435}, - [4441] = {.lex_state = 214}, + [4441] = {.lex_state = 435}, [4442] = {.lex_state = 435}, - [4443] = {.lex_state = 435}, + [4443] = {.lex_state = 435, .external_lex_state = 75}, [4444] = {.lex_state = 435}, - [4445] = {.lex_state = 212, .external_lex_state = 58}, + [4445] = {.lex_state = 435}, [4446] = {.lex_state = 435}, [4447] = {.lex_state = 435}, [4448] = {.lex_state = 435}, [4449] = {.lex_state = 435}, - [4450] = {.lex_state = 217}, - [4451] = {.lex_state = 217}, - [4452] = {.lex_state = 212, .external_lex_state = 58}, - [4453] = {.lex_state = 435}, - [4454] = {.lex_state = 217}, - [4455] = {.lex_state = 212, .external_lex_state = 58}, + [4450] = {.lex_state = 435}, + [4451] = {.lex_state = 212, .external_lex_state = 60}, + [4452] = {.lex_state = 212, .external_lex_state = 60}, + [4453] = {.lex_state = 212, .external_lex_state = 60}, + [4454] = {.lex_state = 212, .external_lex_state = 60}, + [4455] = {.lex_state = 212, .external_lex_state = 60}, [4456] = {.lex_state = 435}, - [4457] = {.lex_state = 217}, + [4457] = {.lex_state = 219}, [4458] = {.lex_state = 435}, - [4459] = {.lex_state = 435}, + [4459] = {.lex_state = 212, .external_lex_state = 60}, [4460] = {.lex_state = 435}, - [4461] = {.lex_state = 435}, - [4462] = {.lex_state = 435}, + [4461] = {.lex_state = 214}, + [4462] = {.lex_state = 212, .external_lex_state = 60}, [4463] = {.lex_state = 435}, - [4464] = {.lex_state = 214}, - [4465] = {.lex_state = 214}, - [4466] = {.lex_state = 214}, - [4467] = {.lex_state = 214}, - [4468] = {.lex_state = 214}, - [4469] = {.lex_state = 214}, - [4470] = {.lex_state = 214}, - [4471] = {.lex_state = 214}, - [4472] = {.lex_state = 214}, - [4473] = {.lex_state = 214}, - [4474] = {.lex_state = 214}, - [4475] = {.lex_state = 214}, - [4476] = {.lex_state = 214}, - [4477] = {.lex_state = 214}, - [4478] = {.lex_state = 214}, - [4479] = {.lex_state = 214}, - [4480] = {.lex_state = 214}, - [4481] = {.lex_state = 214}, - [4482] = {.lex_state = 214}, - [4483] = {.lex_state = 214}, + [4464] = {.lex_state = 435}, + [4465] = {.lex_state = 219}, + [4466] = {.lex_state = 435}, + [4467] = {.lex_state = 435}, + [4468] = {.lex_state = 435}, + [4469] = {.lex_state = 435}, + [4470] = {.lex_state = 435}, + [4471] = {.lex_state = 435}, + [4472] = {.lex_state = 435}, + [4473] = {.lex_state = 435}, + [4474] = {.lex_state = 435}, + [4475] = {.lex_state = 212, .external_lex_state = 60}, + [4476] = {.lex_state = 435}, + [4477] = {.lex_state = 212, .external_lex_state = 60}, + [4478] = {.lex_state = 435}, + [4479] = {.lex_state = 212, .external_lex_state = 60}, + [4480] = {.lex_state = 435}, + [4481] = {.lex_state = 435}, + [4482] = {.lex_state = 435}, + [4483] = {.lex_state = 435}, [4484] = {.lex_state = 214}, [4485] = {.lex_state = 214}, [4486] = {.lex_state = 214}, @@ -20221,47 +20161,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4498] = {.lex_state = 214}, [4499] = {.lex_state = 214}, [4500] = {.lex_state = 214}, - [4501] = {.lex_state = 435}, - [4502] = {.lex_state = 212, .external_lex_state = 58}, - [4503] = {.lex_state = 435}, - [4504] = {.lex_state = 435}, - [4505] = {.lex_state = 435}, + [4501] = {.lex_state = 214}, + [4502] = {.lex_state = 214}, + [4503] = {.lex_state = 214}, + [4504] = {.lex_state = 214}, + [4505] = {.lex_state = 214}, [4506] = {.lex_state = 214}, - [4507] = {.lex_state = 435}, + [4507] = {.lex_state = 214}, [4508] = {.lex_state = 214}, - [4509] = {.lex_state = 217}, - [4510] = {.lex_state = 70, .external_lex_state = 44}, - [4511] = {.lex_state = 217}, - [4512] = {.lex_state = 70, .external_lex_state = 44}, - [4513] = {.lex_state = 258}, + [4509] = {.lex_state = 214}, + [4510] = {.lex_state = 214}, + [4511] = {.lex_state = 214}, + [4512] = {.lex_state = 214}, + [4513] = {.lex_state = 214}, [4514] = {.lex_state = 214}, - [4515] = {.lex_state = 212, .external_lex_state = 58}, - [4516] = {.lex_state = 217}, - [4517] = {.lex_state = 217}, + [4515] = {.lex_state = 214}, + [4516] = {.lex_state = 214}, + [4517] = {.lex_state = 214}, [4518] = {.lex_state = 214}, - [4519] = {.lex_state = 435}, - [4520] = {.lex_state = 435}, - [4521] = {.lex_state = 435}, - [4522] = {.lex_state = 214}, - [4523] = {.lex_state = 214}, - [4524] = {.lex_state = 214}, - [4525] = {.lex_state = 214}, - [4526] = {.lex_state = 214}, - [4527] = {.lex_state = 214}, + [4519] = {.lex_state = 214}, + [4520] = {.lex_state = 214}, + [4521] = {.lex_state = 219}, + [4522] = {.lex_state = 212, .external_lex_state = 60}, + [4523] = {.lex_state = 219}, + [4524] = {.lex_state = 435}, + [4525] = {.lex_state = 219}, + [4526] = {.lex_state = 435}, + [4527] = {.lex_state = 435}, [4528] = {.lex_state = 214}, - [4529] = {.lex_state = 214}, - [4530] = {.lex_state = 214}, - [4531] = {.lex_state = 214}, - [4532] = {.lex_state = 214}, - [4533] = {.lex_state = 214}, + [4529] = {.lex_state = 435}, + [4530] = {.lex_state = 435}, + [4531] = {.lex_state = 212, .external_lex_state = 60}, + [4532] = {.lex_state = 435}, + [4533] = {.lex_state = 212, .external_lex_state = 60}, [4534] = {.lex_state = 214}, - [4535] = {.lex_state = 214}, - [4536] = {.lex_state = 214}, - [4537] = {.lex_state = 214}, + [4535] = {.lex_state = 435}, + [4536] = {.lex_state = 435}, + [4537] = {.lex_state = 435}, [4538] = {.lex_state = 214}, - [4539] = {.lex_state = 214}, - [4540] = {.lex_state = 214}, - [4541] = {.lex_state = 214}, + [4539] = {.lex_state = 435}, + [4540] = {.lex_state = 219}, + [4541] = {.lex_state = 435}, [4542] = {.lex_state = 214}, [4543] = {.lex_state = 214}, [4544] = {.lex_state = 214}, @@ -20278,19 +20218,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4555] = {.lex_state = 214}, [4556] = {.lex_state = 214}, [4557] = {.lex_state = 214}, - [4558] = {.lex_state = 258}, - [4559] = {.lex_state = 435}, - [4560] = {.lex_state = 435}, - [4561] = {.lex_state = 258}, - [4562] = {.lex_state = 435}, - [4563] = {.lex_state = 213}, - [4564] = {.lex_state = 258}, - [4565] = {.lex_state = 435}, - [4566] = {.lex_state = 435}, - [4567] = {.lex_state = 258}, - [4568] = {.lex_state = 435}, + [4558] = {.lex_state = 214}, + [4559] = {.lex_state = 214}, + [4560] = {.lex_state = 214}, + [4561] = {.lex_state = 214}, + [4562] = {.lex_state = 214}, + [4563] = {.lex_state = 214}, + [4564] = {.lex_state = 214}, + [4565] = {.lex_state = 214}, + [4566] = {.lex_state = 214}, + [4567] = {.lex_state = 214}, + [4568] = {.lex_state = 214}, [4569] = {.lex_state = 214}, - [4570] = {.lex_state = 435}, + [4570] = {.lex_state = 214}, + [4571] = {.lex_state = 214}, + [4572] = {.lex_state = 214}, + [4573] = {.lex_state = 214}, + [4574] = {.lex_state = 214}, + [4575] = {.lex_state = 214}, + [4576] = {.lex_state = 214}, + [4577] = {.lex_state = 214}, + [4578] = {.lex_state = 257}, + [4579] = {.lex_state = 435}, + [4580] = {.lex_state = 257}, + [4581] = {.lex_state = 257}, + [4582] = {.lex_state = 435}, + [4583] = {.lex_state = 213}, + [4584] = {.lex_state = 257}, + [4585] = {.lex_state = 435}, + [4586] = {.lex_state = 212, .external_lex_state = 60}, + [4587] = {.lex_state = 257}, + [4588] = {.lex_state = 435}, + [4589] = {.lex_state = 214}, + [4590] = {.lex_state = 435}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -20435,6 +20395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__empty_value] = ACTIONS(1), [sym__concat] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), + [sym_test_operator] = ACTIONS(1), [sym_regex] = ACTIONS(1), [sym__regex_no_slash] = ACTIONS(1), [sym__regex_no_space] = ACTIONS(1), @@ -20447,43 +20408,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__external_expansion_sym_equal] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(4504), - [sym__statements] = STATE(4448), - [sym_redirected_statement] = STATE(2592), - [sym_for_statement] = STATE(2592), - [sym_c_style_for_statement] = STATE(2592), - [sym_while_statement] = STATE(2592), - [sym_if_statement] = STATE(2592), - [sym_case_statement] = STATE(2592), - [sym_function_definition] = STATE(2592), - [sym_compound_statement] = STATE(2592), - [sym_subshell] = STATE(2592), - [sym_pipeline] = STATE(2592), - [sym_list] = STATE(2592), - [sym_negated_command] = STATE(2592), - [sym_test_command] = STATE(2592), - [sym_declaration_command] = STATE(2592), - [sym_unset_command] = STATE(2592), - [sym_command] = STATE(2592), - [sym_command_name] = STATE(438), - [sym_variable_assignment] = STATE(592), - [sym_variable_assignments] = STATE(2592), - [sym_subscript] = STATE(3985), - [sym_file_redirect] = STATE(1315), - [sym_arithmetic_expansion] = STATE(740), - [sym_brace_expression] = STATE(740), - [sym_concatenation] = STATE(1202), - [sym_string] = STATE(740), - [sym_translated_string] = STATE(740), - [sym_number] = STATE(740), - [sym_simple_expansion] = STATE(740), - [sym_expansion] = STATE(740), - [sym_command_substitution] = STATE(740), - [sym_process_substitution] = STATE(740), - [aux_sym__statements_repeat1] = STATE(275), - [aux_sym_redirected_statement_repeat2] = STATE(2801), - [aux_sym_command_repeat1] = STATE(841), - [aux_sym__literal_repeat1] = STATE(969), + [sym_program] = STATE(4524), + [sym__statements] = STATE(4468), + [sym_redirected_statement] = STATE(2622), + [sym_for_statement] = STATE(2622), + [sym_c_style_for_statement] = STATE(2622), + [sym_while_statement] = STATE(2622), + [sym_if_statement] = STATE(2622), + [sym_case_statement] = STATE(2622), + [sym_function_definition] = STATE(2622), + [sym_compound_statement] = STATE(2622), + [sym_subshell] = STATE(2622), + [sym_pipeline] = STATE(2622), + [sym_list] = STATE(2622), + [sym_negated_command] = STATE(2622), + [sym_test_command] = STATE(2622), + [sym_declaration_command] = STATE(2622), + [sym_unset_command] = STATE(2622), + [sym_command] = STATE(2622), + [sym_command_name] = STATE(462), + [sym_variable_assignment] = STATE(603), + [sym_variable_assignments] = STATE(2622), + [sym_subscript] = STATE(3947), + [sym_file_redirect] = STATE(1379), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(277), + [aux_sym_redirected_statement_repeat2] = STATE(2827), + [aux_sym_command_repeat1] = STATE(865), + [aux_sym__literal_repeat1] = STATE(930), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -20529,54 +20490,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(61), [anon_sym_GT_LPAREN] = ACTIONS(61), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), + [sym_file_descriptor] = ACTIONS(65), + [sym_variable_name] = ACTIONS(67), + [sym_test_operator] = ACTIONS(69), [sym__brace_start] = ACTIONS(71), }, [2] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1770), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(323), - [sym_brace_expression] = STATE(323), - [sym_concatenation] = STATE(376), - [sym_string] = STATE(323), - [sym_translated_string] = STATE(323), - [sym_number] = STATE(323), - [sym_simple_expansion] = STATE(323), - [sym_expansion] = STATE(323), - [sym_command_substitution] = STATE(323), - [sym_process_substitution] = STATE(323), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(368), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1688), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(328), + [sym_brace_expression] = STATE(328), + [sym_concatenation] = STATE(383), + [sym_string] = STATE(328), + [sym_translated_string] = STATE(328), + [sym_number] = STATE(328), + [sym_simple_expansion] = STATE(328), + [sym_expansion] = STATE(328), + [sym_command_substitution] = STATE(328), + [sym_process_substitution] = STATE(328), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(364), [sym_word] = ACTIONS(73), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -20627,54 +20588,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(117), [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(119), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(123), [sym__brace_start] = ACTIONS(125), }, [3] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1654), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(326), - [sym_brace_expression] = STATE(326), - [sym_concatenation] = STATE(377), - [sym_string] = STATE(326), - [sym_translated_string] = STATE(326), - [sym_number] = STATE(326), - [sym_simple_expansion] = STATE(326), - [sym_expansion] = STATE(326), - [sym_command_substitution] = STATE(326), - [sym_process_substitution] = STATE(326), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(357), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1792), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(327), + [sym_brace_expression] = STATE(327), + [sym_concatenation] = STATE(384), + [sym_string] = STATE(327), + [sym_translated_string] = STATE(327), + [sym_number] = STATE(327), + [sym_simple_expansion] = STATE(327), + [sym_expansion] = STATE(327), + [sym_command_substitution] = STATE(327), + [sym_process_substitution] = STATE(327), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(371), [sym_word] = ACTIONS(127), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -20725,55 +20686,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(117), [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), [sym_test_operator] = ACTIONS(139), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), [sym__brace_start] = ACTIONS(125), }, [4] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1745), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(326), - [sym_brace_expression] = STATE(326), - [sym_concatenation] = STATE(377), - [sym_string] = STATE(326), - [sym_translated_string] = STATE(326), - [sym_number] = STATE(326), - [sym_simple_expansion] = STATE(326), - [sym_expansion] = STATE(326), - [sym_command_substitution] = STATE(326), - [sym_process_substitution] = STATE(326), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(357), - [sym_word] = ACTIONS(127), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1677), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(328), + [sym_brace_expression] = STATE(328), + [sym_concatenation] = STATE(383), + [sym_string] = STATE(328), + [sym_translated_string] = STATE(328), + [sym_number] = STATE(328), + [sym_simple_expansion] = STATE(328), + [sym_expansion] = STATE(328), + [sym_command_substitution] = STATE(328), + [sym_process_substitution] = STATE(328), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(364), + [sym_word] = ACTIONS(73), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), @@ -20788,7 +20749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -20803,17 +20764,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DASH2] = ACTIONS(133), - [anon_sym_PLUS2] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_PLUS_PLUS2] = ACTIONS(135), - [anon_sym_DASH_DASH2] = ACTIONS(135), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS_PLUS2] = ACTIONS(95), + [anon_sym_DASH_DASH2] = ACTIONS(95), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), [anon_sym_DOLLAR] = ACTIONS(97), [sym__special_character] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(101), - [sym_raw_string] = ACTIONS(137), - [sym_ansi_c_string] = ACTIONS(137), + [sym_raw_string] = ACTIONS(103), + [sym_ansi_c_string] = ACTIONS(103), [aux_sym_number_token1] = ACTIONS(105), [aux_sym_number_token2] = ACTIONS(107), [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), @@ -20823,59 +20784,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(117), [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(139), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(123), [sym__brace_start] = ACTIONS(125), }, [5] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1766), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(323), - [sym_brace_expression] = STATE(323), - [sym_concatenation] = STATE(376), - [sym_string] = STATE(323), - [sym_translated_string] = STATE(323), - [sym_number] = STATE(323), - [sym_simple_expansion] = STATE(323), - [sym_expansion] = STATE(323), - [sym_command_substitution] = STATE(323), - [sym_process_substitution] = STATE(323), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(368), - [sym_word] = ACTIONS(73), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1817), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(327), + [sym_brace_expression] = STATE(327), + [sym_concatenation] = STATE(384), + [sym_string] = STATE(327), + [sym_translated_string] = STATE(327), + [sym_number] = STATE(327), + [sym_simple_expansion] = STATE(327), + [sym_expansion] = STATE(327), + [sym_command_substitution] = STATE(327), + [sym_process_substitution] = STATE(327), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(371), + [sym_word] = ACTIONS(127), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(141), + [anon_sym_RPAREN_RPAREN] = ACTIONS(77), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -20886,7 +20847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(131), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -20901,17 +20862,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP] = ACTIONS(79), [anon_sym_GT_AMP] = ACTIONS(79), [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DASH2] = ACTIONS(93), - [anon_sym_PLUS2] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_PLUS_PLUS2] = ACTIONS(95), - [anon_sym_DASH_DASH2] = ACTIONS(95), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS_PLUS2] = ACTIONS(135), + [anon_sym_DASH_DASH2] = ACTIONS(135), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(75), [anon_sym_DOLLAR] = ACTIONS(97), [sym__special_character] = ACTIONS(99), [anon_sym_DQUOTE] = ACTIONS(101), - [sym_raw_string] = ACTIONS(103), - [sym_ansi_c_string] = ACTIONS(103), + [sym_raw_string] = ACTIONS(137), + [sym_ansi_c_string] = ACTIONS(137), [aux_sym_number_token1] = ACTIONS(105), [aux_sym_number_token2] = ACTIONS(107), [anon_sym_DOLLAR_LBRACE] = ACTIONS(109), @@ -20921,59 +20882,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(117), [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(119), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(139), [sym__brace_start] = ACTIONS(125), }, [6] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1738), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(326), - [sym_brace_expression] = STATE(326), - [sym_concatenation] = STATE(377), - [sym_string] = STATE(326), - [sym_translated_string] = STATE(326), - [sym_number] = STATE(326), - [sym_simple_expansion] = STATE(326), - [sym_expansion] = STATE(326), - [sym_command_substitution] = STATE(326), - [sym_process_substitution] = STATE(326), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(357), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1809), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(327), + [sym_brace_expression] = STATE(327), + [sym_concatenation] = STATE(384), + [sym_string] = STATE(327), + [sym_translated_string] = STATE(327), + [sym_number] = STATE(327), + [sym_simple_expansion] = STATE(327), + [sym_expansion] = STATE(327), + [sym_command_substitution] = STATE(327), + [sym_process_substitution] = STATE(327), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(371), [sym_word] = ACTIONS(127), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(129), + [anon_sym_RPAREN_RPAREN] = ACTIONS(141), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -21019,59 +20980,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(117), [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), [sym_test_operator] = ACTIONS(139), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), [sym__brace_start] = ACTIONS(125), }, [7] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1778), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(323), - [sym_brace_expression] = STATE(323), - [sym_concatenation] = STATE(376), - [sym_string] = STATE(323), - [sym_translated_string] = STATE(323), - [sym_number] = STATE(323), - [sym_simple_expansion] = STATE(323), - [sym_expansion] = STATE(323), - [sym_command_substitution] = STATE(323), - [sym_process_substitution] = STATE(323), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(368), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1633), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(328), + [sym_brace_expression] = STATE(328), + [sym_concatenation] = STATE(383), + [sym_string] = STATE(328), + [sym_translated_string] = STATE(328), + [sym_number] = STATE(328), + [sym_simple_expansion] = STATE(328), + [sym_expansion] = STATE(328), + [sym_command_substitution] = STATE(328), + [sym_process_substitution] = STATE(328), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(364), [sym_word] = ACTIONS(73), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_RPAREN_RPAREN] = ACTIONS(129), + [anon_sym_RPAREN_RPAREN] = ACTIONS(141), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), @@ -21117,54 +21078,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(117), [anon_sym_GT_LPAREN] = ACTIONS(117), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(119), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(123), [sym__brace_start] = ACTIONS(125), }, [8] = { - [sym__statements] = STATE(4397), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1807), - [sym_binary_expression] = STATE(1795), - [sym_ternary_expression] = STATE(1795), - [sym_unary_expression] = STATE(1795), - [sym_postfix_expression] = STATE(1795), - [sym_parenthesized_expression] = STATE(1795), - [sym_arithmetic_expansion] = STATE(333), - [sym_brace_expression] = STATE(333), - [sym_concatenation] = STATE(380), - [sym_string] = STATE(333), - [sym_translated_string] = STATE(333), - [sym_number] = STATE(333), - [sym_simple_expansion] = STATE(333), - [sym_expansion] = STATE(333), - [sym_command_substitution] = STATE(333), - [sym_process_substitution] = STATE(333), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(375), + [sym__statements] = STATE(4374), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1820), + [sym_binary_expression] = STATE(1763), + [sym_ternary_expression] = STATE(1763), + [sym_unary_expression] = STATE(1763), + [sym_postfix_expression] = STATE(1763), + [sym_parenthesized_expression] = STATE(1763), + [sym_arithmetic_expansion] = STATE(341), + [sym_brace_expression] = STATE(341), + [sym_concatenation] = STATE(387), + [sym_string] = STATE(341), + [sym_translated_string] = STATE(341), + [sym_number] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(382), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -21214,54 +21175,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(175), [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), [sym_test_operator] = ACTIONS(177), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), [sym__brace_start] = ACTIONS(179), }, [9] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1749), - [sym_binary_expression] = STATE(1795), - [sym_ternary_expression] = STATE(1795), - [sym_unary_expression] = STATE(1795), - [sym_postfix_expression] = STATE(1795), - [sym_parenthesized_expression] = STATE(1795), - [sym_arithmetic_expansion] = STATE(333), - [sym_brace_expression] = STATE(333), - [sym_concatenation] = STATE(380), - [sym_string] = STATE(333), - [sym_translated_string] = STATE(333), - [sym_number] = STATE(333), - [sym_simple_expansion] = STATE(333), - [sym_expansion] = STATE(333), - [sym_command_substitution] = STATE(333), - [sym_process_substitution] = STATE(333), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(375), + [sym__expression] = STATE(1636), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(1347), + [sym_brace_expression] = STATE(1347), + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(1347), + [sym_translated_string] = STATE(1347), + [sym_number] = STATE(1347), + [sym_simple_expansion] = STATE(1347), + [sym_expansion] = STATE(1347), + [sym_command_substitution] = STATE(1347), + [sym_process_substitution] = STATE(1347), + [aux_sym__literal_repeat1] = STATE(1458), + [aux_sym_concatenation_repeat1] = STATE(331), + [sym_word] = ACTIONS(181), + [anon_sym_LPAREN_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN_RPAREN] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(185), + [anon_sym_GT_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_EQ] = ACTIONS(185), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(194), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(187), + [anon_sym_LT_AMP] = ACTIONS(187), + [anon_sym_GT_AMP] = ACTIONS(187), + [anon_sym_GT_PIPE] = ACTIONS(187), + [anon_sym_LT_LT_DASH] = ACTIONS(187), + [aux_sym_heredoc_redirect_token1] = ACTIONS(187), + [anon_sym_LT_LT_LT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_PLUS_PLUS2] = ACTIONS(93), + [anon_sym_DASH_DASH2] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(183), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym__special_character] = ACTIONS(200), + [anon_sym_DQUOTE] = ACTIONS(202), + [sym_raw_string] = ACTIONS(181), + [sym_ansi_c_string] = ACTIONS(181), + [aux_sym_number_token1] = ACTIONS(204), + [aux_sym_number_token2] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(214), + [anon_sym_LT_LPAREN] = ACTIONS(216), + [anon_sym_GT_LPAREN] = ACTIONS(216), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(218), + [sym__concat] = ACTIONS(220), + [sym_test_operator] = ACTIONS(222), + [sym__bare_dollar] = ACTIONS(218), + [sym__brace_start] = ACTIONS(224), + }, + [10] = { + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1803), + [sym_binary_expression] = STATE(1763), + [sym_ternary_expression] = STATE(1763), + [sym_unary_expression] = STATE(1763), + [sym_postfix_expression] = STATE(1763), + [sym_parenthesized_expression] = STATE(1763), + [sym_arithmetic_expansion] = STATE(341), + [sym_brace_expression] = STATE(341), + [sym_concatenation] = STATE(387), + [sym_string] = STATE(341), + [sym_translated_string] = STATE(341), + [sym_number] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(382), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -21269,7 +21327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(226), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), @@ -21311,151 +21369,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(175), [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), [sym_test_operator] = ACTIONS(177), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), [sym__brace_start] = ACTIONS(179), }, - [10] = { - [sym__expression] = STATE(1762), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(1491), - [sym_brace_expression] = STATE(1491), - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(1491), - [sym_translated_string] = STATE(1491), - [sym_number] = STATE(1491), - [sym_simple_expansion] = STATE(1491), - [sym_expansion] = STATE(1491), - [sym_command_substitution] = STATE(1491), - [sym_process_substitution] = STATE(1491), - [aux_sym__literal_repeat1] = STATE(1485), - [aux_sym_concatenation_repeat1] = STATE(324), - [sym_word] = ACTIONS(183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN_RPAREN] = ACTIONS(187), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(187), - [anon_sym_GT_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_EQ] = ACTIONS(187), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(187), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(187), - [anon_sym_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_GT_PIPE] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [aux_sym_heredoc_redirect_token1] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(93), - [anon_sym_PLUS2] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(93), - [anon_sym_PLUS_PLUS2] = ACTIONS(93), - [anon_sym_DASH_DASH2] = ACTIONS(93), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(200), - [sym__special_character] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(204), - [sym_raw_string] = ACTIONS(183), - [sym_ansi_c_string] = ACTIONS(183), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(216), - [anon_sym_LT_LPAREN] = ACTIONS(218), - [anon_sym_GT_LPAREN] = ACTIONS(218), + [11] = { + [sym__expression] = STATE(1783), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(1499), + [sym_brace_expression] = STATE(1499), + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(1499), + [sym_translated_string] = STATE(1499), + [sym_number] = STATE(1499), + [sym_simple_expansion] = STATE(1499), + [sym_expansion] = STATE(1499), + [sym_command_substitution] = STATE(1499), + [sym_process_substitution] = STATE(1499), + [aux_sym__literal_repeat1] = STATE(1458), + [aux_sym_concatenation_repeat1] = STATE(331), + [sym_word] = ACTIONS(228), + [anon_sym_LPAREN_LPAREN] = ACTIONS(183), + [anon_sym_RPAREN_RPAREN] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(185), + [anon_sym_GT_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_EQ] = ACTIONS(185), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(187), + [anon_sym_LT_AMP] = ACTIONS(187), + [anon_sym_GT_AMP] = ACTIONS(187), + [anon_sym_GT_PIPE] = ACTIONS(187), + [anon_sym_LT_LT_DASH] = ACTIONS(187), + [aux_sym_heredoc_redirect_token1] = ACTIONS(187), + [anon_sym_LT_LT_LT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(133), + [anon_sym_PLUS_PLUS2] = ACTIONS(133), + [anon_sym_DASH_DASH2] = ACTIONS(133), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(183), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym__special_character] = ACTIONS(232), + [anon_sym_DQUOTE] = ACTIONS(202), + [sym_raw_string] = ACTIONS(228), + [sym_ansi_c_string] = ACTIONS(228), + [aux_sym_number_token1] = ACTIONS(204), + [aux_sym_number_token2] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(214), + [anon_sym_LT_LPAREN] = ACTIONS(216), + [anon_sym_GT_LPAREN] = ACTIONS(216), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(220), - [sym_file_descriptor] = ACTIONS(222), - [sym__concat] = ACTIONS(224), - [sym__bare_dollar] = ACTIONS(222), - [sym__brace_start] = ACTIONS(226), + [sym_file_descriptor] = ACTIONS(218), + [sym__concat] = ACTIONS(220), + [sym_test_operator] = ACTIONS(234), + [sym__bare_dollar] = ACTIONS(218), + [sym__brace_start] = ACTIONS(224), }, - [11] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym__expression] = STATE(1759), - [sym_binary_expression] = STATE(1795), - [sym_ternary_expression] = STATE(1795), - [sym_unary_expression] = STATE(1795), - [sym_postfix_expression] = STATE(1795), - [sym_parenthesized_expression] = STATE(1795), - [sym_arithmetic_expansion] = STATE(333), - [sym_brace_expression] = STATE(333), - [sym_concatenation] = STATE(380), - [sym_string] = STATE(333), - [sym_translated_string] = STATE(333), - [sym_number] = STATE(333), - [sym_simple_expansion] = STATE(333), - [sym_expansion] = STATE(333), - [sym_command_substitution] = STATE(333), - [sym_process_substitution] = STATE(333), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(375), + [12] = { + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym__expression] = STATE(1814), + [sym_binary_expression] = STATE(1763), + [sym_ternary_expression] = STATE(1763), + [sym_unary_expression] = STATE(1763), + [sym_postfix_expression] = STATE(1763), + [sym_parenthesized_expression] = STATE(1763), + [sym_arithmetic_expansion] = STATE(341), + [sym_brace_expression] = STATE(341), + [sym_concatenation] = STATE(387), + [sym_string] = STATE(341), + [sym_translated_string] = STATE(341), + [sym_number] = STATE(341), + [sym_simple_expansion] = STATE(341), + [sym_expansion] = STATE(341), + [sym_command_substitution] = STATE(341), + [sym_process_substitution] = STATE(341), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(382), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -21463,7 +21521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(226), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), @@ -21505,149 +21563,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(175), [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), [sym_test_operator] = ACTIONS(177), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), [sym__brace_start] = ACTIONS(179), }, - [12] = { - [sym__expression] = STATE(1689), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(1387), - [sym_brace_expression] = STATE(1387), - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(1387), - [sym_translated_string] = STATE(1387), - [sym_number] = STATE(1387), - [sym_simple_expansion] = STATE(1387), - [sym_expansion] = STATE(1387), - [sym_command_substitution] = STATE(1387), - [sym_process_substitution] = STATE(1387), - [aux_sym__literal_repeat1] = STATE(1485), - [aux_sym_concatenation_repeat1] = STATE(324), - [sym_word] = ACTIONS(228), - [anon_sym_LPAREN_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN_RPAREN] = ACTIONS(187), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(187), - [anon_sym_GT_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_EQ] = ACTIONS(187), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(187), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(187), - [anon_sym_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(230), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_GT_PIPE] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [aux_sym_heredoc_redirect_token1] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(133), - [anon_sym_PLUS2] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(133), - [anon_sym_PLUS_PLUS2] = ACTIONS(133), - [anon_sym_DASH_DASH2] = ACTIONS(133), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(185), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(200), - [sym__special_character] = ACTIONS(232), - [anon_sym_DQUOTE] = ACTIONS(204), - [sym_raw_string] = ACTIONS(228), - [sym_ansi_c_string] = ACTIONS(228), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(216), - [anon_sym_LT_LPAREN] = ACTIONS(218), - [anon_sym_GT_LPAREN] = ACTIONS(218), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(234), - [sym_file_descriptor] = ACTIONS(222), - [sym__concat] = ACTIONS(224), - [sym__bare_dollar] = ACTIONS(222), - [sym__brace_start] = ACTIONS(226), - }, [13] = { - [sym_redirected_statement] = STATE(2940), - [sym_for_statement] = STATE(2984), - [sym_c_style_for_statement] = STATE(2984), - [sym_while_statement] = STATE(2984), - [sym_if_statement] = STATE(2984), - [sym_case_statement] = STATE(2984), - [sym_function_definition] = STATE(2984), - [sym_compound_statement] = STATE(2984), - [sym_subshell] = STATE(2984), - [sym_pipeline] = STATE(2984), - [sym_list] = STATE(2984), - [sym_negated_command] = STATE(2984), - [sym_test_command] = STATE(2984), - [sym_declaration_command] = STATE(2984), - [sym_unset_command] = STATE(2984), - [sym_command] = STATE(2984), - [sym_command_name] = STATE(549), - [sym_variable_assignment] = STATE(1157), - [sym_variable_assignments] = STATE(2984), - [sym_subscript] = STATE(3947), - [sym_file_redirect] = STATE(1763), - [sym__expression] = STATE(1783), - [sym_binary_expression] = STATE(1755), - [sym_ternary_expression] = STATE(1755), - [sym_unary_expression] = STATE(1755), - [sym_postfix_expression] = STATE(1755), - [sym_parenthesized_expression] = STATE(1755), - [sym_arithmetic_expansion] = STATE(386), - [sym_brace_expression] = STATE(386), - [sym_concatenation] = STATE(409), - [sym_string] = STATE(386), - [sym_translated_string] = STATE(386), - [sym_number] = STATE(386), - [sym_simple_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_redirected_statement_repeat2] = STATE(3112), - [aux_sym_command_repeat1] = STATE(885), - [aux_sym__literal_repeat1] = STATE(407), + [sym_redirected_statement] = STATE(2946), + [sym_for_statement] = STATE(3003), + [sym_c_style_for_statement] = STATE(3003), + [sym_while_statement] = STATE(3003), + [sym_if_statement] = STATE(3003), + [sym_case_statement] = STATE(3003), + [sym_function_definition] = STATE(3003), + [sym_compound_statement] = STATE(3003), + [sym_subshell] = STATE(3003), + [sym_pipeline] = STATE(3003), + [sym_list] = STATE(3003), + [sym_negated_command] = STATE(3003), + [sym_test_command] = STATE(3003), + [sym_declaration_command] = STATE(3003), + [sym_unset_command] = STATE(3003), + [sym_command] = STATE(3003), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1112), + [sym_variable_assignments] = STATE(3003), + [sym_subscript] = STATE(3974), + [sym_file_redirect] = STATE(1759), + [sym__expression] = STATE(1789), + [sym_binary_expression] = STATE(1773), + [sym_ternary_expression] = STATE(1773), + [sym_unary_expression] = STATE(1773), + [sym_postfix_expression] = STATE(1773), + [sym_parenthesized_expression] = STATE(1773), + [sym_arithmetic_expansion] = STATE(390), + [sym_brace_expression] = STATE(390), + [sym_concatenation] = STATE(414), + [sym_string] = STATE(390), + [sym_translated_string] = STATE(390), + [sym_number] = STATE(390), + [sym_simple_expansion] = STATE(390), + [sym_expansion] = STATE(390), + [sym_command_substitution] = STATE(390), + [sym_process_substitution] = STATE(390), + [aux_sym_redirected_statement_repeat2] = STATE(3127), + [aux_sym_command_repeat1] = STATE(897), + [aux_sym__literal_repeat1] = STATE(412), [sym_word] = ACTIONS(236), [anon_sym_for] = ACTIONS(238), [anon_sym_select] = ACTIONS(240), @@ -21698,52 +21659,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(296), [anon_sym_GT_LPAREN] = ACTIONS(296), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(298), - [sym_file_descriptor] = ACTIONS(300), - [sym_variable_name] = ACTIONS(302), + [sym_file_descriptor] = ACTIONS(298), + [sym_variable_name] = ACTIONS(300), + [sym_test_operator] = ACTIONS(302), [sym__brace_start] = ACTIONS(304), }, [14] = { - [sym_redirected_statement] = STATE(2944), - [sym_for_statement] = STATE(2984), - [sym_c_style_for_statement] = STATE(2984), - [sym_while_statement] = STATE(2984), - [sym_if_statement] = STATE(2984), - [sym_case_statement] = STATE(2984), - [sym_function_definition] = STATE(2984), - [sym_compound_statement] = STATE(2984), - [sym_subshell] = STATE(2984), - [sym_pipeline] = STATE(2984), - [sym_list] = STATE(2984), - [sym_negated_command] = STATE(2984), - [sym_test_command] = STATE(2984), - [sym_declaration_command] = STATE(2984), - [sym_unset_command] = STATE(2984), - [sym_command] = STATE(2984), - [sym_command_name] = STATE(549), - [sym_variable_assignment] = STATE(1157), - [sym_variable_assignments] = STATE(2984), - [sym_subscript] = STATE(3947), - [sym_file_redirect] = STATE(1763), - [sym__expression] = STATE(1775), - [sym_binary_expression] = STATE(1755), - [sym_ternary_expression] = STATE(1755), - [sym_unary_expression] = STATE(1755), - [sym_postfix_expression] = STATE(1755), - [sym_parenthesized_expression] = STATE(1755), - [sym_arithmetic_expansion] = STATE(386), - [sym_brace_expression] = STATE(386), - [sym_concatenation] = STATE(409), - [sym_string] = STATE(386), - [sym_translated_string] = STATE(386), - [sym_number] = STATE(386), - [sym_simple_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_redirected_statement_repeat2] = STATE(3112), - [aux_sym_command_repeat1] = STATE(885), - [aux_sym__literal_repeat1] = STATE(407), + [sym_redirected_statement] = STATE(2955), + [sym_for_statement] = STATE(3003), + [sym_c_style_for_statement] = STATE(3003), + [sym_while_statement] = STATE(3003), + [sym_if_statement] = STATE(3003), + [sym_case_statement] = STATE(3003), + [sym_function_definition] = STATE(3003), + [sym_compound_statement] = STATE(3003), + [sym_subshell] = STATE(3003), + [sym_pipeline] = STATE(3003), + [sym_list] = STATE(3003), + [sym_negated_command] = STATE(3003), + [sym_test_command] = STATE(3003), + [sym_declaration_command] = STATE(3003), + [sym_unset_command] = STATE(3003), + [sym_command] = STATE(3003), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1112), + [sym_variable_assignments] = STATE(3003), + [sym_subscript] = STATE(3974), + [sym_file_redirect] = STATE(1759), + [sym__expression] = STATE(1769), + [sym_binary_expression] = STATE(1773), + [sym_ternary_expression] = STATE(1773), + [sym_unary_expression] = STATE(1773), + [sym_postfix_expression] = STATE(1773), + [sym_parenthesized_expression] = STATE(1773), + [sym_arithmetic_expansion] = STATE(390), + [sym_brace_expression] = STATE(390), + [sym_concatenation] = STATE(414), + [sym_string] = STATE(390), + [sym_translated_string] = STATE(390), + [sym_number] = STATE(390), + [sym_simple_expansion] = STATE(390), + [sym_expansion] = STATE(390), + [sym_command_substitution] = STATE(390), + [sym_process_substitution] = STATE(390), + [aux_sym_redirected_statement_repeat2] = STATE(3127), + [aux_sym_command_repeat1] = STATE(897), + [aux_sym__literal_repeat1] = STATE(412), [sym_word] = ACTIONS(236), [anon_sym_for] = ACTIONS(238), [anon_sym_select] = ACTIONS(240), @@ -21794,80 +21755,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(296), [anon_sym_GT_LPAREN] = ACTIONS(296), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(298), - [sym_file_descriptor] = ACTIONS(300), - [sym_variable_name] = ACTIONS(302), + [sym_file_descriptor] = ACTIONS(298), + [sym_variable_name] = ACTIONS(300), + [sym_test_operator] = ACTIONS(302), [sym__brace_start] = ACTIONS(304), }, [15] = { - [sym__expression] = STATE(1776), - [sym_binary_expression] = STATE(1795), - [sym_ternary_expression] = STATE(1795), - [sym_unary_expression] = STATE(1795), - [sym_postfix_expression] = STATE(1795), - [sym_parenthesized_expression] = STATE(1795), - [sym_arithmetic_expansion] = STATE(1422), - [sym_brace_expression] = STATE(1422), - [sym_concatenation] = STATE(1795), - [sym_string] = STATE(1422), - [sym_translated_string] = STATE(1422), - [sym_number] = STATE(1422), - [sym_simple_expansion] = STATE(1422), - [sym_expansion] = STATE(1422), - [sym_command_substitution] = STATE(1422), - [sym_process_substitution] = STATE(1422), - [aux_sym__literal_repeat1] = STATE(1439), - [aux_sym_concatenation_repeat1] = STATE(347), + [sym__expression] = STATE(1813), + [sym_binary_expression] = STATE(1763), + [sym_ternary_expression] = STATE(1763), + [sym_unary_expression] = STATE(1763), + [sym_postfix_expression] = STATE(1763), + [sym_parenthesized_expression] = STATE(1763), + [sym_arithmetic_expansion] = STATE(1439), + [sym_brace_expression] = STATE(1439), + [sym_concatenation] = STATE(1763), + [sym_string] = STATE(1439), + [sym_translated_string] = STATE(1439), + [sym_number] = STATE(1439), + [sym_simple_expansion] = STATE(1439), + [sym_expansion] = STATE(1439), + [sym_command_substitution] = STATE(1439), + [sym_process_substitution] = STATE(1439), + [aux_sym__literal_repeat1] = STATE(1420), + [aux_sym_concatenation_repeat1] = STATE(338), [sym_word] = ACTIONS(308), [anon_sym_LPAREN_LPAREN] = ACTIONS(310), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(187), - [anon_sym_GT_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_EQ] = ACTIONS(187), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(187), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(187), - [anon_sym_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(185), + [anon_sym_GT_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_EQ] = ACTIONS(185), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(312), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), [anon_sym_BANG] = ACTIONS(314), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_GT_PIPE] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [aux_sym_heredoc_redirect_token1] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(187), + [anon_sym_LT_AMP] = ACTIONS(187), + [anon_sym_GT_AMP] = ACTIONS(187), + [anon_sym_GT_PIPE] = ACTIONS(187), + [anon_sym_LT_LT_DASH] = ACTIONS(187), + [aux_sym_heredoc_redirect_token1] = ACTIONS(187), + [anon_sym_LT_LT_LT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), [anon_sym_DASH2] = ACTIONS(151), [anon_sym_PLUS2] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(151), @@ -21889,53 +21850,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(336), [anon_sym_GT_LPAREN] = ACTIONS(336), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(338), - [sym_file_descriptor] = ACTIONS(222), - [sym__concat] = ACTIONS(340), - [sym__bare_dollar] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(218), + [sym__concat] = ACTIONS(338), + [sym_test_operator] = ACTIONS(340), + [sym__bare_dollar] = ACTIONS(218), [sym__brace_start] = ACTIONS(342), }, [16] = { - [sym_redirected_statement] = STATE(2939), - [sym_for_statement] = STATE(2984), - [sym_c_style_for_statement] = STATE(2984), - [sym_while_statement] = STATE(2984), - [sym_if_statement] = STATE(2984), - [sym_case_statement] = STATE(2984), - [sym_function_definition] = STATE(2984), - [sym_compound_statement] = STATE(2984), - [sym_subshell] = STATE(2984), - [sym_pipeline] = STATE(2984), - [sym_list] = STATE(2984), - [sym_negated_command] = STATE(2984), - [sym_test_command] = STATE(2984), - [sym_declaration_command] = STATE(2984), - [sym_unset_command] = STATE(2984), - [sym_command] = STATE(2984), - [sym_command_name] = STATE(549), - [sym_variable_assignment] = STATE(1157), - [sym_variable_assignments] = STATE(2984), - [sym_subscript] = STATE(3947), - [sym_file_redirect] = STATE(1763), - [sym__expression] = STATE(1752), - [sym_binary_expression] = STATE(1755), - [sym_ternary_expression] = STATE(1755), - [sym_unary_expression] = STATE(1755), - [sym_postfix_expression] = STATE(1755), - [sym_parenthesized_expression] = STATE(1755), - [sym_arithmetic_expansion] = STATE(386), - [sym_brace_expression] = STATE(386), - [sym_concatenation] = STATE(409), - [sym_string] = STATE(386), - [sym_translated_string] = STATE(386), - [sym_number] = STATE(386), - [sym_simple_expansion] = STATE(386), - [sym_expansion] = STATE(386), - [sym_command_substitution] = STATE(386), - [sym_process_substitution] = STATE(386), - [aux_sym_redirected_statement_repeat2] = STATE(3112), - [aux_sym_command_repeat1] = STATE(885), - [aux_sym__literal_repeat1] = STATE(407), + [sym_redirected_statement] = STATE(2921), + [sym_for_statement] = STATE(3003), + [sym_c_style_for_statement] = STATE(3003), + [sym_while_statement] = STATE(3003), + [sym_if_statement] = STATE(3003), + [sym_case_statement] = STATE(3003), + [sym_function_definition] = STATE(3003), + [sym_compound_statement] = STATE(3003), + [sym_subshell] = STATE(3003), + [sym_pipeline] = STATE(3003), + [sym_list] = STATE(3003), + [sym_negated_command] = STATE(3003), + [sym_test_command] = STATE(3003), + [sym_declaration_command] = STATE(3003), + [sym_unset_command] = STATE(3003), + [sym_command] = STATE(3003), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1112), + [sym_variable_assignments] = STATE(3003), + [sym_subscript] = STATE(3974), + [sym_file_redirect] = STATE(1759), + [sym__expression] = STATE(1800), + [sym_binary_expression] = STATE(1773), + [sym_ternary_expression] = STATE(1773), + [sym_unary_expression] = STATE(1773), + [sym_postfix_expression] = STATE(1773), + [sym_parenthesized_expression] = STATE(1773), + [sym_arithmetic_expansion] = STATE(390), + [sym_brace_expression] = STATE(390), + [sym_concatenation] = STATE(414), + [sym_string] = STATE(390), + [sym_translated_string] = STATE(390), + [sym_number] = STATE(390), + [sym_simple_expansion] = STATE(390), + [sym_expansion] = STATE(390), + [sym_command_substitution] = STATE(390), + [sym_process_substitution] = STATE(390), + [aux_sym_redirected_statement_repeat2] = STATE(3127), + [aux_sym_command_repeat1] = STATE(897), + [aux_sym__literal_repeat1] = STATE(412), [sym_word] = ACTIONS(236), [anon_sym_for] = ACTIONS(238), [anon_sym_select] = ACTIONS(240), @@ -21986,77 +21947,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(296), [anon_sym_GT_LPAREN] = ACTIONS(296), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(298), - [sym_file_descriptor] = ACTIONS(300), - [sym_variable_name] = ACTIONS(302), + [sym_file_descriptor] = ACTIONS(298), + [sym_variable_name] = ACTIONS(300), + [sym_test_operator] = ACTIONS(302), [sym__brace_start] = ACTIONS(304), }, [17] = { - [sym__expression] = STATE(1794), - [sym_binary_expression] = STATE(1755), - [sym_ternary_expression] = STATE(1755), - [sym_unary_expression] = STATE(1755), - [sym_postfix_expression] = STATE(1755), - [sym_parenthesized_expression] = STATE(1755), - [sym_arithmetic_expansion] = STATE(1428), - [sym_brace_expression] = STATE(1428), - [sym_concatenation] = STATE(1755), - [sym_string] = STATE(1428), - [sym_translated_string] = STATE(1428), - [sym_number] = STATE(1428), - [sym_simple_expansion] = STATE(1428), - [sym_expansion] = STATE(1428), - [sym_command_substitution] = STATE(1428), - [sym_process_substitution] = STATE(1428), - [aux_sym__literal_repeat1] = STATE(1596), - [aux_sym_concatenation_repeat1] = STATE(384), + [sym__expression] = STATE(1819), + [sym_binary_expression] = STATE(1773), + [sym_ternary_expression] = STATE(1773), + [sym_unary_expression] = STATE(1773), + [sym_postfix_expression] = STATE(1773), + [sym_parenthesized_expression] = STATE(1773), + [sym_arithmetic_expansion] = STATE(1521), + [sym_brace_expression] = STATE(1521), + [sym_concatenation] = STATE(1773), + [sym_string] = STATE(1521), + [sym_translated_string] = STATE(1521), + [sym_number] = STATE(1521), + [sym_simple_expansion] = STATE(1521), + [sym_expansion] = STATE(1521), + [sym_command_substitution] = STATE(1521), + [sym_process_substitution] = STATE(1521), + [aux_sym__literal_repeat1] = STATE(1550), + [aux_sym_concatenation_repeat1] = STATE(391), [sym_word] = ACTIONS(346), [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(352), [anon_sym_PIPE_PIPE] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), [anon_sym_LPAREN] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_PIPE_AMP] = ACTIONS(222), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(218), [anon_sym_BANG] = ACTIONS(357), [anon_sym_RBRACK] = ACTIONS(350), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(222), - [anon_sym_LT_AMP] = ACTIONS(222), - [anon_sym_GT_AMP] = ACTIONS(222), - [anon_sym_GT_PIPE] = ACTIONS(222), - [anon_sym_LT_LT_DASH] = ACTIONS(222), - [anon_sym_LT_LT_LT] = ACTIONS(222), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(218), + [anon_sym_LT_AMP] = ACTIONS(218), + [anon_sym_GT_AMP] = ACTIONS(218), + [anon_sym_GT_PIPE] = ACTIONS(218), + [anon_sym_LT_LT_DASH] = ACTIONS(218), + [anon_sym_LT_LT_LT] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), [anon_sym_DASH2] = ACTIONS(272), [anon_sym_PLUS2] = ACTIONS(272), [anon_sym_TILDE] = ACTIONS(274), @@ -22078,51 +22039,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(381), [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(383), - [sym_file_descriptor] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(218), [sym__concat] = ACTIONS(359), - [sym__bare_dollar] = ACTIONS(222), + [sym_test_operator] = ACTIONS(383), + [sym__bare_dollar] = ACTIONS(218), [sym__brace_start] = ACTIONS(385), }, [18] = { - [aux_sym__terminated_statement] = STATE(20), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_elif_clause] = STATE(3618), - [sym_else_clause] = STATE(4362), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_if_statement_repeat1] = STATE(3618), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_elif_clause] = STATE(3643), + [sym_else_clause] = STATE(4129), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_if_statement_repeat1] = STATE(3643), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -22170,50 +22131,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [19] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_elif_clause] = STATE(3615), - [sym_else_clause] = STATE(4263), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_if_statement_repeat1] = STATE(3615), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_elif_clause] = STATE(3637), + [sym_else_clause] = STATE(4091), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_if_statement_repeat1] = STATE(3637), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -22261,50 +22222,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [20] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_elif_clause] = STATE(3623), - [sym_else_clause] = STATE(4348), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_if_statement_repeat1] = STATE(3623), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(21), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_elif_clause] = STATE(3639), + [sym_else_clause] = STATE(4331), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_if_statement_repeat1] = STATE(3639), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -22352,50 +22313,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [21] = { - [aux_sym__terminated_statement] = STATE(23), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_elif_clause] = STATE(3634), - [sym_else_clause] = STATE(4199), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_if_statement_repeat1] = STATE(3634), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_elif_clause] = STATE(3645), + [sym_else_clause] = STATE(4316), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_if_statement_repeat1] = STATE(3645), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -22443,50 +22404,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [22] = { - [aux_sym__terminated_statement] = STATE(19), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_elif_clause] = STATE(3639), - [sym_else_clause] = STATE(4177), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_if_statement_repeat1] = STATE(3639), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(18), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_elif_clause] = STATE(3630), + [sym_else_clause] = STATE(4228), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_if_statement_repeat1] = STATE(3630), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -22534,50 +22495,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [23] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_elif_clause] = STATE(3621), - [sym_else_clause] = STATE(4067), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_if_statement_repeat1] = STATE(3621), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(19), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_elif_clause] = STATE(3650), + [sym_else_clause] = STATE(4139), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_if_statement_repeat1] = STATE(3650), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -22625,48 +22586,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [24] = { - [sym__statements] = STATE(3770), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3748), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -22715,48 +22676,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [25] = { - [sym__statements] = STATE(3741), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3766), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -22772,7 +22733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(521), [anon_sym_SEMI_SEMI] = ACTIONS(523), [anon_sym_SEMI_AMP] = ACTIONS(525), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(527), [anon_sym_function] = ACTIONS(477), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(481), @@ -22805,48 +22766,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [26] = { - [sym__statements] = STATE(3754), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3720), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -22859,7 +22820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(527), + [anon_sym_esac] = ACTIONS(469), [anon_sym_SEMI_SEMI] = ACTIONS(529), [anon_sym_SEMI_AMP] = ACTIONS(531), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), @@ -22895,48 +22856,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [27] = { - [sym__statements] = STATE(3761), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3729), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -22952,7 +22913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(535), [anon_sym_SEMI_SEMI] = ACTIONS(537), [anon_sym_SEMI_AMP] = ACTIONS(539), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(539), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), [anon_sym_function] = ACTIONS(477), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(481), @@ -22985,48 +22946,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [28] = { - [sym__statements] = STATE(3735), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3774), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23039,10 +23000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(541), + [anon_sym_esac] = ACTIONS(521), [anon_sym_SEMI_SEMI] = ACTIONS(543), [anon_sym_SEMI_AMP] = ACTIONS(545), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(545), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), [anon_sym_function] = ACTIONS(477), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(481), @@ -23075,48 +23036,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [29] = { - [sym__statements] = STATE(3762), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3722), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23129,9 +23090,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(547), - [anon_sym_SEMI_SEMI] = ACTIONS(549), - [anon_sym_SEMI_AMP] = ACTIONS(551), + [anon_sym_esac] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(551), + [anon_sym_SEMI_AMP] = ACTIONS(553), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), [anon_sym_function] = ACTIONS(477), [anon_sym_LBRACE] = ACTIONS(479), @@ -23165,48 +23126,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [30] = { - [sym__statements] = STATE(3767), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3730), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23255,48 +23216,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [31] = { - [sym__statements] = STATE(3716), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(561), + [anon_sym_for] = ACTIONS(564), + [anon_sym_select] = ACTIONS(567), + [anon_sym_LPAREN_LPAREN] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_while] = ACTIONS(582), + [anon_sym_until] = ACTIONS(582), + [anon_sym_do] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_then] = ACTIONS(585), + [anon_sym_fi] = ACTIONS(585), + [anon_sym_elif] = ACTIONS(585), + [anon_sym_else] = ACTIONS(585), + [anon_sym_case] = ACTIONS(590), + [anon_sym_function] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(605), + [anon_sym_declare] = ACTIONS(608), + [anon_sym_typeset] = ACTIONS(608), + [anon_sym_export] = ACTIONS(608), + [anon_sym_readonly] = ACTIONS(608), + [anon_sym_local] = ACTIONS(608), + [anon_sym_unset] = ACTIONS(611), + [anon_sym_unsetenv] = ACTIONS(611), + [anon_sym_AMP_GT] = ACTIONS(576), + [anon_sym_AMP_GT_GT] = ACTIONS(573), + [anon_sym_LT_AMP] = ACTIONS(573), + [anon_sym_GT_AMP] = ACTIONS(573), + [anon_sym_GT_PIPE] = ACTIONS(573), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(570), + [anon_sym_DOLLAR] = ACTIONS(614), + [sym__special_character] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(620), + [sym_raw_string] = ACTIONS(623), + [sym_ansi_c_string] = ACTIONS(623), + [aux_sym_number_token1] = ACTIONS(626), + [aux_sym_number_token2] = ACTIONS(629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(638), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(641), + [anon_sym_LT_LPAREN] = ACTIONS(644), + [anon_sym_GT_LPAREN] = ACTIONS(644), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(647), + [sym_variable_name] = ACTIONS(650), + [sym_test_operator] = ACTIONS(653), + [sym__brace_start] = ACTIONS(656), + }, + [32] = { + [sym__statements] = STATE(3731), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23309,10 +23360,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(547), - [anon_sym_SEMI_SEMI] = ACTIONS(561), - [anon_sym_SEMI_AMP] = ACTIONS(563), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(565), + [anon_sym_esac] = ACTIONS(659), + [anon_sym_SEMI_SEMI] = ACTIONS(661), + [anon_sym_SEMI_AMP] = ACTIONS(663), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(663), [anon_sym_function] = ACTIONS(477), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(481), @@ -23345,138 +23396,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, - [32] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(567), - [anon_sym_for] = ACTIONS(570), - [anon_sym_select] = ACTIONS(573), - [anon_sym_LPAREN_LPAREN] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_while] = ACTIONS(588), - [anon_sym_until] = ACTIONS(588), - [anon_sym_do] = ACTIONS(591), - [anon_sym_if] = ACTIONS(593), - [anon_sym_then] = ACTIONS(591), - [anon_sym_fi] = ACTIONS(591), - [anon_sym_elif] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_case] = ACTIONS(596), - [anon_sym_function] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(611), - [anon_sym_declare] = ACTIONS(614), - [anon_sym_typeset] = ACTIONS(614), - [anon_sym_export] = ACTIONS(614), - [anon_sym_readonly] = ACTIONS(614), - [anon_sym_local] = ACTIONS(614), - [anon_sym_unset] = ACTIONS(617), - [anon_sym_unsetenv] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(582), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_GT_PIPE] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym__special_character] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(626), - [sym_raw_string] = ACTIONS(629), - [sym_ansi_c_string] = ACTIONS(629), - [aux_sym_number_token1] = ACTIONS(632), - [aux_sym_number_token2] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), - [anon_sym_BQUOTE] = ACTIONS(644), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [anon_sym_GT_LPAREN] = ACTIONS(650), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(653), - [sym_file_descriptor] = ACTIONS(656), - [sym_variable_name] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), - }, [33] = { - [sym__statements] = STATE(3768), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3732), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23489,7 +23450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(527), + [anon_sym_esac] = ACTIONS(535), [anon_sym_SEMI_SEMI] = ACTIONS(665), [anon_sym_SEMI_AMP] = ACTIONS(667), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(669), @@ -23525,48 +23486,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [34] = { - [sym__statements] = STATE(3774), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3721), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23579,10 +23540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(469), - [anon_sym_SEMI_SEMI] = ACTIONS(671), - [anon_sym_SEMI_AMP] = ACTIONS(673), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(675), + [anon_sym_esac] = ACTIONS(671), + [anon_sym_SEMI_SEMI] = ACTIONS(673), + [anon_sym_SEMI_AMP] = ACTIONS(675), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(677), [anon_sym_function] = ACTIONS(477), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(481), @@ -23615,48 +23576,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [35] = { - [sym__statements] = STATE(3775), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3724), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23669,9 +23630,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(679), - [anon_sym_SEMI_AMP] = ACTIONS(681), + [anon_sym_esac] = ACTIONS(679), + [anon_sym_SEMI_SEMI] = ACTIONS(681), + [anon_sym_SEMI_AMP] = ACTIONS(683), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(683), [anon_sym_function] = ACTIONS(477), [anon_sym_LBRACE] = ACTIONS(479), @@ -23705,48 +23666,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [36] = { - [sym__statements] = STATE(3776), - [sym_redirected_statement] = STATE(2352), - [sym_for_statement] = STATE(2352), - [sym_c_style_for_statement] = STATE(2352), - [sym_while_statement] = STATE(2352), - [sym_if_statement] = STATE(2352), - [sym_case_statement] = STATE(2352), - [sym_function_definition] = STATE(2352), - [sym_compound_statement] = STATE(2352), - [sym_subshell] = STATE(2352), - [sym_pipeline] = STATE(2352), - [sym_list] = STATE(2352), - [sym_negated_command] = STATE(2352), - [sym_test_command] = STATE(2352), - [sym_declaration_command] = STATE(2352), - [sym_unset_command] = STATE(2352), - [sym_command] = STATE(2352), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(539), - [sym_variable_assignments] = STATE(2352), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(271), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [sym__statements] = STATE(3770), + [sym_redirected_statement] = STATE(2436), + [sym_for_statement] = STATE(2436), + [sym_c_style_for_statement] = STATE(2436), + [sym_while_statement] = STATE(2436), + [sym_if_statement] = STATE(2436), + [sym_case_statement] = STATE(2436), + [sym_function_definition] = STATE(2436), + [sym_compound_statement] = STATE(2436), + [sym_subshell] = STATE(2436), + [sym_pipeline] = STATE(2436), + [sym_list] = STATE(2436), + [sym_negated_command] = STATE(2436), + [sym_test_command] = STATE(2436), + [sym_declaration_command] = STATE(2436), + [sym_unset_command] = STATE(2436), + [sym_command] = STATE(2436), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(548), + [sym_variable_assignments] = STATE(2436), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23759,7 +23720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(463), [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), - [anon_sym_esac] = ACTIONS(677), + [anon_sym_esac] = ACTIONS(671), [anon_sym_SEMI_SEMI] = ACTIONS(685), [anon_sym_SEMI_AMP] = ACTIONS(687), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(689), @@ -23795,48 +23756,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, [37] = { - [sym__statements] = STATE(3882), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3804), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23851,7 +23812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(699), [anon_sym_SEMI_AMP] = ACTIONS(539), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(539), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -23884,48 +23845,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [38] = { - [sym__statements] = STATE(3842), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3844), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -23939,8 +23900,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(739), - [anon_sym_SEMI_AMP] = ACTIONS(687), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(689), + [anon_sym_SEMI_AMP] = ACTIONS(553), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -23973,48 +23934,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [39] = { - [sym__statements] = STATE(3826), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3794), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24028,8 +23989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(741), - [anon_sym_SEMI_AMP] = ACTIONS(681), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(683), + [anon_sym_SEMI_AMP] = ACTIONS(667), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(669), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24062,48 +24023,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [40] = { - [sym__statements] = STATE(3866), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3856), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24117,8 +24078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_SEMI_AMP] = ACTIONS(673), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(675), + [anon_sym_SEMI_AMP] = ACTIONS(473), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(475), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24151,48 +24112,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [41] = { - [sym__statements] = STATE(3857), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3869), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24206,8 +24167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(745), - [anon_sym_SEMI_AMP] = ACTIONS(563), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(565), + [anon_sym_SEMI_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(527), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24240,48 +24201,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [42] = { - [sym__statements] = STATE(3792), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3913), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24295,8 +24256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_SEMI_AMP] = ACTIONS(473), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(475), + [anon_sym_SEMI_AMP] = ACTIONS(687), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(689), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24329,48 +24290,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [43] = { - [sym__statements] = STATE(3869), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3921), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24384,8 +24345,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_SEMI_AMP] = ACTIONS(525), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), + [anon_sym_SEMI_AMP] = ACTIONS(675), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(677), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24418,48 +24379,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [44] = { - [sym__statements] = STATE(3795), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3834), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24473,8 +24434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_SEMI_AMP] = ACTIONS(531), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), + [anon_sym_SEMI_AMP] = ACTIONS(683), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(683), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24507,48 +24468,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [45] = { - [sym__statements] = STATE(3783), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3895), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24562,8 +24523,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_SEMI_AMP] = ACTIONS(667), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(669), + [anon_sym_SEMI_AMP] = ACTIONS(545), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24596,48 +24557,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [46] = { - [sym__statements] = STATE(3782), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3801), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24685,48 +24646,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [47] = { - [sym__statements] = STATE(3908), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3796), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24740,8 +24701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(757), - [anon_sym_SEMI_AMP] = ACTIONS(545), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(545), + [anon_sym_SEMI_AMP] = ACTIONS(663), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(663), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24774,48 +24735,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [48] = { - [sym__statements] = STATE(3876), - [sym_redirected_statement] = STATE(2370), - [sym_for_statement] = STATE(2370), - [sym_c_style_for_statement] = STATE(2370), - [sym_while_statement] = STATE(2370), - [sym_if_statement] = STATE(2370), - [sym_case_statement] = STATE(2370), - [sym_function_definition] = STATE(2370), - [sym_compound_statement] = STATE(2370), - [sym_subshell] = STATE(2370), - [sym_pipeline] = STATE(2370), - [sym_list] = STATE(2370), - [sym_negated_command] = STATE(2370), - [sym_test_command] = STATE(2370), - [sym_declaration_command] = STATE(2370), - [sym_unset_command] = STATE(2370), - [sym_command] = STATE(2370), - [sym_command_name] = STATE(427), + [sym__statements] = STATE(3807), + [sym_redirected_statement] = STATE(2450), + [sym_for_statement] = STATE(2450), + [sym_c_style_for_statement] = STATE(2450), + [sym_while_statement] = STATE(2450), + [sym_if_statement] = STATE(2450), + [sym_case_statement] = STATE(2450), + [sym_function_definition] = STATE(2450), + [sym_compound_statement] = STATE(2450), + [sym_subshell] = STATE(2450), + [sym_pipeline] = STATE(2450), + [sym_list] = STATE(2450), + [sym_negated_command] = STATE(2450), + [sym_test_command] = STATE(2450), + [sym_declaration_command] = STATE(2450), + [sym_unset_command] = STATE(2450), + [sym_command] = STATE(2450), + [sym_command_name] = STATE(431), [sym_variable_assignment] = STATE(564), - [sym_variable_assignments] = STATE(2370), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(276), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [sym_variable_assignments] = STATE(2450), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(279), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -24829,8 +24790,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(465), [anon_sym_case] = ACTIONS(467), [anon_sym_SEMI_SEMI] = ACTIONS(759), - [anon_sym_SEMI_AMP] = ACTIONS(551), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), + [anon_sym_SEMI_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), [anon_sym_function] = ACTIONS(701), [anon_sym_LBRACE] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(703), @@ -24863,47 +24824,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, [49] = { [aux_sym__terminated_statement] = STATE(50), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -24951,47 +24912,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [50] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -25039,84 +25000,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [51] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_do_group] = STATE(2847), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(765), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25126,64 +25087,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [52] = { - [sym__statements] = STATE(4397), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4250), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -25200,10 +25161,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25213,48 +25174,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [53] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_do_group] = STATE(2788), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [sym__statements] = STATE(4374), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), + }, + [54] = { + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_do_group] = STATE(3185), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -25265,7 +25313,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(783), + [anon_sym_do] = ACTIONS(785), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(401), @@ -25300,84 +25348,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [54] = { - [sym__statements] = STATE(4311), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [55] = { + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_do_group] = STATE(2835), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(787), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25387,64 +25435,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [55] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [56] = { + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(791), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -25461,10 +25509,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25474,64 +25522,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [56] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [57] = { + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(793), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -25548,97 +25596,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), - [sym__brace_start] = ACTIONS(437), - }, - [57] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_do_group] = STATE(2845), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25648,56 +25609,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [58] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4250), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(769), [anon_sym_RPAREN] = ACTIONS(795), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), @@ -25705,7 +25666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -25722,10 +25683,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25735,84 +25696,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [59] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_do_group] = STATE(3184), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(797), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(797), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25822,56 +25783,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [60] = { - [sym__statements] = STATE(4311), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(789), [anon_sym_RPAREN] = ACTIONS(799), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), @@ -25879,7 +25840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -25896,10 +25857,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25909,56 +25870,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [61] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(789), [anon_sym_RPAREN] = ACTIONS(801), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), @@ -25966,7 +25927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -25983,10 +25944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -25996,83 +25957,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [62] = { - [sym__statements] = STATE(4210), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1341), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4408), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -26082,49 +26043,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [63] = { - [sym__statements] = STATE(4505), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4231), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -26138,7 +26099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -26155,10 +26116,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -26168,48 +26129,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [64] = { - [aux_sym__terminated_statement] = STATE(226), - [sym_redirected_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_compound_statement] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), + [sym__statements] = STATE(4472), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2723), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -26219,21 +26181,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(803), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -26254,49 +26215,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [65] = { - [sym__statements] = STATE(4169), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4471), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -26308,18 +26269,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -26340,135 +26301,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [66] = { - [sym__statements] = STATE(4173), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(807), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), + [aux_sym__terminated_statement] = STATE(66), + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(561), + [anon_sym_for] = ACTIONS(564), + [anon_sym_select] = ACTIONS(567), + [anon_sym_LPAREN_LPAREN] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_while] = ACTIONS(582), + [anon_sym_until] = ACTIONS(582), + [anon_sym_if] = ACTIONS(587), + [anon_sym_case] = ACTIONS(590), + [anon_sym_function] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(813), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(605), + [anon_sym_declare] = ACTIONS(608), + [anon_sym_typeset] = ACTIONS(608), + [anon_sym_export] = ACTIONS(608), + [anon_sym_readonly] = ACTIONS(608), + [anon_sym_local] = ACTIONS(608), + [anon_sym_unset] = ACTIONS(611), + [anon_sym_unsetenv] = ACTIONS(611), + [anon_sym_AMP_GT] = ACTIONS(576), + [anon_sym_AMP_GT_GT] = ACTIONS(573), + [anon_sym_LT_AMP] = ACTIONS(573), + [anon_sym_GT_AMP] = ACTIONS(573), + [anon_sym_GT_PIPE] = ACTIONS(573), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(570), + [anon_sym_DOLLAR] = ACTIONS(614), + [sym__special_character] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(620), + [sym_raw_string] = ACTIONS(623), + [sym_ansi_c_string] = ACTIONS(623), + [aux_sym_number_token1] = ACTIONS(626), + [aux_sym_number_token2] = ACTIONS(629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(638), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(641), + [anon_sym_LT_LPAREN] = ACTIONS(644), + [anon_sym_GT_LPAREN] = ACTIONS(644), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), + [sym_file_descriptor] = ACTIONS(647), + [sym_variable_name] = ACTIONS(650), + [sym_test_operator] = ACTIONS(653), + [sym__brace_start] = ACTIONS(656), }, [67] = { - [sym__statements] = STATE(4062), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(67), + [sym_redirected_statement] = STATE(2734), + [sym_for_statement] = STATE(2734), + [sym_c_style_for_statement] = STATE(2734), + [sym_while_statement] = STATE(2734), + [sym_if_statement] = STATE(2734), + [sym_case_statement] = STATE(2734), + [sym_function_definition] = STATE(2734), + [sym_compound_statement] = STATE(2734), + [sym_subshell] = STATE(2734), + [sym_pipeline] = STATE(2734), + [sym_list] = STATE(2734), + [sym_negated_command] = STATE(2734), + [sym_test_command] = STATE(2734), + [sym_declaration_command] = STATE(2734), + [sym_unset_command] = STATE(2734), + [sym_command] = STATE(2734), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(639), + [sym_variable_assignments] = STATE(2734), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(561), + [anon_sym_for] = ACTIONS(564), + [anon_sym_select] = ACTIONS(567), + [anon_sym_LPAREN_LPAREN] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_while] = ACTIONS(582), + [anon_sym_until] = ACTIONS(582), + [anon_sym_done] = ACTIONS(585), + [anon_sym_if] = ACTIONS(587), + [anon_sym_case] = ACTIONS(590), + [anon_sym_function] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(605), + [anon_sym_declare] = ACTIONS(608), + [anon_sym_typeset] = ACTIONS(608), + [anon_sym_export] = ACTIONS(608), + [anon_sym_readonly] = ACTIONS(608), + [anon_sym_local] = ACTIONS(608), + [anon_sym_unset] = ACTIONS(611), + [anon_sym_unsetenv] = ACTIONS(611), + [anon_sym_AMP_GT] = ACTIONS(576), + [anon_sym_AMP_GT_GT] = ACTIONS(573), + [anon_sym_LT_AMP] = ACTIONS(573), + [anon_sym_GT_AMP] = ACTIONS(573), + [anon_sym_GT_PIPE] = ACTIONS(573), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(570), + [anon_sym_DOLLAR] = ACTIONS(614), + [sym__special_character] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(620), + [sym_raw_string] = ACTIONS(623), + [sym_ansi_c_string] = ACTIONS(623), + [aux_sym_number_token1] = ACTIONS(626), + [aux_sym_number_token2] = ACTIONS(629), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(632), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(635), + [anon_sym_BQUOTE] = ACTIONS(638), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(641), + [anon_sym_LT_LPAREN] = ACTIONS(644), + [anon_sym_GT_LPAREN] = ACTIONS(644), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(647), + [sym_variable_name] = ACTIONS(650), + [sym_test_operator] = ACTIONS(653), + [sym__brace_start] = ACTIONS(656), + }, + [68] = { + [sym__statements] = STATE(4470), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -26482,7 +26529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -26499,10 +26546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -26512,47 +26559,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [68] = { - [aux_sym__terminated_statement] = STATE(123), - [sym_redirected_statement] = STATE(2646), - [sym_for_statement] = STATE(2646), - [sym_c_style_for_statement] = STATE(2646), - [sym_while_statement] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_case_statement] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [sym_subshell] = STATE(2646), - [sym_pipeline] = STATE(2646), - [sym_list] = STATE(2646), - [sym_negated_command] = STATE(2646), - [sym_test_command] = STATE(2646), - [sym_declaration_command] = STATE(2646), - [sym_unset_command] = STATE(2646), - [sym_command] = STATE(2646), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2646), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [69] = { + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -26564,10 +26611,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(815), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(815), [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -26598,135 +26645,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [69] = { - [sym__statements] = STATE(4205), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1306), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [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(85), - [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(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [70] = { - [sym__statements] = STATE(4215), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4313), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -26738,18 +26699,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -26770,49 +26731,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [71] = { - [sym__statements] = STATE(4225), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4106), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -26824,18 +26785,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -26856,83 +26817,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [72] = { - [sym__statements] = STATE(4226), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(817), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -26942,49 +26903,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [73] = { - [sym__statements] = STATE(4032), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1355), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4446), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1316), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -26998,7 +26959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27015,10 +26976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -27028,83 +26989,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [74] = { - [sym__statements] = STATE(4098), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4441), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -27114,83 +27075,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [75] = { - [sym__statements] = STATE(4239), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1305), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4440), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -27200,49 +27161,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [76] = { - [sym__statements] = STATE(4105), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -27253,19 +27213,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(819), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -27286,83 +27247,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [77] = { - [sym__statements] = STATE(4245), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4438), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -27372,83 +27333,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [78] = { - [sym__statements] = STATE(4246), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4317), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -27458,49 +27419,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [79] = { - [sym__statements] = STATE(4107), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4144), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -27512,18 +27473,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -27544,49 +27505,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [80] = { - [sym__statements] = STATE(4259), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4417), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1311), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -27600,7 +27561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27617,10 +27578,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -27630,49 +27591,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [81] = { - [sym__statements] = STATE(4112), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1378), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4092), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1398), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -27686,7 +27647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -27703,10 +27664,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -27716,133 +27677,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [82] = { - [sym__statements] = STATE(4271), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1303), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [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(85), - [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(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), - [sym__brace_start] = ACTIONS(437), - }, - [83] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(66), + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -27854,10 +27729,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(817), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(821), [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -27888,49 +27763,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [83] = { + [sym__statements] = STATE(4042), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [84] = { - [sym__statements] = STATE(4290), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4286), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -27942,18 +27903,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -27974,49 +27935,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [85] = { - [sym__statements] = STATE(4293), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4294), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28028,18 +27989,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -28060,49 +28021,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [86] = { - [sym__statements] = STATE(4298), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4407), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28116,7 +28077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28133,10 +28094,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -28146,49 +28107,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [87] = { - [sym__statements] = STATE(4340), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1298), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4389), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1291), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28202,7 +28163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28219,10 +28180,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -28232,49 +28193,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [88] = { - [sym__statements] = STATE(4341), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4385), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28286,18 +28247,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -28318,48 +28279,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [89] = { - [aux_sym__terminated_statement] = STATE(244), - [sym_redirected_statement] = STATE(2646), - [sym_for_statement] = STATE(2646), - [sym_c_style_for_statement] = STATE(2646), - [sym_while_statement] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_case_statement] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [sym_subshell] = STATE(2646), - [sym_pipeline] = STATE(2646), - [sym_list] = STATE(2646), - [sym_negated_command] = STATE(2646), - [sym_test_command] = STATE(2646), - [sym_declaration_command] = STATE(2646), - [sym_unset_command] = STATE(2646), - [sym_command] = STATE(2646), + [sym__statements] = STATE(4382), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2646), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28371,19 +28333,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -28404,135 +28365,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [90] = { - [sym__statements] = STATE(4350), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(807), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [91] = { - [sym__statements] = STATE(4351), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4377), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28546,7 +28421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28563,10 +28438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -28576,49 +28451,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [92] = { - [sym__statements] = STATE(4391), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1300), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [91] = { + [sym__statements] = STATE(4355), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1364), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28632,7 +28507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28649,10 +28524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -28662,49 +28537,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [93] = { - [sym__statements] = STATE(4392), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [92] = { + [sym__statements] = STATE(4340), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28716,18 +28591,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -28748,49 +28623,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [94] = { - [sym__statements] = STATE(4393), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [93] = { + [sym__statements] = STATE(4339), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28802,18 +28677,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -28834,49 +28709,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [95] = { - [sym__statements] = STATE(4402), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [94] = { + [sym__statements] = STATE(4337), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28890,7 +28765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28907,10 +28782,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), + }, + [95] = { + [sym__statements] = STATE(4055), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -28920,49 +28881,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [96] = { - [sym__statements] = STATE(4414), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1296), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4314), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1396), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -28976,7 +28937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -28993,10 +28954,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -29006,48 +28967,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [97] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [sym__statements] = STATE(4311), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29058,20 +29020,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(821), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -29092,48 +29053,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [98] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [sym__statements] = STATE(4310), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29144,20 +29106,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(823), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -29178,49 +29139,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [99] = { - [sym__statements] = STATE(4418), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4052), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29232,18 +29193,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -29264,83 +29225,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [100] = { - [sym__statements] = STATE(4419), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4296), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -29350,49 +29311,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [101] = { - [sym__statements] = STATE(4424), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4266), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1329), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29406,7 +29367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29423,10 +29384,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -29436,49 +29397,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [102] = { - [sym__statements] = STATE(4437), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1302), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4264), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [103] = { + [sym__statements] = STATE(4354), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1370), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29492,7 +29539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29509,10 +29556,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -29522,49 +29569,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [103] = { - [sym__statements] = STATE(4440), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [104] = { + [sym__statements] = STATE(4263), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29576,18 +29623,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -29608,83 +29655,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [104] = { - [sym__statements] = STATE(4316), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [105] = { + [sym__statements] = STATE(4259), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -29694,49 +29741,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [105] = { - [sym__statements] = STATE(4449), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [106] = { + [sym__statements] = STATE(4239), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1321), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29750,7 +29797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29767,10 +29814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -29780,49 +29827,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [106] = { - [sym__statements] = STATE(4183), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1307), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [107] = { + [sym__statements] = STATE(4227), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [108] = { + [sym__statements] = STATE(4225), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [109] = { + [sym__statements] = STATE(4222), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29836,7 +30055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -29853,10 +30072,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -29866,49 +30085,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [107] = { - [sym__statements] = STATE(4456), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [110] = { + [sym__statements] = STATE(4464), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -29920,18 +30139,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -29952,49 +30171,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [108] = { - [sym__statements] = STATE(4459), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [111] = { + [sym__statements] = STATE(4364), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30006,18 +30225,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -30038,49 +30257,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [109] = { - [sym__statements] = STATE(4507), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [112] = { + [sym__statements] = STATE(4175), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1297), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30094,7 +30313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30111,10 +30330,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -30124,83 +30343,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [110] = { - [sym__statements] = STATE(4519), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1316), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [113] = { + [sym__statements] = STATE(4473), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -30210,49 +30429,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [111] = { - [sym__statements] = STATE(4566), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [114] = { + [sym__statements] = STATE(4165), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30264,18 +30483,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -30296,49 +30515,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [112] = { - [sym__statements] = STATE(4570), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [115] = { + [sym__statements] = STATE(4033), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30350,18 +30569,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -30382,49 +30601,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [113] = { - [sym__statements] = STATE(4446), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [116] = { + [sym__statements] = STATE(4157), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30438,7 +30657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30455,10 +30674,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -30468,49 +30687,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [114] = { - [sym__statements] = STATE(4201), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [117] = { + [sym__statements] = STATE(4463), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1348), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30524,7 +30743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30541,10 +30760,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -30554,83 +30773,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [115] = { - [sym__statements] = STATE(4202), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [118] = { + [sym__statements] = STATE(4128), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1302), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -30640,83 +30859,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [116] = { - [sym__statements] = STATE(4354), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1321), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [119] = { + [sym__statements] = STATE(4123), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -30726,49 +30945,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [117] = { - [sym__statements] = STATE(4339), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [120] = { + [sym__statements] = STATE(4121), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30780,18 +30999,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -30812,49 +31031,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [118] = { - [sym__statements] = STATE(4330), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [121] = { + [sym__statements] = STATE(4119), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), + }, + [122] = { + [sym__statements] = STATE(4368), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30866,18 +31171,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -30898,49 +31203,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [119] = { - [sym__statements] = STATE(4317), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [123] = { + [sym__statements] = STATE(4428), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -30954,7 +31259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -30971,10 +31276,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -30984,83 +31289,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [120] = { - [sym__statements] = STATE(4203), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [124] = { + [sym__statements] = STATE(4082), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1317), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -31070,49 +31375,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [121] = { - [sym__statements] = STATE(4204), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1301), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [125] = { + [sym__statements] = STATE(4040), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1394), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31126,7 +31431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31143,10 +31448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -31156,49 +31461,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [122] = { - [sym__statements] = STATE(4220), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1327), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [126] = { + [sym__statements] = STATE(4370), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31212,7 +31517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31229,10 +31534,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -31242,135 +31547,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [123] = { - [aux_sym__terminated_statement] = STATE(244), - [sym_redirected_statement] = STATE(2646), - [sym_for_statement] = STATE(2646), - [sym_c_style_for_statement] = STATE(2646), - [sym_while_statement] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_case_statement] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [sym_subshell] = STATE(2646), - [sym_pipeline] = STATE(2646), - [sym_list] = STATE(2646), - [sym_negated_command] = STATE(2646), - [sym_test_command] = STATE(2646), - [sym_declaration_command] = STATE(2646), - [sym_unset_command] = STATE(2646), - [sym_command] = STATE(2646), + [127] = { + [sym__statements] = STATE(4078), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2646), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(401), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [124] = { - [sym__statements] = STATE(4386), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31382,18 +31601,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -31414,83 +31633,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [125] = { - [sym__statements] = STATE(4213), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [128] = { + [sym__statements] = STATE(4071), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -31500,49 +31719,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [126] = { - [sym__statements] = STATE(4028), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [129] = { + [sym__statements] = STATE(4075), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31554,18 +31773,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -31586,49 +31805,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [127] = { - [sym__statements] = STATE(4196), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1364), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [130] = { + [sym__statements] = STATE(4073), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31642,7 +31861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31659,10 +31878,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -31672,48 +31891,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [128] = { - [aux_sym__terminated_statement] = STATE(129), - [sym_redirected_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_compound_statement] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), + [131] = { + [sym__statements] = STATE(4085), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2723), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31723,21 +31943,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(827), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -31758,48 +31977,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [129] = { - [aux_sym__terminated_statement] = STATE(226), - [sym_redirected_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_compound_statement] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), + [132] = { + [sym__statements] = STATE(4424), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2723), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31809,21 +32029,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(829), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -31844,49 +32063,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [130] = { - [sym__statements] = STATE(4124), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1284), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [133] = { + [sym__statements] = STATE(4048), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1318), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -31900,7 +32119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -31917,10 +32136,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -31930,135 +32149,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [131] = { - [sym__statements] = STATE(4123), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(807), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [132] = { - [sym__statements] = STATE(4193), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [134] = { + [sym__statements] = STATE(4076), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -32070,18 +32203,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -32102,49 +32235,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [133] = { - [sym__statements] = STATE(4086), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [135] = { + [sym__statements] = STATE(4402), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1369), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -32158,7 +32291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -32175,10 +32308,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -32188,83 +32321,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [134] = { - [sym__statements] = STATE(4119), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1333), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [136] = { + [sym__statements] = STATE(4530), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -32274,49 +32407,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [135] = { - [sym__statements] = STATE(4055), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [137] = { + [sym__statements] = STATE(4028), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -32328,18 +32461,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -32360,83 +32493,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [136] = { - [sym__statements] = STATE(4057), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [138] = { + [sym__statements] = STATE(4067), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -32446,49 +32579,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [137] = { - [sym__statements] = STATE(4192), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [139] = { + [sym__statements] = STATE(4403), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -32500,18 +32633,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -32532,83 +32665,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [138] = { - [sym__statements] = STATE(4190), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [140] = { + [sym__statements] = STATE(4422), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -32618,49 +32751,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [139] = { - [sym__statements] = STATE(4387), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [141] = { + [sym__statements] = STATE(4404), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -32672,18 +32805,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -32704,83 +32837,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [140] = { - [sym__statements] = STATE(4064), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [142] = { + [sym__statements] = STATE(4095), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -32790,49 +32923,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [141] = { - [sym__statements] = STATE(4141), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1366), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [143] = { + [sym__statements] = STATE(4049), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1323), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -32846,7 +32979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -32863,10 +32996,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -32876,83 +33009,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [142] = { - [sym__statements] = STATE(4085), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1338), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [144] = { + [sym__statements] = STATE(4039), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -32962,49 +33095,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [143] = { - [sym__statements] = STATE(4111), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [145] = { + [aux_sym__terminated_statement] = STATE(67), + [sym_redirected_statement] = STATE(2734), + [sym_for_statement] = STATE(2734), + [sym_c_style_for_statement] = STATE(2734), + [sym_while_statement] = STATE(2734), + [sym_if_statement] = STATE(2734), + [sym_case_statement] = STATE(2734), + [sym_function_definition] = STATE(2734), + [sym_compound_statement] = STATE(2734), + [sym_subshell] = STATE(2734), + [sym_pipeline] = STATE(2734), + [sym_list] = STATE(2734), + [sym_negated_command] = STATE(2734), + [sym_test_command] = STATE(2734), + [sym_declaration_command] = STATE(2734), + [sym_unset_command] = STATE(2734), + [sym_command] = STATE(2734), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(639), + [sym_variable_assignments] = STATE(2734), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33014,20 +33146,21 @@ 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(823), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -33048,49 +33181,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [144] = { - [sym__statements] = STATE(4114), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [146] = { + [sym__statements] = STATE(4031), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33102,18 +33235,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -33134,49 +33267,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [145] = { - [sym__statements] = STATE(4115), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [147] = { + [sym__statements] = STATE(4423), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1359), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33190,7 +33323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -33207,10 +33340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -33220,63 +33353,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [146] = { - [sym__statements] = STATE(4144), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1340), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [148] = { + [sym__statements] = STATE(4374), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(781), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -33293,10 +33426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -33306,83 +33439,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [147] = { - [sym__statements] = STATE(4147), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [149] = { + [sym__statements] = STATE(4309), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -33392,49 +33525,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [148] = { - [sym__statements] = STATE(4165), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [150] = { + [aux_sym__terminated_statement] = STATE(164), + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33446,18 +33578,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(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -33478,83 +33611,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [149] = { - [sym__statements] = STATE(4166), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [151] = { + [sym__statements] = STATE(4466), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -33564,49 +33697,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [150] = { - [sym__statements] = STATE(4231), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [152] = { + [sym__statements] = STATE(4350), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1292), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33620,7 +33753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -33637,10 +33770,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -33650,49 +33783,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [151] = { - [sym__statements] = STATE(4390), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [153] = { + [sym__statements] = STATE(4426), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33704,18 +33837,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -33736,49 +33869,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [152] = { - [sym__statements] = STATE(4214), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [154] = { + [aux_sym__terminated_statement] = STATE(67), + [sym_redirected_statement] = STATE(2734), + [sym_for_statement] = STATE(2734), + [sym_c_style_for_statement] = STATE(2734), + [sym_while_statement] = STATE(2734), + [sym_if_statement] = STATE(2734), + [sym_case_statement] = STATE(2734), + [sym_function_definition] = STATE(2734), + [sym_compound_statement] = STATE(2734), + [sym_subshell] = STATE(2734), + [sym_pipeline] = STATE(2734), + [sym_list] = STATE(2734), + [sym_negated_command] = STATE(2734), + [sym_test_command] = STATE(2734), + [sym_declaration_command] = STATE(2734), + [sym_unset_command] = STATE(2734), + [sym_command] = STATE(2734), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(639), + [sym_variable_assignments] = STATE(2734), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33788,20 +33920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(827), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -33822,83 +33955,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [153] = { - [sym__statements] = STATE(4388), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1312), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [155] = { + [sym__statements] = STATE(4349), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -33908,49 +34041,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [154] = { - [sym__statements] = STATE(4133), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [156] = { + [sym__statements] = STATE(4348), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -33962,18 +34095,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -33994,49 +34127,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [155] = { - [sym__statements] = STATE(4181), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [157] = { + [sym__statements] = STATE(4421), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1298), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34050,7 +34183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34067,10 +34200,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -34080,49 +34213,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [156] = { - [sym__statements] = STATE(4261), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1343), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [158] = { + [sym__statements] = STATE(4070), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1333), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34136,7 +34269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34153,182 +34286,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), - [sym__brace_start] = ACTIONS(437), - }, - [157] = { - [sym__statements] = STATE(4266), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(807), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [158] = { - [sym__statements] = STATE(4270), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(807), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -34338,49 +34299,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [159] = { - [sym__statements] = STATE(4295), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4347), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34394,7 +34355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34411,10 +34372,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -34424,135 +34385,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [160] = { - [sym__statements] = STATE(4322), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1345), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [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(85), - [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(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), - [sym__brace_start] = ACTIONS(437), - }, - [161] = { - [sym__statements] = STATE(4323), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4074), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34564,18 +34439,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -34596,49 +34471,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [162] = { - [sym__statements] = STATE(4327), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [161] = { + [aux_sym__terminated_statement] = STATE(154), + [sym_redirected_statement] = STATE(2734), + [sym_for_statement] = STATE(2734), + [sym_c_style_for_statement] = STATE(2734), + [sym_while_statement] = STATE(2734), + [sym_if_statement] = STATE(2734), + [sym_case_statement] = STATE(2734), + [sym_function_definition] = STATE(2734), + [sym_compound_statement] = STATE(2734), + [sym_subshell] = STATE(2734), + [sym_pipeline] = STATE(2734), + [sym_list] = STATE(2734), + [sym_negated_command] = STATE(2734), + [sym_test_command] = STATE(2734), + [sym_declaration_command] = STATE(2734), + [sym_unset_command] = STATE(2734), + [sym_command] = STATE(2734), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(639), + [sym_variable_assignments] = STATE(2734), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34648,20 +34522,21 @@ 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(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -34682,49 +34557,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [163] = { - [sym__statements] = STATE(4336), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [162] = { + [sym__statements] = STATE(4268), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1375), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34738,7 +34613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -34755,10 +34630,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -34768,83 +34643,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [164] = { - [sym__statements] = STATE(4359), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1349), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [163] = { + [sym__statements] = STATE(4152), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -34854,49 +34729,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [165] = { - [sym__statements] = STATE(4361), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [164] = { + [aux_sym__terminated_statement] = STATE(66), + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34908,18 +34782,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(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -34940,49 +34815,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [166] = { - [sym__statements] = STATE(4364), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [165] = { + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -34993,19 +34867,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(833), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -35026,49 +34901,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [167] = { - [sym__statements] = STATE(4379), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [166] = { + [sym__statements] = STATE(4069), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -35082,7 +34957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35099,10 +34974,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -35112,49 +34987,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [168] = { - [sym__statements] = STATE(4395), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1350), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [167] = { + [sym__statements] = STATE(4109), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1376), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -35168,7 +35043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35185,10 +35060,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -35198,169 +35073,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [169] = { - [sym__statements] = STATE(4396), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(807), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [170] = { - [sym__statements] = STATE(4400), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [168] = { + [sym__statements] = STATE(4480), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1357), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -35370,49 +35159,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [171] = { - [sym__statements] = STATE(4408), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [169] = { + [sym__statements] = STATE(4359), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -35426,7 +35215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35443,10 +35232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -35456,49 +35245,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [172] = { - [sym__statements] = STATE(4429), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1351), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [170] = { + [sym__statements] = STATE(4104), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1392), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -35512,7 +35301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -35529,10 +35318,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -35542,49 +35331,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [173] = { - [sym__statements] = STATE(4436), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [171] = { + [sym__statements] = STATE(4539), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -35596,18 +35385,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -35628,49 +35417,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [174] = { - [sym__statements] = STATE(4443), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [172] = { + [sym__statements] = STATE(4111), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -35682,18 +35471,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -35714,169 +35503,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [175] = { - [sym__statements] = STATE(4447), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [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(85), - [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(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), - [sym__brace_start] = ACTIONS(437), - }, - [176] = { - [sym__statements] = STATE(4458), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1352), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [173] = { + [sym__statements] = STATE(4590), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -35886,49 +35589,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [177] = { - [sym__statements] = STATE(4463), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [174] = { + [aux_sym__terminated_statement] = STATE(69), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -35939,19 +35641,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(835), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -35972,49 +35675,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [178] = { - [sym__statements] = STATE(4129), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [175] = { + [sym__statements] = STATE(4357), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36026,18 +35729,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -36058,49 +35761,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [179] = { - [sym__statements] = STATE(4094), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1368), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [176] = { + [sym__statements] = STATE(4541), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1356), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36114,7 +35817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36131,10 +35834,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -36144,83 +35847,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [180] = { - [sym__statements] = STATE(4503), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [177] = { + [sym__statements] = STATE(4163), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -36230,48 +35933,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [181] = { - [aux_sym__terminated_statement] = STATE(64), - [sym_redirected_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_compound_statement] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), + [178] = { + [sym__statements] = STATE(4537), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2723), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36281,21 +35985,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(831), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -36316,83 +36019,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [182] = { - [sym__statements] = STATE(4433), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1353), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [179] = { + [sym__statements] = STATE(4164), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -36402,49 +36105,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [183] = { - [sym__statements] = STATE(4560), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [180] = { + [aux_sym__terminated_statement] = STATE(215), + [sym_redirected_statement] = STATE(2734), + [sym_for_statement] = STATE(2734), + [sym_c_style_for_statement] = STATE(2734), + [sym_while_statement] = STATE(2734), + [sym_if_statement] = STATE(2734), + [sym_case_statement] = STATE(2734), + [sym_function_definition] = STATE(2734), + [sym_compound_statement] = STATE(2734), + [sym_subshell] = STATE(2734), + [sym_pipeline] = STATE(2734), + [sym_list] = STATE(2734), + [sym_negated_command] = STATE(2734), + [sym_test_command] = STATE(2734), + [sym_declaration_command] = STATE(2734), + [sym_unset_command] = STATE(2734), + [sym_command] = STATE(2734), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(639), + [sym_variable_assignments] = STATE(2734), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36454,20 +36156,21 @@ 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(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -36488,49 +36191,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [184] = { - [sym__statements] = STATE(4521), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [181] = { + [sym__statements] = STATE(4527), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36542,18 +36245,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -36574,63 +36277,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [185] = { - [sym__statements] = STATE(4520), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [182] = { + [sym__statements] = STATE(4427), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(789), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36647,10 +36350,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -36660,49 +36363,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [186] = { - [sym__statements] = STATE(4501), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1354), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [183] = { + [sym__statements] = STATE(4116), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [184] = { + [sym__statements] = STATE(4526), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36716,7 +36505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36733,10 +36522,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -36746,49 +36535,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [187] = { - [sym__statements] = STATE(4462), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [185] = { + [sym__statements] = STATE(4529), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36800,18 +36589,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -36832,83 +36621,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [188] = { - [sym__statements] = STATE(4397), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [186] = { + [sym__statements] = STATE(4098), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [187] = { + [sym__statements] = STATE(4342), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -36918,49 +36793,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [189] = { - [sym__statements] = STATE(4026), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [188] = { + [sym__statements] = STATE(4325), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1299), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -36974,7 +36849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -36991,10 +36866,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37004,83 +36879,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [190] = { - [sym__statements] = STATE(4461), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [189] = { + [sym__statements] = STATE(4250), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [anon_sym_LPAREN] = 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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37090,83 +36965,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [191] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [190] = { + [sym__statements] = STATE(4181), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1389), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(833), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37176,49 +37051,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [192] = { - [sym__statements] = STATE(4300), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [191] = { + [sym__statements] = STATE(4483), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1355), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37232,7 +37107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37249,10 +37124,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37262,49 +37137,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [193] = { - [sym__statements] = STATE(4018), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1342), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [192] = { + [sym__statements] = STATE(4237), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1360), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37318,7 +37193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37335,10 +37210,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37348,48 +37223,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [194] = { - [aux_sym__terminated_statement] = STATE(244), - [sym_redirected_statement] = STATE(2646), - [sym_for_statement] = STATE(2646), - [sym_c_style_for_statement] = STATE(2646), - [sym_while_statement] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_case_statement] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [sym_subshell] = STATE(2646), - [sym_pipeline] = STATE(2646), - [sym_list] = STATE(2646), - [sym_negated_command] = STATE(2646), - [sym_test_command] = STATE(2646), - [sym_declaration_command] = STATE(2646), - [sym_unset_command] = STATE(2646), - [sym_command] = STATE(2646), + [193] = { + [sym__statements] = STATE(4235), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2646), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37401,19 +37277,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -37434,49 +37309,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [194] = { + [sym__statements] = STATE(4234), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [195] = { - [sym__statements] = STATE(4460), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4474), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1336), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37490,7 +37451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37507,10 +37468,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37520,49 +37481,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [196] = { - [sym__statements] = STATE(4444), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1357), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4120), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37576,7 +37537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37593,10 +37554,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37606,49 +37567,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [197] = { - [sym__statements] = STATE(4101), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4281), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37662,7 +37623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -37679,10 +37640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -37692,49 +37653,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [198] = { - [sym__statements] = STATE(4301), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [aux_sym__terminated_statement] = STATE(31), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37745,19 +37705,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(839), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -37778,49 +37739,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [199] = { - [sym__statements] = STATE(4303), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4482), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37832,18 +37793,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -37864,48 +37825,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [200] = { - [aux_sym__terminated_statement] = STATE(230), - [sym_redirected_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_compound_statement] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), + [sym__statements] = STATE(4280), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2723), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -37915,21 +37877,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(837), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -37950,47 +37911,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [201] = { - [aux_sym__terminated_statement] = STATE(194), - [sym_redirected_statement] = STATE(2646), - [sym_for_statement] = STATE(2646), - [sym_c_style_for_statement] = STATE(2646), - [sym_while_statement] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_case_statement] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [sym_subshell] = STATE(2646), - [sym_pipeline] = STATE(2646), - [sym_list] = STATE(2646), - [sym_negated_command] = STATE(2646), - [sym_test_command] = STATE(2646), - [sym_declaration_command] = STATE(2646), - [sym_unset_command] = STATE(2646), - [sym_command] = STATE(2646), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2646), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [aux_sym__terminated_statement] = STATE(213), + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38005,7 +37966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(841), [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -38036,83 +37997,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [202] = { - [sym__statements] = STATE(4442), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4143), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1397), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -38122,49 +38083,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [203] = { - [sym__statements] = STATE(4439), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4145), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38176,18 +38137,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -38208,49 +38169,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [204] = { - [sym__statements] = STATE(4100), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [aux_sym__terminated_statement] = STATE(145), + [sym_redirected_statement] = STATE(2734), + [sym_for_statement] = STATE(2734), + [sym_c_style_for_statement] = STATE(2734), + [sym_while_statement] = STATE(2734), + [sym_if_statement] = STATE(2734), + [sym_case_statement] = STATE(2734), + [sym_function_definition] = STATE(2734), + [sym_compound_statement] = STATE(2734), + [sym_subshell] = STATE(2734), + [sym_pipeline] = STATE(2734), + [sym_list] = STATE(2734), + [sym_negated_command] = STATE(2734), + [sym_test_command] = STATE(2734), + [sym_declaration_command] = STATE(2734), + [sym_unset_command] = STATE(2734), + [sym_command] = STATE(2734), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(639), + [sym_variable_assignments] = STATE(2734), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38260,20 +38220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(843), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -38294,49 +38255,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [205] = { - [sym__statements] = STATE(4275), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1348), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4395), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38350,7 +38311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -38367,10 +38328,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -38380,49 +38341,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [206] = { - [sym__statements] = STATE(4099), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4265), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38434,18 +38395,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -38466,49 +38427,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [207] = { - [sym__statements] = STATE(4091), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4253), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1335), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), + }, + [208] = { + [sym__statements] = STATE(4396), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38520,18 +38567,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -38552,49 +38599,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [208] = { - [sym__statements] = STATE(4017), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [209] = { + [sym__statements] = STATE(4397), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38606,18 +38653,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -38638,49 +38685,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [209] = { - [sym__statements] = STATE(4372), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [210] = { + [sym__statements] = STATE(4398), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1377), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38694,7 +38741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -38711,10 +38758,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -38724,49 +38771,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [210] = { - [sym__statements] = STATE(4438), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [211] = { + [sym__statements] = STATE(4093), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1343), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38780,7 +38827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -38797,10 +38844,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -38810,49 +38857,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [211] = { - [sym__statements] = STATE(4373), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [212] = { + [sym__statements] = STATE(4532), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1361), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), + }, + [213] = { + [aux_sym__terminated_statement] = STATE(66), + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38864,18 +38996,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(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -38896,49 +39029,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [212] = { - [sym__statements] = STATE(4409), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1358), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [214] = { + [sym__statements] = STATE(4415), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -38952,7 +39085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -38969,10 +39102,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -38982,49 +39115,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [213] = { - [sym__statements] = STATE(4406), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [215] = { + [aux_sym__terminated_statement] = STATE(67), + [sym_redirected_statement] = STATE(2734), + [sym_for_statement] = STATE(2734), + [sym_c_style_for_statement] = STATE(2734), + [sym_while_statement] = STATE(2734), + [sym_if_statement] = STATE(2734), + [sym_case_statement] = STATE(2734), + [sym_function_definition] = STATE(2734), + [sym_compound_statement] = STATE(2734), + [sym_subshell] = STATE(2734), + [sym_pipeline] = STATE(2734), + [sym_list] = STATE(2734), + [sym_negated_command] = STATE(2734), + [sym_test_command] = STATE(2734), + [sym_declaration_command] = STATE(2734), + [sym_unset_command] = STATE(2734), + [sym_command] = STATE(2734), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(639), + [sym_variable_assignments] = STATE(2734), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39034,20 +39166,21 @@ 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(847), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -39068,49 +39201,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [214] = { - [sym__statements] = STATE(4405), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [216] = { + [sym__statements] = STATE(4097), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39122,18 +39255,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -39154,49 +39287,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [215] = { - [sym__statements] = STATE(4403), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [217] = { + [sym__statements] = STATE(4101), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [218] = { + [sym__statements] = STATE(4103), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39210,7 +39429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39227,10 +39446,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -39240,49 +39459,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [216] = { - [sym__statements] = STATE(4374), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [219] = { + [sym__statements] = STATE(4100), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39294,18 +39513,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -39326,49 +39545,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [217] = { - [sym__statements] = STATE(4090), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [220] = { + [sym__statements] = STATE(4146), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39380,18 +39599,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -39412,135 +39631,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [218] = { - [sym__statements] = STATE(4311), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(85), - [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(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), - [sym__brace_start] = ACTIONS(437), - }, - [219] = { - [sym__statements] = STATE(4381), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1359), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [221] = { + [sym__statements] = STATE(4213), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39554,7 +39687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39571,10 +39704,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -39584,49 +39717,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [220] = { - [sym__statements] = STATE(4377), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [222] = { + [sym__statements] = STATE(4481), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39638,18 +39771,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -39670,63 +39803,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [221] = { - [sym__statements] = STATE(4404), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [223] = { + [sym__statements] = STATE(4147), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_GT_GT] = ACTIONS(79), [anon_sym_LT] = ACTIONS(81), [anon_sym_GT] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(767), + [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(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39743,10 +39876,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -39756,49 +39889,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [222] = { - [sym__statements] = STATE(4376), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [224] = { + [sym__statements] = STATE(4212), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39810,18 +39943,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -39842,49 +39975,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [223] = { - [sym__statements] = STATE(4375), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1393), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [225] = { + [sym__statements] = STATE(4219), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1337), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39898,7 +40031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -39915,10 +40048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -39928,48 +40061,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [224] = { - [aux_sym__terminated_statement] = STATE(97), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [226] = { + [sym__statements] = STATE(4229), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -39980,20 +40114,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(841), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -40014,49 +40147,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [225] = { - [sym__statements] = STATE(4014), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [227] = { + [sym__statements] = STATE(4230), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40068,18 +40201,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -40100,135 +40233,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [226] = { - [aux_sym__terminated_statement] = STATE(226), - [sym_redirected_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_compound_statement] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2723), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(567), - [anon_sym_for] = ACTIONS(570), - [anon_sym_select] = ACTIONS(573), - [anon_sym_LPAREN_LPAREN] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_while] = ACTIONS(588), - [anon_sym_until] = ACTIONS(588), - [anon_sym_done] = ACTIONS(591), - [anon_sym_if] = ACTIONS(593), - [anon_sym_case] = ACTIONS(596), - [anon_sym_function] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(611), - [anon_sym_declare] = ACTIONS(614), - [anon_sym_typeset] = ACTIONS(614), - [anon_sym_export] = ACTIONS(614), - [anon_sym_readonly] = ACTIONS(614), - [anon_sym_local] = ACTIONS(614), - [anon_sym_unset] = ACTIONS(617), - [anon_sym_unsetenv] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(582), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_GT_PIPE] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym__special_character] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(626), - [sym_raw_string] = ACTIONS(629), - [sym_ansi_c_string] = ACTIONS(629), - [aux_sym_number_token1] = ACTIONS(632), - [aux_sym_number_token2] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), - [anon_sym_BQUOTE] = ACTIONS(644), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [anon_sym_GT_LPAREN] = ACTIONS(650), + [228] = { + [sym__statements] = STATE(4233), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(653), - [sym_file_descriptor] = ACTIONS(656), - [sym_variable_name] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), }, - [227] = { - [sym__statements] = STATE(4069), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1369), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [229] = { + [sym__statements] = STATE(4478), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1290), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40242,7 +40375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40259,10 +40392,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -40272,49 +40405,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [228] = { - [sym__statements] = STATE(4061), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [230] = { + [sym__statements] = STATE(4469), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40326,18 +40459,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -40358,49 +40491,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [229] = { - [sym__statements] = STATE(4370), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [231] = { + [sym__statements] = STATE(4206), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1390), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40414,7 +40547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40431,10 +40564,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -40444,48 +40577,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [230] = { - [aux_sym__terminated_statement] = STATE(226), - [sym_redirected_statement] = STATE(2723), - [sym_for_statement] = STATE(2723), - [sym_c_style_for_statement] = STATE(2723), - [sym_while_statement] = STATE(2723), - [sym_if_statement] = STATE(2723), - [sym_case_statement] = STATE(2723), - [sym_function_definition] = STATE(2723), - [sym_compound_statement] = STATE(2723), - [sym_subshell] = STATE(2723), - [sym_pipeline] = STATE(2723), - [sym_list] = STATE(2723), - [sym_negated_command] = STATE(2723), - [sym_test_command] = STATE(2723), - [sym_declaration_command] = STATE(2723), - [sym_unset_command] = STATE(2723), - [sym_command] = STATE(2723), + [232] = { + [sym__statements] = STATE(4536), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(643), - [sym_variable_assignments] = STATE(2723), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40495,21 +40629,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(843), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -40530,83 +40663,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [231] = { - [sym__statements] = STATE(4337), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1361), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [233] = { + [sym__statements] = STATE(4200), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -40616,49 +40749,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [232] = { - [sym__statements] = STATE(4097), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1322), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [234] = { + [sym__statements] = STATE(4323), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1295), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40672,7 +40805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -40689,10 +40822,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -40702,49 +40835,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [233] = { - [sym__statements] = STATE(4334), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [235] = { + [sym__statements] = STATE(4327), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40756,18 +40889,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -40788,135 +40921,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [234] = { - [sym__statements] = STATE(4081), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [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(85), - [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(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), - [sym__brace_start] = ACTIONS(437), - }, - [235] = { + [236] = { [sym__statements] = STATE(4332), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -40928,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(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -40960,83 +41007,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [236] = { - [sym__statements] = STATE(4078), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [237] = { + [sym__statements] = STATE(4333), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -41046,49 +41093,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [237] = { - [sym__statements] = STATE(4060), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [238] = { + [aux_sym__terminated_statement] = STATE(82), + [sym_redirected_statement] = STATE(2685), + [sym_for_statement] = STATE(2685), + [sym_c_style_for_statement] = STATE(2685), + [sym_while_statement] = STATE(2685), + [sym_if_statement] = STATE(2685), + [sym_case_statement] = STATE(2685), + [sym_function_definition] = STATE(2685), + [sym_compound_statement] = STATE(2685), + [sym_subshell] = STATE(2685), + [sym_pipeline] = STATE(2685), + [sym_list] = STATE(2685), + [sym_negated_command] = STATE(2685), + [sym_test_command] = STATE(2685), + [sym_declaration_command] = STATE(2685), + [sym_unset_command] = STATE(2685), + [sym_command] = STATE(2685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(668), + [sym_variable_assignments] = STATE(2685), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -41100,18 +41146,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(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -41132,49 +41179,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [238] = { - [sym__statements] = STATE(4076), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [239] = { + [sym__statements] = STATE(4467), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -41186,18 +41233,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -41218,49 +41265,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [239] = { - [sym__statements] = STATE(4039), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1371), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [240] = { + [sym__statements] = STATE(4167), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1373), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -41274,7 +41321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -41291,10 +41338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -41304,49 +41351,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [240] = { - [sym__statements] = STATE(4030), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [241] = { + [sym__statements] = STATE(4252), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -41358,18 +41405,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -41390,49 +41437,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [241] = { - [sym__statements] = STATE(4038), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [242] = { + [sym__statements] = STATE(4353), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1320), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -41446,7 +41493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -41463,10 +41510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -41476,83 +41523,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [242] = { - [sym__statements] = STATE(4331), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [243] = { + [sym__statements] = STATE(4358), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -41562,83 +41609,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [243] = { - [sym__statements] = STATE(4075), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1332), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [244] = { + [sym__statements] = STATE(4360), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -41648,169 +41695,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [244] = { - [aux_sym__terminated_statement] = STATE(244), - [sym_redirected_statement] = STATE(2646), - [sym_for_statement] = STATE(2646), - [sym_c_style_for_statement] = STATE(2646), - [sym_while_statement] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_case_statement] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [sym_subshell] = STATE(2646), - [sym_pipeline] = STATE(2646), - [sym_list] = STATE(2646), - [sym_negated_command] = STATE(2646), - [sym_test_command] = STATE(2646), - [sym_declaration_command] = STATE(2646), - [sym_unset_command] = STATE(2646), - [sym_command] = STATE(2646), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2646), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(567), - [anon_sym_for] = ACTIONS(570), - [anon_sym_select] = ACTIONS(573), - [anon_sym_LPAREN_LPAREN] = ACTIONS(576), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_while] = ACTIONS(588), - [anon_sym_until] = ACTIONS(588), - [anon_sym_if] = ACTIONS(593), - [anon_sym_case] = ACTIONS(596), - [anon_sym_function] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(602), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(611), - [anon_sym_declare] = ACTIONS(614), - [anon_sym_typeset] = ACTIONS(614), - [anon_sym_export] = ACTIONS(614), - [anon_sym_readonly] = ACTIONS(614), - [anon_sym_local] = ACTIONS(614), - [anon_sym_unset] = ACTIONS(617), - [anon_sym_unsetenv] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(582), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [anon_sym_GT_PIPE] = ACTIONS(579), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(576), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym__special_character] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(626), - [sym_raw_string] = ACTIONS(629), - [sym_ansi_c_string] = ACTIONS(629), - [aux_sym_number_token1] = ACTIONS(632), - [aux_sym_number_token2] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), - [anon_sym_BQUOTE] = ACTIONS(644), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [anon_sym_GT_LPAREN] = ACTIONS(650), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(653), - [sym_file_descriptor] = ACTIONS(656), - [sym_variable_name] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), - }, [245] = { - [sym__statements] = STATE(4031), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4361), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -41820,49 +41781,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [246] = { - [sym__statements] = STATE(4297), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1362), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4378), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1332), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -41876,7 +41837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -41893,10 +41854,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -41906,49 +41867,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [247] = { - [sym__statements] = STATE(4289), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4379), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -41960,18 +41921,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -41992,49 +41953,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [248] = { - [sym__statements] = STATE(4276), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4381), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42046,18 +42007,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -42078,83 +42039,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [249] = { - [sym__statements] = STATE(4027), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4383), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -42164,49 +42125,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [250] = { - [sym__statements] = STATE(4291), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1374), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4430), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1344), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42220,7 +42181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42237,10 +42198,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -42250,48 +42211,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [251] = { - [aux_sym__terminated_statement] = STATE(32), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [sym__statements] = STATE(4256), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42302,20 +42264,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(847), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -42336,83 +42297,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [252] = { - [sym__statements] = STATE(4274), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4432), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -42422,49 +42383,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [253] = { - [sym__statements] = STATE(4385), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4257), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42478,7 +42439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42495,10 +42456,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -42508,49 +42469,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [254] = { - [sym__statements] = STATE(4240), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1363), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4107), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42564,7 +42525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42581,10 +42542,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -42594,49 +42555,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [255] = { - [sym__statements] = STATE(4235), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4444), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42648,18 +42609,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -42680,49 +42641,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [256] = { - [sym__statements] = STATE(4065), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4449), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42736,7 +42697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -42753,10 +42714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -42766,83 +42727,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [257] = { - [sym__statements] = STATE(4234), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4425), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1381), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -42852,48 +42813,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [258] = { - [aux_sym__terminated_statement] = STATE(89), - [sym_redirected_statement] = STATE(2646), - [sym_for_statement] = STATE(2646), - [sym_c_style_for_statement] = STATE(2646), - [sym_while_statement] = STATE(2646), - [sym_if_statement] = STATE(2646), - [sym_case_statement] = STATE(2646), - [sym_function_definition] = STATE(2646), - [sym_compound_statement] = STATE(2646), - [sym_subshell] = STATE(2646), - [sym_pipeline] = STATE(2646), - [sym_list] = STATE(2646), - [sym_negated_command] = STATE(2646), - [sym_test_command] = STATE(2646), - [sym_declaration_command] = STATE(2646), - [sym_unset_command] = STATE(2646), - [sym_command] = STATE(2646), + [sym__statements] = STATE(4418), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(632), - [sym_variable_assignments] = STATE(2646), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -42905,19 +42867,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -42938,83 +42899,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [259] = { - [sym__statements] = STATE(4040), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4535), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1363), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -43024,83 +42985,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [260] = { - [sym__statements] = STATE(4120), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4460), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1354), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -43110,49 +43071,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [261] = { - [sym__statements] = STATE(4453), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4439), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -43164,18 +43125,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -43196,83 +43157,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [262] = { - [sym__statements] = STATE(4095), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1377), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4442), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(85), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -43282,83 +43243,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [263] = { - [sym__statements] = STATE(4083), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4445), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1350), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(807), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -43368,49 +43329,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [264] = { - [sym__statements] = STATE(4082), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4414), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -43422,18 +43383,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -43454,49 +43415,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [265] = { - [sym__statements] = STATE(4056), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4447), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -43508,18 +43469,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -43540,49 +43501,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [266] = { - [sym__statements] = STATE(4053), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [sym__statements] = STATE(4448), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -43594,18 +43555,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -43626,49 +43587,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [267] = { - [sym__statements] = STATE(4071), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1375), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4411), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -43682,7 +43643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -43699,10 +43660,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -43712,135 +43673,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [268] = { - [sym__statements] = STATE(4044), - [sym_redirected_statement] = STATE(2549), - [sym_for_statement] = STATE(2549), - [sym_c_style_for_statement] = STATE(2549), - [sym_while_statement] = STATE(2549), - [sym_if_statement] = STATE(2549), - [sym_case_statement] = STATE(2549), - [sym_function_definition] = STATE(2549), - [sym_compound_statement] = STATE(2549), - [sym_subshell] = STATE(2549), - [sym_pipeline] = STATE(2549), - [sym_list] = STATE(2549), - [sym_negated_command] = STATE(2549), - [sym_test_command] = STATE(2549), - [sym_declaration_command] = STATE(2549), - [sym_unset_command] = STATE(2549), - [sym_command] = STATE(2549), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(635), - [sym_variable_assignments] = STATE(2549), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(277), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [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(807), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [269] = { - [sym__statements] = STATE(4012), - [sym_redirected_statement] = STATE(2604), - [sym_for_statement] = STATE(2604), - [sym_c_style_for_statement] = STATE(2604), - [sym_while_statement] = STATE(2604), - [sym_if_statement] = STATE(2604), - [sym_case_statement] = STATE(2604), - [sym_function_definition] = STATE(2604), - [sym_compound_statement] = STATE(2604), - [sym_subshell] = STATE(2604), - [sym_pipeline] = STATE(2604), - [sym_list] = STATE(2604), - [sym_negated_command] = STATE(2604), - [sym_test_command] = STATE(2604), - [sym_declaration_command] = STATE(2604), - [sym_unset_command] = STATE(2604), - [sym_command] = STATE(2604), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(572), - [sym_variable_assignments] = STATE(2604), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1337), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(4344), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1387), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -43854,7 +43729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -43871,10 +43746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -43884,48 +43759,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), + }, + [269] = { + [sym__statements] = STATE(4476), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, [270] = { - [aux_sym__terminated_statement] = STATE(57), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [sym__statements] = STATE(4319), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -43937,18 +43899,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -43969,252 +43931,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, [271] = { - [sym_redirected_statement] = STATE(2361), - [sym_for_statement] = STATE(2361), - [sym_c_style_for_statement] = STATE(2361), - [sym_while_statement] = STATE(2361), - [sym_if_statement] = STATE(2361), - [sym_case_statement] = STATE(2361), - [sym_function_definition] = STATE(2361), - [sym_compound_statement] = STATE(2361), - [sym_subshell] = STATE(2361), - [sym_pipeline] = STATE(2361), - [sym_list] = STATE(2361), - [sym_negated_command] = STATE(2361), - [sym_test_command] = STATE(2361), - [sym_declaration_command] = STATE(2361), - [sym_unset_command] = STATE(2361), - [sym_command] = STATE(2361), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(547), - [sym_variable_assignments] = STATE(2361), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym__statements_repeat1] = STATE(272), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), - [sym_word] = ACTIONS(449), - [anon_sym_for] = ACTIONS(451), - [anon_sym_select] = ACTIONS(453), - [anon_sym_LPAREN_LPAREN] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_while] = ACTIONS(463), - [anon_sym_until] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_case] = ACTIONS(467), - [anon_sym_function] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(485), - [anon_sym_declare] = ACTIONS(487), - [anon_sym_typeset] = ACTIONS(487), - [anon_sym_export] = ACTIONS(487), - [anon_sym_readonly] = ACTIONS(487), - [anon_sym_local] = ACTIONS(487), - [anon_sym_unset] = ACTIONS(489), - [anon_sym_unsetenv] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(459), - [anon_sym_AMP_GT_GT] = ACTIONS(457), - [anon_sym_LT_AMP] = ACTIONS(457), - [anon_sym_GT_AMP] = ACTIONS(457), - [anon_sym_GT_PIPE] = ACTIONS(457), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(491), - [sym__special_character] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(495), - [sym_raw_string] = ACTIONS(497), - [sym_ansi_c_string] = ACTIONS(497), - [aux_sym_number_token1] = ACTIONS(499), - [aux_sym_number_token2] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_BQUOTE] = ACTIONS(507), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(511), - [anon_sym_GT_LPAREN] = ACTIONS(511), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), - [sym__brace_start] = ACTIONS(519), - }, - [272] = { - [sym_redirected_statement] = STATE(2642), - [sym_for_statement] = STATE(2642), - [sym_c_style_for_statement] = STATE(2642), - [sym_while_statement] = STATE(2642), - [sym_if_statement] = STATE(2642), - [sym_case_statement] = STATE(2642), - [sym_function_definition] = STATE(2642), - [sym_compound_statement] = STATE(2642), - [sym_subshell] = STATE(2642), - [sym_pipeline] = STATE(2642), - [sym_list] = STATE(2642), - [sym_negated_command] = STATE(2642), - [sym_test_command] = STATE(2642), - [sym_declaration_command] = STATE(2642), - [sym_unset_command] = STATE(2642), - [sym_command] = STATE(2642), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(645), - [sym_variable_assignments] = STATE(2642), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(272), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(851), - [anon_sym_for] = ACTIONS(854), - [anon_sym_select] = ACTIONS(857), - [anon_sym_LPAREN_LPAREN] = ACTIONS(860), - [anon_sym_GT_GT] = ACTIONS(863), - [anon_sym_LT] = ACTIONS(866), - [anon_sym_GT] = ACTIONS(866), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_while] = ACTIONS(872), - [anon_sym_until] = ACTIONS(872), - [anon_sym_if] = ACTIONS(875), - [anon_sym_case] = ACTIONS(878), - [anon_sym_function] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(893), - [anon_sym_declare] = ACTIONS(896), - [anon_sym_typeset] = ACTIONS(896), - [anon_sym_export] = ACTIONS(896), - [anon_sym_readonly] = ACTIONS(896), - [anon_sym_local] = ACTIONS(896), - [anon_sym_unset] = ACTIONS(899), - [anon_sym_unsetenv] = ACTIONS(899), - [anon_sym_AMP_GT] = ACTIONS(866), - [anon_sym_AMP_GT_GT] = ACTIONS(863), - [anon_sym_LT_AMP] = ACTIONS(863), - [anon_sym_GT_AMP] = ACTIONS(863), - [anon_sym_GT_PIPE] = ACTIONS(863), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(860), - [anon_sym_DOLLAR] = ACTIONS(902), - [sym__special_character] = ACTIONS(905), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_raw_string] = ACTIONS(911), - [sym_ansi_c_string] = ACTIONS(911), - [aux_sym_number_token1] = ACTIONS(914), - [aux_sym_number_token2] = ACTIONS(917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(923), - [anon_sym_BQUOTE] = ACTIONS(926), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(929), - [anon_sym_LT_LPAREN] = ACTIONS(932), - [anon_sym_GT_LPAREN] = ACTIONS(932), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(935), - [sym_file_descriptor] = ACTIONS(938), - [sym_variable_name] = ACTIONS(941), - [sym__brace_start] = ACTIONS(944), - }, - [273] = { - [aux_sym__terminated_statement] = STATE(191), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym__statements] = STATE(4450), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1351), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), [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(401), + [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(411), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [sym_ansi_c_string] = ACTIONS(415), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -44224,48 +44017,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [274] = { - [aux_sym__terminated_statement] = STATE(59), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [272] = { + [sym__statements] = STATE(4456), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -44277,18 +44071,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -44309,218 +44103,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [275] = { - [sym_redirected_statement] = STATE(2581), - [sym_for_statement] = STATE(2581), - [sym_c_style_for_statement] = STATE(2581), - [sym_while_statement] = STATE(2581), - [sym_if_statement] = STATE(2581), - [sym_case_statement] = STATE(2581), - [sym_function_definition] = STATE(2581), - [sym_compound_statement] = STATE(2581), - [sym_subshell] = STATE(2581), - [sym_pipeline] = STATE(2581), - [sym_list] = STATE(2581), - [sym_negated_command] = STATE(2581), - [sym_test_command] = STATE(2581), - [sym_declaration_command] = STATE(2581), - [sym_unset_command] = STATE(2581), - [sym_command] = STATE(2581), - [sym_command_name] = STATE(438), - [sym_variable_assignment] = STATE(568), - [sym_variable_assignments] = STATE(2581), - [sym_subscript] = STATE(3985), - [sym_file_redirect] = STATE(1315), - [sym_arithmetic_expansion] = STATE(740), - [sym_brace_expression] = STATE(740), - [sym_concatenation] = STATE(1202), - [sym_string] = STATE(740), - [sym_translated_string] = STATE(740), - [sym_number] = STATE(740), - [sym_simple_expansion] = STATE(740), - [sym_expansion] = STATE(740), - [sym_command_substitution] = STATE(740), - [sym_process_substitution] = STATE(740), - [aux_sym__statements_repeat1] = STATE(272), - [aux_sym_redirected_statement_repeat2] = STATE(2801), - [aux_sym_command_repeat1] = STATE(841), - [aux_sym__literal_repeat1] = STATE(969), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_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(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), - }, - [276] = { - [sym_redirected_statement] = STATE(2413), - [sym_for_statement] = STATE(2413), - [sym_c_style_for_statement] = STATE(2413), - [sym_while_statement] = STATE(2413), - [sym_if_statement] = STATE(2413), - [sym_case_statement] = STATE(2413), - [sym_function_definition] = STATE(2413), - [sym_compound_statement] = STATE(2413), - [sym_subshell] = STATE(2413), - [sym_pipeline] = STATE(2413), - [sym_list] = STATE(2413), - [sym_negated_command] = STATE(2413), - [sym_test_command] = STATE(2413), - [sym_declaration_command] = STATE(2413), - [sym_unset_command] = STATE(2413), - [sym_command] = STATE(2413), - [sym_command_name] = STATE(427), - [sym_variable_assignment] = STATE(565), - [sym_variable_assignments] = STATE(2413), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym__statements_repeat1] = STATE(272), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), - [sym_word] = ACTIONS(691), - [anon_sym_for] = ACTIONS(451), - [anon_sym_select] = ACTIONS(453), - [anon_sym_LPAREN_LPAREN] = ACTIONS(693), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(697), - [anon_sym_GT] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_while] = ACTIONS(463), - [anon_sym_until] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_case] = ACTIONS(467), - [anon_sym_function] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(485), - [anon_sym_declare] = ACTIONS(705), - [anon_sym_typeset] = ACTIONS(705), - [anon_sym_export] = ACTIONS(705), - [anon_sym_readonly] = ACTIONS(705), - [anon_sym_local] = ACTIONS(705), - [anon_sym_unset] = ACTIONS(707), - [anon_sym_unsetenv] = ACTIONS(707), - [anon_sym_AMP_GT] = ACTIONS(697), - [anon_sym_AMP_GT_GT] = ACTIONS(695), - [anon_sym_LT_AMP] = ACTIONS(695), - [anon_sym_GT_AMP] = ACTIONS(695), - [anon_sym_GT_PIPE] = ACTIONS(695), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(693), - [anon_sym_DOLLAR] = ACTIONS(709), - [sym__special_character] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [sym_raw_string] = ACTIONS(715), - [sym_ansi_c_string] = ACTIONS(715), - [aux_sym_number_token1] = ACTIONS(717), - [aux_sym_number_token2] = ACTIONS(719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(725), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), - }, - [277] = { - [sym_redirected_statement] = STATE(2456), - [sym_for_statement] = STATE(2456), - [sym_c_style_for_statement] = STATE(2456), - [sym_while_statement] = STATE(2456), - [sym_if_statement] = STATE(2456), - [sym_case_statement] = STATE(2456), - [sym_function_definition] = STATE(2456), - [sym_compound_statement] = STATE(2456), - [sym_subshell] = STATE(2456), - [sym_pipeline] = STATE(2456), - [sym_list] = STATE(2456), - [sym_negated_command] = STATE(2456), - [sym_test_command] = STATE(2456), - [sym_declaration_command] = STATE(2456), - [sym_unset_command] = STATE(2456), - [sym_command] = STATE(2456), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(629), - [sym_variable_assignments] = STATE(2456), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym__statements_repeat1] = STATE(272), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [273] = { + [sym__statements] = STATE(4320), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -44532,18 +44157,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -44564,48 +44189,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [278] = { - [aux_sym__terminated_statement] = STATE(251), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [274] = { + [sym__statements] = STATE(4458), + [sym_redirected_statement] = STATE(2579), + [sym_for_statement] = STATE(2579), + [sym_c_style_for_statement] = STATE(2579), + [sym_while_statement] = STATE(2579), + [sym_if_statement] = STATE(2579), + [sym_case_statement] = STATE(2579), + [sym_function_definition] = STATE(2579), + [sym_compound_statement] = STATE(2579), + [sym_subshell] = STATE(2579), + [sym_pipeline] = STATE(2579), + [sym_list] = STATE(2579), + [sym_negated_command] = STATE(2579), + [sym_test_command] = STATE(2579), + [sym_declaration_command] = STATE(2579), + [sym_unset_command] = STATE(2579), + [sym_command] = STATE(2579), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(626), + [sym_variable_assignments] = STATE(2579), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(278), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -44617,18 +44243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -44649,48 +44275,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [279] = { - [sym_redirected_statement] = STATE(2538), - [sym_for_statement] = STATE(2538), - [sym_c_style_for_statement] = STATE(2538), - [sym_while_statement] = STATE(2538), - [sym_if_statement] = STATE(2538), - [sym_case_statement] = STATE(2538), - [sym_function_definition] = STATE(2538), - [sym_compound_statement] = STATE(2538), - [sym_subshell] = STATE(2538), - [sym_pipeline] = STATE(2538), - [sym_list] = STATE(2538), - [sym_negated_command] = STATE(2538), - [sym_test_command] = STATE(2538), - [sym_declaration_command] = STATE(2538), - [sym_unset_command] = STATE(2538), - [sym_command] = STATE(2538), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(566), - [sym_variable_assignments] = STATE(2538), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym__statements_repeat1] = STATE(272), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [275] = { + [sym__statements] = STATE(4215), + [sym_redirected_statement] = STATE(2647), + [sym_for_statement] = STATE(2647), + [sym_c_style_for_statement] = STATE(2647), + [sym_while_statement] = STATE(2647), + [sym_if_statement] = STATE(2647), + [sym_case_statement] = STATE(2647), + [sym_function_definition] = STATE(2647), + [sym_compound_statement] = STATE(2647), + [sym_subshell] = STATE(2647), + [sym_pipeline] = STATE(2647), + [sym_list] = STATE(2647), + [sym_negated_command] = STATE(2647), + [sym_test_command] = STATE(2647), + [sym_declaration_command] = STATE(2647), + [sym_unset_command] = STATE(2647), + [sym_command] = STATE(2647), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(583), + [sym_variable_assignments] = STATE(2647), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -44704,7 +44331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -44721,10 +44348,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -44734,47 +44361,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [280] = { - [aux_sym__terminated_statement] = STATE(98), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [276] = { + [aux_sym__terminated_statement] = STATE(198), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -44819,48 +44446,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [281] = { - [aux_sym__terminated_statement] = STATE(83), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), + [277] = { + [sym_redirected_statement] = STATE(2643), + [sym_for_statement] = STATE(2643), + [sym_c_style_for_statement] = STATE(2643), + [sym_while_statement] = STATE(2643), + [sym_if_statement] = STATE(2643), + [sym_case_statement] = STATE(2643), + [sym_function_definition] = STATE(2643), + [sym_compound_statement] = STATE(2643), + [sym_subshell] = STATE(2643), + [sym_pipeline] = STATE(2643), + [sym_list] = STATE(2643), + [sym_negated_command] = STATE(2643), + [sym_test_command] = STATE(2643), + [sym_declaration_command] = STATE(2643), + [sym_unset_command] = STATE(2643), + [sym_command] = STATE(2643), + [sym_command_name] = STATE(462), + [sym_variable_assignment] = STATE(601), + [sym_variable_assignments] = STATE(2643), + [sym_subscript] = STATE(3947), + [sym_file_redirect] = STATE(1379), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_redirected_statement_repeat2] = STATE(2827), + [aux_sym_command_repeat1] = STATE(865), + [aux_sym__literal_repeat1] = STATE(930), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_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(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym__special_character] = ACTIONS(43), + [anon_sym_DQUOTE] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [sym_ansi_c_string] = ACTIONS(47), + [aux_sym_number_token1] = ACTIONS(49), + [aux_sym_number_token2] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), + [anon_sym_LT_LPAREN] = ACTIONS(61), + [anon_sym_GT_LPAREN] = ACTIONS(61), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(65), + [sym_variable_name] = ACTIONS(67), + [sym_test_operator] = ACTIONS(69), + [sym__brace_start] = ACTIONS(71), + }, + [278] = { + [sym_redirected_statement] = STATE(2660), + [sym_for_statement] = STATE(2660), + [sym_c_style_for_statement] = STATE(2660), + [sym_while_statement] = STATE(2660), + [sym_if_statement] = STATE(2660), + [sym_case_statement] = STATE(2660), + [sym_function_definition] = STATE(2660), + [sym_compound_statement] = STATE(2660), + [sym_subshell] = STATE(2660), + [sym_pipeline] = STATE(2660), + [sym_list] = STATE(2660), + [sym_negated_command] = STATE(2660), + [sym_test_command] = STATE(2660), + [sym_declaration_command] = STATE(2660), + [sym_unset_command] = STATE(2660), + [sym_command] = STATE(2660), [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(387), + [sym_variable_assignment] = STATE(671), + [sym_variable_assignments] = STATE(2660), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -44872,18 +44584,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(401), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(405), - [anon_sym_typeset] = ACTIONS(405), - [anon_sym_export] = ACTIONS(405), - [anon_sym_readonly] = ACTIONS(405), - [anon_sym_local] = ACTIONS(405), - [anon_sym_unset] = ACTIONS(407), - [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -44904,47 +44616,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [282] = { - [aux_sym__terminated_statement] = STATE(53), - [sym_redirected_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_c_style_for_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_function_definition] = STATE(2625), - [sym_compound_statement] = STATE(2625), - [sym_subshell] = STATE(2625), - [sym_pipeline] = STATE(2625), - [sym_list] = STATE(2625), - [sym_negated_command] = STATE(2625), - [sym_test_command] = STATE(2625), - [sym_declaration_command] = STATE(2625), - [sym_unset_command] = STATE(2625), - [sym_command] = STATE(2625), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(616), - [sym_variable_assignments] = STATE(2625), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [279] = { + [sym_redirected_statement] = STATE(2453), + [sym_for_statement] = STATE(2453), + [sym_c_style_for_statement] = STATE(2453), + [sym_while_statement] = STATE(2453), + [sym_if_statement] = STATE(2453), + [sym_case_statement] = STATE(2453), + [sym_function_definition] = STATE(2453), + [sym_compound_statement] = STATE(2453), + [sym_subshell] = STATE(2453), + [sym_pipeline] = STATE(2453), + [sym_list] = STATE(2453), + [sym_negated_command] = STATE(2453), + [sym_test_command] = STATE(2453), + [sym_declaration_command] = STATE(2453), + [sym_unset_command] = STATE(2453), + [sym_command] = STATE(2453), + [sym_command_name] = STATE(431), + [sym_variable_assignment] = STATE(569), + [sym_variable_assignments] = STATE(2453), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), + [sym_word] = ACTIONS(691), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(693), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(697), + [anon_sym_GT] = ACTIONS(697), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(701), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(705), + [anon_sym_typeset] = ACTIONS(705), + [anon_sym_export] = ACTIONS(705), + [anon_sym_readonly] = ACTIONS(705), + [anon_sym_local] = ACTIONS(705), + [anon_sym_unset] = ACTIONS(707), + [anon_sym_unsetenv] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(697), + [anon_sym_AMP_GT_GT] = ACTIONS(695), + [anon_sym_LT_AMP] = ACTIONS(695), + [anon_sym_GT_AMP] = ACTIONS(695), + [anon_sym_GT_PIPE] = ACTIONS(695), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(693), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [280] = { + [aux_sym__terminated_statement] = STATE(54), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -44989,131 +44786,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [283] = { - [sym_redirected_statement] = STATE(3035), - [sym_for_statement] = STATE(3035), - [sym_c_style_for_statement] = STATE(3035), - [sym_while_statement] = STATE(3035), - [sym_if_statement] = STATE(3035), - [sym_case_statement] = STATE(3035), - [sym_function_definition] = STATE(3035), - [sym_compound_statement] = STATE(3035), - [sym_subshell] = STATE(3035), - [sym_pipeline] = STATE(3035), - [sym_list] = STATE(3035), - [sym_negated_command] = STATE(3035), - [sym_test_command] = STATE(3035), - [sym_declaration_command] = STATE(3035), - [sym_unset_command] = STATE(3035), - [sym_command] = STATE(3035), - [sym_command_name] = STATE(549), - [sym_variable_assignment] = STATE(1084), - [sym_variable_assignments] = STATE(3035), - [sym_subscript] = STATE(3947), - [sym_file_redirect] = STATE(1867), - [sym_arithmetic_expansion] = STATE(1308), - [sym_brace_expression] = STATE(1308), - [sym_concatenation] = STATE(1724), - [sym_string] = STATE(1308), - [sym_translated_string] = STATE(1308), - [sym_number] = STATE(1308), - [sym_simple_expansion] = STATE(1308), - [sym_expansion] = STATE(1308), - [sym_command_substitution] = STATE(1308), - [sym_process_substitution] = STATE(1308), - [aux_sym_redirected_statement_repeat2] = STATE(3131), - [aux_sym_command_repeat1] = STATE(885), - [aux_sym__literal_repeat1] = STATE(1558), - [sym_word] = ACTIONS(947), - [anon_sym_for] = ACTIONS(238), - [anon_sym_select] = ACTIONS(240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_while] = ACTIONS(250), - [anon_sym_until] = ACTIONS(250), - [anon_sym_if] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_function] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(266), - [anon_sym_declare] = ACTIONS(268), - [anon_sym_typeset] = ACTIONS(268), - [anon_sym_export] = ACTIONS(268), - [anon_sym_readonly] = ACTIONS(268), - [anon_sym_local] = ACTIONS(268), - [anon_sym_unset] = ACTIONS(270), - [anon_sym_unsetenv] = ACTIONS(270), - [anon_sym_AMP_GT] = ACTIONS(953), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_GT_PIPE] = ACTIONS(951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(959), - [sym__special_character] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym_raw_string] = ACTIONS(965), - [sym_ansi_c_string] = ACTIONS(965), - [aux_sym_number_token1] = ACTIONS(967), - [aux_sym_number_token2] = ACTIONS(969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(977), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), + [281] = { + [sym_redirected_statement] = STATE(2678), + [sym_for_statement] = STATE(2678), + [sym_c_style_for_statement] = STATE(2678), + [sym_while_statement] = STATE(2678), + [sym_if_statement] = STATE(2678), + [sym_case_statement] = STATE(2678), + [sym_function_definition] = STATE(2678), + [sym_compound_statement] = STATE(2678), + [sym_subshell] = STATE(2678), + [sym_pipeline] = STATE(2678), + [sym_list] = STATE(2678), + [sym_negated_command] = STATE(2678), + [sym_test_command] = STATE(2678), + [sym_declaration_command] = STATE(2678), + [sym_unset_command] = STATE(2678), + [sym_command] = STATE(2678), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(631), + [sym_variable_assignments] = STATE(2678), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(851), + [anon_sym_for] = ACTIONS(854), + [anon_sym_select] = ACTIONS(857), + [anon_sym_LPAREN_LPAREN] = ACTIONS(860), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_while] = ACTIONS(872), + [anon_sym_until] = ACTIONS(872), + [anon_sym_if] = ACTIONS(875), + [anon_sym_case] = ACTIONS(878), + [anon_sym_function] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_LBRACK_LBRACK] = ACTIONS(893), + [anon_sym_declare] = ACTIONS(896), + [anon_sym_typeset] = ACTIONS(896), + [anon_sym_export] = ACTIONS(896), + [anon_sym_readonly] = ACTIONS(896), + [anon_sym_local] = ACTIONS(896), + [anon_sym_unset] = ACTIONS(899), + [anon_sym_unsetenv] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(866), + [anon_sym_AMP_GT_GT] = ACTIONS(863), + [anon_sym_LT_AMP] = ACTIONS(863), + [anon_sym_GT_AMP] = ACTIONS(863), + [anon_sym_GT_PIPE] = ACTIONS(863), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(860), + [anon_sym_DOLLAR] = ACTIONS(902), + [sym__special_character] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(908), + [sym_raw_string] = ACTIONS(911), + [sym_ansi_c_string] = ACTIONS(911), + [aux_sym_number_token1] = ACTIONS(914), + [aux_sym_number_token2] = ACTIONS(917), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(923), + [anon_sym_BQUOTE] = ACTIONS(926), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(929), + [anon_sym_LT_LPAREN] = ACTIONS(932), + [anon_sym_GT_LPAREN] = ACTIONS(932), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(983), - [sym_variable_name] = ACTIONS(302), - [sym__brace_start] = ACTIONS(985), + [sym_file_descriptor] = ACTIONS(935), + [sym_variable_name] = ACTIONS(938), + [sym_test_operator] = ACTIONS(941), + [sym__brace_start] = ACTIONS(944), }, - [284] = { - [sym_redirected_statement] = STATE(2507), - [sym_for_statement] = STATE(2507), - [sym_c_style_for_statement] = STATE(2507), - [sym_while_statement] = STATE(2507), - [sym_if_statement] = STATE(2507), - [sym_case_statement] = STATE(2507), - [sym_function_definition] = STATE(2507), - [sym_compound_statement] = STATE(2507), - [sym_subshell] = STATE(2507), - [sym_pipeline] = STATE(2507), - [sym_list] = STATE(2507), - [sym_negated_command] = STATE(2507), - [sym_test_command] = STATE(2507), - [sym_declaration_command] = STATE(2507), - [sym_unset_command] = STATE(2507), - [sym_command] = STATE(2507), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(590), - [sym_variable_assignments] = STATE(2507), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), + [282] = { + [sym_redirected_statement] = STATE(2578), + [sym_for_statement] = STATE(2578), + [sym_c_style_for_statement] = STATE(2578), + [sym_while_statement] = STATE(2578), + [sym_if_statement] = STATE(2578), + [sym_case_statement] = STATE(2578), + [sym_function_definition] = STATE(2578), + [sym_compound_statement] = STATE(2578), + [sym_subshell] = STATE(2578), + [sym_pipeline] = STATE(2578), + [sym_list] = STATE(2578), + [sym_negated_command] = STATE(2578), + [sym_test_command] = STATE(2578), + [sym_declaration_command] = STATE(2578), + [sym_unset_command] = STATE(2578), + [sym_command] = STATE(2578), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(579), + [sym_variable_assignments] = STATE(2578), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -45127,7 +44926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(85), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(773), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(89), @@ -45144,10 +44943,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_PIPE] = ACTIONS(79), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), + [sym__special_character] = ACTIONS(775), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -45157,47 +44956,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), [sym__brace_start] = ACTIONS(437), }, - [285] = { - [sym_redirected_statement] = STATE(2583), - [sym_for_statement] = STATE(2583), - [sym_c_style_for_statement] = STATE(2583), - [sym_while_statement] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_case_statement] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_compound_statement] = STATE(2583), - [sym_subshell] = STATE(2583), - [sym_pipeline] = STATE(2583), - [sym_list] = STATE(2583), - [sym_negated_command] = STATE(2583), - [sym_test_command] = STATE(2583), - [sym_declaration_command] = STATE(2583), - [sym_unset_command] = STATE(2583), - [sym_command] = STATE(2583), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(633), - [sym_variable_assignments] = STATE(2583), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [283] = { + [aux_sym__terminated_statement] = STATE(51), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -45209,18 +45009,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -45241,130 +45041,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [286] = { - [sym_redirected_statement] = STATE(3018), - [sym_for_statement] = STATE(3018), - [sym_c_style_for_statement] = STATE(3018), - [sym_while_statement] = STATE(3018), - [sym_if_statement] = STATE(3018), - [sym_case_statement] = STATE(3018), - [sym_function_definition] = STATE(3018), - [sym_compound_statement] = STATE(3018), - [sym_subshell] = STATE(3018), - [sym_pipeline] = STATE(3018), - [sym_list] = STATE(3018), - [sym_negated_command] = STATE(3018), - [sym_test_command] = STATE(3018), - [sym_declaration_command] = STATE(3018), - [sym_unset_command] = STATE(3018), - [sym_command] = STATE(3018), - [sym_command_name] = STATE(549), - [sym_variable_assignment] = STATE(1073), - [sym_variable_assignments] = STATE(3018), - [sym_subscript] = STATE(3947), - [sym_file_redirect] = STATE(1867), - [sym_arithmetic_expansion] = STATE(1308), - [sym_brace_expression] = STATE(1308), - [sym_concatenation] = STATE(1724), - [sym_string] = STATE(1308), - [sym_translated_string] = STATE(1308), - [sym_number] = STATE(1308), - [sym_simple_expansion] = STATE(1308), - [sym_expansion] = STATE(1308), - [sym_command_substitution] = STATE(1308), - [sym_process_substitution] = STATE(1308), - [aux_sym_redirected_statement_repeat2] = STATE(3131), - [aux_sym_command_repeat1] = STATE(885), - [aux_sym__literal_repeat1] = STATE(1558), - [sym_word] = ACTIONS(947), - [anon_sym_for] = ACTIONS(238), - [anon_sym_select] = ACTIONS(240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_while] = ACTIONS(250), - [anon_sym_until] = ACTIONS(250), - [anon_sym_if] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_function] = ACTIONS(256), - [anon_sym_LBRACE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(262), - [anon_sym_LBRACK_LBRACK] = ACTIONS(266), - [anon_sym_declare] = ACTIONS(268), - [anon_sym_typeset] = ACTIONS(268), - [anon_sym_export] = ACTIONS(268), - [anon_sym_readonly] = ACTIONS(268), - [anon_sym_local] = ACTIONS(268), - [anon_sym_unset] = ACTIONS(270), - [anon_sym_unsetenv] = ACTIONS(270), - [anon_sym_AMP_GT] = ACTIONS(953), - [anon_sym_AMP_GT_GT] = ACTIONS(951), - [anon_sym_LT_AMP] = ACTIONS(951), - [anon_sym_GT_AMP] = ACTIONS(951), - [anon_sym_GT_PIPE] = ACTIONS(951), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(959), - [sym__special_character] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(963), - [sym_raw_string] = ACTIONS(965), - [sym_ansi_c_string] = ACTIONS(965), - [aux_sym_number_token1] = ACTIONS(967), - [aux_sym_number_token2] = ACTIONS(969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), - [anon_sym_BQUOTE] = ACTIONS(975), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(977), - [anon_sym_LT_LPAREN] = ACTIONS(979), - [anon_sym_GT_LPAREN] = ACTIONS(979), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(983), - [sym_variable_name] = ACTIONS(302), - [sym__brace_start] = ACTIONS(985), - }, - [287] = { - [sym_redirected_statement] = STATE(2698), - [sym_for_statement] = STATE(2698), - [sym_c_style_for_statement] = STATE(2698), - [sym_while_statement] = STATE(2698), - [sym_if_statement] = STATE(2698), - [sym_case_statement] = STATE(2698), - [sym_function_definition] = STATE(2698), - [sym_compound_statement] = STATE(2698), - [sym_subshell] = STATE(2698), - [sym_pipeline] = STATE(2698), - [sym_list] = STATE(2698), - [sym_negated_command] = STATE(2698), - [sym_test_command] = STATE(2698), - [sym_declaration_command] = STATE(2698), - [sym_unset_command] = STATE(2698), - [sym_command] = STATE(2698), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(619), - [sym_variable_assignments] = STATE(2698), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [284] = { + [aux_sym__terminated_statement] = STATE(76), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -45409,47 +45126,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [288] = { - [sym_redirected_statement] = STATE(2499), - [sym_for_statement] = STATE(2499), - [sym_c_style_for_statement] = STATE(2499), - [sym_while_statement] = STATE(2499), - [sym_if_statement] = STATE(2499), - [sym_case_statement] = STATE(2499), - [sym_function_definition] = STATE(2499), - [sym_compound_statement] = STATE(2499), - [sym_subshell] = STATE(2499), - [sym_pipeline] = STATE(2499), - [sym_list] = STATE(2499), - [sym_negated_command] = STATE(2499), - [sym_test_command] = STATE(2499), - [sym_declaration_command] = STATE(2499), - [sym_unset_command] = STATE(2499), - [sym_command] = STATE(2499), - [sym_command_name] = STATE(464), - [sym_variable_assignment] = STATE(620), - [sym_variable_assignments] = STATE(2499), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1500), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2862), - [aux_sym_command_repeat1] = STATE(854), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(805), + [285] = { + [aux_sym__terminated_statement] = STATE(55), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), @@ -45461,18 +45179,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(807), + [anon_sym_function] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_typeset] = ACTIONS(811), - [anon_sym_export] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_local] = ACTIONS(811), - [anon_sym_unset] = ACTIONS(813), - [anon_sym_unsetenv] = ACTIONS(813), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), [anon_sym_AMP_GT] = ACTIONS(393), [anon_sym_AMP_GT_GT] = ACTIONS(391), [anon_sym_LT_AMP] = ACTIONS(391), @@ -45493,130 +45211,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [289] = { - [sym_redirected_statement] = STATE(2363), - [sym_for_statement] = STATE(2363), - [sym_c_style_for_statement] = STATE(2363), - [sym_while_statement] = STATE(2363), - [sym_if_statement] = STATE(2363), - [sym_case_statement] = STATE(2363), - [sym_function_definition] = STATE(2363), - [sym_compound_statement] = STATE(2363), - [sym_subshell] = STATE(2363), - [sym_pipeline] = STATE(2363), - [sym_list] = STATE(2363), - [sym_negated_command] = STATE(2363), - [sym_test_command] = STATE(2363), - [sym_declaration_command] = STATE(2363), - [sym_unset_command] = STATE(2363), - [sym_command] = STATE(2363), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(545), - [sym_variable_assignments] = STATE(2363), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), - [sym_word] = ACTIONS(449), - [anon_sym_for] = ACTIONS(451), - [anon_sym_select] = ACTIONS(453), - [anon_sym_LPAREN_LPAREN] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_while] = ACTIONS(463), - [anon_sym_until] = ACTIONS(463), - [anon_sym_if] = ACTIONS(465), - [anon_sym_case] = ACTIONS(467), - [anon_sym_function] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_LBRACK_LBRACK] = ACTIONS(485), - [anon_sym_declare] = ACTIONS(487), - [anon_sym_typeset] = ACTIONS(487), - [anon_sym_export] = ACTIONS(487), - [anon_sym_readonly] = ACTIONS(487), - [anon_sym_local] = ACTIONS(487), - [anon_sym_unset] = ACTIONS(489), - [anon_sym_unsetenv] = ACTIONS(489), - [anon_sym_AMP_GT] = ACTIONS(459), - [anon_sym_AMP_GT_GT] = ACTIONS(457), - [anon_sym_LT_AMP] = ACTIONS(457), - [anon_sym_GT_AMP] = ACTIONS(457), - [anon_sym_GT_PIPE] = ACTIONS(457), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(491), - [sym__special_character] = ACTIONS(493), - [anon_sym_DQUOTE] = ACTIONS(495), - [sym_raw_string] = ACTIONS(497), - [sym_ansi_c_string] = ACTIONS(497), - [aux_sym_number_token1] = ACTIONS(499), - [aux_sym_number_token2] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), - [anon_sym_BQUOTE] = ACTIONS(507), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), - [anon_sym_LT_LPAREN] = ACTIONS(511), - [anon_sym_GT_LPAREN] = ACTIONS(511), + [286] = { + [aux_sym__terminated_statement] = STATE(72), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), - [sym__brace_start] = ACTIONS(519), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), }, - [290] = { - [sym_redirected_statement] = STATE(2357), - [sym_for_statement] = STATE(2357), - [sym_c_style_for_statement] = STATE(2357), - [sym_while_statement] = STATE(2357), - [sym_if_statement] = STATE(2357), - [sym_case_statement] = STATE(2357), - [sym_function_definition] = STATE(2357), - [sym_compound_statement] = STATE(2357), - [sym_subshell] = STATE(2357), - [sym_pipeline] = STATE(2357), - [sym_list] = STATE(2357), - [sym_negated_command] = STATE(2357), - [sym_test_command] = STATE(2357), - [sym_declaration_command] = STATE(2357), - [sym_unset_command] = STATE(2357), - [sym_command] = STATE(2357), - [sym_command_name] = STATE(421), - [sym_variable_assignment] = STATE(544), - [sym_variable_assignments] = STATE(2357), - [sym_subscript] = STATE(3982), - [sym_file_redirect] = STATE(1242), - [sym_arithmetic_expansion] = STATE(598), - [sym_brace_expression] = STATE(598), - [sym_concatenation] = STATE(857), - [sym_string] = STATE(598), - [sym_translated_string] = STATE(598), - [sym_number] = STATE(598), - [sym_simple_expansion] = STATE(598), - [sym_expansion] = STATE(598), - [sym_command_substitution] = STATE(598), - [sym_process_substitution] = STATE(598), - [aux_sym_redirected_statement_repeat2] = STATE(2494), - [aux_sym_command_repeat1] = STATE(866), - [aux_sym__literal_repeat1] = STATE(702), + [287] = { + [sym_redirected_statement] = STATE(2426), + [sym_for_statement] = STATE(2426), + [sym_c_style_for_statement] = STATE(2426), + [sym_while_statement] = STATE(2426), + [sym_if_statement] = STATE(2426), + [sym_case_statement] = STATE(2426), + [sym_function_definition] = STATE(2426), + [sym_compound_statement] = STATE(2426), + [sym_subshell] = STATE(2426), + [sym_pipeline] = STATE(2426), + [sym_list] = STATE(2426), + [sym_negated_command] = STATE(2426), + [sym_test_command] = STATE(2426), + [sym_declaration_command] = STATE(2426), + [sym_unset_command] = STATE(2426), + [sym_command] = STATE(2426), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(557), + [sym_variable_assignments] = STATE(2426), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), [sym_word] = ACTIONS(449), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -45661,46 +45381,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(511), [anon_sym_GT_LPAREN] = ACTIONS(511), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(513), - [sym_file_descriptor] = ACTIONS(515), - [sym_variable_name] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), [sym__brace_start] = ACTIONS(519), }, - [291] = { - [sym_redirected_statement] = STATE(2681), - [sym_for_statement] = STATE(2681), - [sym_c_style_for_statement] = STATE(2681), - [sym_while_statement] = STATE(2681), - [sym_if_statement] = STATE(2681), - [sym_case_statement] = STATE(2681), - [sym_function_definition] = STATE(2681), - [sym_compound_statement] = STATE(2681), - [sym_subshell] = STATE(2681), - [sym_pipeline] = STATE(2681), - [sym_list] = STATE(2681), - [sym_negated_command] = STATE(2681), - [sym_test_command] = STATE(2681), - [sym_declaration_command] = STATE(2681), - [sym_unset_command] = STATE(2681), - [sym_command] = STATE(2681), - [sym_command_name] = STATE(477), - [sym_variable_assignment] = STATE(618), - [sym_variable_assignments] = STATE(2681), - [sym_subscript] = STATE(3948), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(808), - [sym_brace_expression] = STATE(808), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(808), - [sym_translated_string] = STATE(808), - [sym_number] = STATE(808), - [sym_simple_expansion] = STATE(808), - [sym_expansion] = STATE(808), - [sym_command_substitution] = STATE(808), - [sym_process_substitution] = STATE(808), - [aux_sym_redirected_statement_repeat2] = STATE(2880), - [aux_sym_command_repeat1] = STATE(821), - [aux_sym__literal_repeat1] = STATE(1052), + [288] = { + [aux_sym__terminated_statement] = STATE(165), + [sym_redirected_statement] = STATE(2715), + [sym_for_statement] = STATE(2715), + [sym_c_style_for_statement] = STATE(2715), + [sym_while_statement] = STATE(2715), + [sym_if_statement] = STATE(2715), + [sym_case_statement] = STATE(2715), + [sym_function_definition] = STATE(2715), + [sym_compound_statement] = STATE(2715), + [sym_subshell] = STATE(2715), + [sym_pipeline] = STATE(2715), + [sym_list] = STATE(2715), + [sym_negated_command] = STATE(2715), + [sym_test_command] = STATE(2715), + [sym_declaration_command] = STATE(2715), + [sym_unset_command] = STATE(2715), + [sym_command] = STATE(2715), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(622), + [sym_variable_assignments] = STATE(2715), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), [sym_word] = ACTIONS(387), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -45745,382 +45466,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(431), - [sym_file_descriptor] = ACTIONS(433), - [sym_variable_name] = ACTIONS(435), - [sym__brace_start] = ACTIONS(437), - }, - [292] = { - [sym__expression] = STATE(1689), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(1387), - [sym_brace_expression] = STATE(1387), - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(1387), - [sym_translated_string] = STATE(1387), - [sym_number] = STATE(1387), - [sym_simple_expansion] = STATE(1387), - [sym_expansion] = STATE(1387), - [sym_command_substitution] = STATE(1387), - [sym_process_substitution] = STATE(1387), - [aux_sym__literal_repeat1] = STATE(1485), - [aux_sym_concatenation_repeat1] = STATE(1286), - [sym_word] = ACTIONS(228), - [anon_sym_LPAREN_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN_RPAREN] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(350), - [anon_sym_GT_GT_EQ] = ACTIONS(350), - [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(350), - [anon_sym_GT_EQ] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_RPAREN] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(230), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(133), - [anon_sym_PLUS2] = ACTIONS(133), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_PLUS_PLUS2] = ACTIONS(135), - [anon_sym_DASH_DASH2] = ACTIONS(135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(987), - [aux_sym_concatenation_token1] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(200), - [sym__special_character] = ACTIONS(991), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym_raw_string] = ACTIONS(995), - [sym_ansi_c_string] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(999), - [anon_sym_LT_LPAREN] = ACTIONS(1001), - [anon_sym_GT_LPAREN] = ACTIONS(1001), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1003), - [sym__concat] = ACTIONS(989), - [sym__brace_start] = ACTIONS(226), - }, - [293] = { - [sym_redirected_statement] = STATE(2526), - [sym_for_statement] = STATE(2526), - [sym_c_style_for_statement] = STATE(2526), - [sym_while_statement] = STATE(2526), - [sym_if_statement] = STATE(2526), - [sym_case_statement] = STATE(2526), - [sym_function_definition] = STATE(2526), - [sym_compound_statement] = STATE(2526), - [sym_subshell] = STATE(2526), - [sym_pipeline] = STATE(2526), - [sym_list] = STATE(2526), - [sym_negated_command] = STATE(2526), - [sym_test_command] = STATE(2526), - [sym_declaration_command] = STATE(2526), - [sym_unset_command] = STATE(2526), - [sym_command] = STATE(2526), - [sym_command_name] = STATE(450), - [sym_variable_assignment] = STATE(587), - [sym_variable_assignments] = STATE(2526), - [sym_subscript] = STATE(3943), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(716), - [sym_brace_expression] = STATE(716), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(716), - [sym_translated_string] = STATE(716), - [sym_number] = STATE(716), - [sym_simple_expansion] = STATE(716), - [sym_expansion] = STATE(716), - [sym_command_substitution] = STATE(716), - [sym_process_substitution] = STATE(716), - [aux_sym_redirected_statement_repeat2] = STATE(2854), - [aux_sym_command_repeat1] = STATE(843), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(81), - [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(85), - [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(89), - [anon_sym_typeset] = ACTIONS(89), - [anon_sym_export] = ACTIONS(89), - [anon_sym_readonly] = ACTIONS(89), - [anon_sym_local] = ACTIONS(89), - [anon_sym_unset] = ACTIONS(91), - [anon_sym_unsetenv] = ACTIONS(91), - [anon_sym_AMP_GT] = ACTIONS(81), - [anon_sym_AMP_GT_GT] = ACTIONS(79), - [anon_sym_LT_AMP] = ACTIONS(79), - [anon_sym_GT_AMP] = ACTIONS(79), - [anon_sym_GT_PIPE] = ACTIONS(79), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(775), - [sym_ansi_c_string] = ACTIONS(775), - [aux_sym_number_token1] = ACTIONS(417), - [aux_sym_number_token2] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), - [anon_sym_BQUOTE] = ACTIONS(425), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), - [anon_sym_LT_LPAREN] = ACTIONS(429), - [anon_sym_GT_LPAREN] = ACTIONS(429), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(777), - [sym_file_descriptor] = ACTIONS(121), - [sym_variable_name] = ACTIONS(123), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [294] = { - [sym_redirected_statement] = STATE(2522), - [sym_for_statement] = STATE(2522), - [sym_c_style_for_statement] = STATE(2522), - [sym_while_statement] = STATE(2522), - [sym_if_statement] = STATE(2522), - [sym_case_statement] = STATE(2522), - [sym_function_definition] = STATE(2522), - [sym_compound_statement] = STATE(2522), - [sym_subshell] = STATE(2522), - [sym_pipeline] = STATE(2522), - [sym_list] = STATE(2522), - [sym_negated_command] = STATE(2522), - [sym_test_command] = STATE(2522), - [sym_declaration_command] = STATE(2522), - [sym_unset_command] = STATE(2522), - [sym_command] = STATE(2522), - [sym_command_name] = STATE(438), - [sym_variable_assignment] = STATE(569), - [sym_variable_assignments] = STATE(2522), - [sym_subscript] = STATE(3985), - [sym_file_redirect] = STATE(1315), - [sym_arithmetic_expansion] = STATE(740), - [sym_brace_expression] = STATE(740), - [sym_concatenation] = STATE(1202), - [sym_string] = STATE(740), - [sym_translated_string] = STATE(740), - [sym_number] = STATE(740), - [sym_simple_expansion] = STATE(740), - [sym_expansion] = STATE(740), - [sym_command_substitution] = STATE(740), - [sym_process_substitution] = STATE(740), - [aux_sym_redirected_statement_repeat2] = STATE(2801), - [aux_sym_command_repeat1] = STATE(841), - [aux_sym__literal_repeat1] = STATE(969), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_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(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), - }, - [295] = { - [sym_redirected_statement] = STATE(2523), - [sym_for_statement] = STATE(2523), - [sym_c_style_for_statement] = STATE(2523), - [sym_while_statement] = STATE(2523), - [sym_if_statement] = STATE(2523), - [sym_case_statement] = STATE(2523), - [sym_function_definition] = STATE(2523), - [sym_compound_statement] = STATE(2523), - [sym_subshell] = STATE(2523), - [sym_pipeline] = STATE(2523), - [sym_list] = STATE(2523), - [sym_negated_command] = STATE(2523), - [sym_test_command] = STATE(2523), - [sym_declaration_command] = STATE(2523), - [sym_unset_command] = STATE(2523), - [sym_command] = STATE(2523), - [sym_command_name] = STATE(438), - [sym_variable_assignment] = STATE(570), - [sym_variable_assignments] = STATE(2523), - [sym_subscript] = STATE(3985), - [sym_file_redirect] = STATE(1315), - [sym_arithmetic_expansion] = STATE(740), - [sym_brace_expression] = STATE(740), - [sym_concatenation] = STATE(1202), - [sym_string] = STATE(740), - [sym_translated_string] = STATE(740), - [sym_number] = STATE(740), - [sym_simple_expansion] = STATE(740), - [sym_expansion] = STATE(740), - [sym_command_substitution] = STATE(740), - [sym_process_substitution] = STATE(740), - [aux_sym_redirected_statement_repeat2] = STATE(2801), - [aux_sym_command_repeat1] = STATE(841), - [aux_sym__literal_repeat1] = STATE(969), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_GT_GT] = ACTIONS(15), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_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(17), - [anon_sym_AMP_GT_GT] = ACTIONS(15), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(15), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym__special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansi_c_string] = ACTIONS(47), - [aux_sym_number_token1] = ACTIONS(49), - [aux_sym_number_token2] = ACTIONS(51), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), - [anon_sym_BQUOTE] = ACTIONS(57), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), - [anon_sym_LT_LPAREN] = ACTIONS(61), - [anon_sym_GT_LPAREN] = ACTIONS(61), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(65), - [sym_file_descriptor] = ACTIONS(67), - [sym_variable_name] = ACTIONS(69), - [sym__brace_start] = ACTIONS(71), - }, - [296] = { - [sym_redirected_statement] = STATE(2400), - [sym_for_statement] = STATE(2400), - [sym_c_style_for_statement] = STATE(2400), - [sym_while_statement] = STATE(2400), - [sym_if_statement] = STATE(2400), - [sym_case_statement] = STATE(2400), - [sym_function_definition] = STATE(2400), - [sym_compound_statement] = STATE(2400), - [sym_subshell] = STATE(2400), - [sym_pipeline] = STATE(2400), - [sym_list] = STATE(2400), - [sym_negated_command] = STATE(2400), - [sym_test_command] = STATE(2400), - [sym_declaration_command] = STATE(2400), - [sym_unset_command] = STATE(2400), - [sym_command] = STATE(2400), - [sym_command_name] = STATE(427), - [sym_variable_assignment] = STATE(561), - [sym_variable_assignments] = STATE(2400), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [289] = { + [sym_redirected_statement] = STATE(2449), + [sym_for_statement] = STATE(2449), + [sym_c_style_for_statement] = STATE(2449), + [sym_while_statement] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_case_statement] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_compound_statement] = STATE(2449), + [sym_subshell] = STATE(2449), + [sym_pipeline] = STATE(2449), + [sym_list] = STATE(2449), + [sym_negated_command] = STATE(2449), + [sym_test_command] = STATE(2449), + [sym_declaration_command] = STATE(2449), + [sym_unset_command] = STATE(2449), + [sym_command] = STATE(2449), + [sym_command_name] = STATE(431), + [sym_variable_assignment] = STATE(558), + [sym_variable_assignments] = STATE(2449), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -46165,46 +45550,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, - [297] = { - [sym_redirected_statement] = STATE(2392), - [sym_for_statement] = STATE(2392), - [sym_c_style_for_statement] = STATE(2392), - [sym_while_statement] = STATE(2392), - [sym_if_statement] = STATE(2392), - [sym_case_statement] = STATE(2392), - [sym_function_definition] = STATE(2392), - [sym_compound_statement] = STATE(2392), - [sym_subshell] = STATE(2392), - [sym_pipeline] = STATE(2392), - [sym_list] = STATE(2392), - [sym_negated_command] = STATE(2392), - [sym_test_command] = STATE(2392), - [sym_declaration_command] = STATE(2392), - [sym_unset_command] = STATE(2392), - [sym_command] = STATE(2392), - [sym_command_name] = STATE(427), - [sym_variable_assignment] = STATE(558), - [sym_variable_assignments] = STATE(2392), - [sym_subscript] = STATE(3945), - [sym_file_redirect] = STATE(1252), - [sym_arithmetic_expansion] = STATE(603), - [sym_brace_expression] = STATE(603), - [sym_concatenation] = STATE(955), - [sym_string] = STATE(603), - [sym_translated_string] = STATE(603), - [sym_number] = STATE(603), - [sym_simple_expansion] = STATE(603), - [sym_expansion] = STATE(603), - [sym_command_substitution] = STATE(603), - [sym_process_substitution] = STATE(603), - [aux_sym_redirected_statement_repeat2] = STATE(2713), - [aux_sym_command_repeat1] = STATE(878), - [aux_sym__literal_repeat1] = STATE(882), + [290] = { + [sym_redirected_statement] = STATE(2727), + [sym_for_statement] = STATE(2727), + [sym_c_style_for_statement] = STATE(2727), + [sym_while_statement] = STATE(2727), + [sym_if_statement] = STATE(2727), + [sym_case_statement] = STATE(2727), + [sym_function_definition] = STATE(2727), + [sym_compound_statement] = STATE(2727), + [sym_subshell] = STATE(2727), + [sym_pipeline] = STATE(2727), + [sym_list] = STATE(2727), + [sym_negated_command] = STATE(2727), + [sym_test_command] = STATE(2727), + [sym_declaration_command] = STATE(2727), + [sym_unset_command] = STATE(2727), + [sym_command] = STATE(2727), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(648), + [sym_variable_assignments] = STATE(2727), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [291] = { + [sym_redirected_statement] = STATE(2422), + [sym_for_statement] = STATE(2422), + [sym_c_style_for_statement] = STATE(2422), + [sym_while_statement] = STATE(2422), + [sym_if_statement] = STATE(2422), + [sym_case_statement] = STATE(2422), + [sym_function_definition] = STATE(2422), + [sym_compound_statement] = STATE(2422), + [sym_subshell] = STATE(2422), + [sym_pipeline] = STATE(2422), + [sym_list] = STATE(2422), + [sym_negated_command] = STATE(2422), + [sym_test_command] = STATE(2422), + [sym_declaration_command] = STATE(2422), + [sym_unset_command] = STATE(2422), + [sym_command] = STATE(2422), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(547), + [sym_variable_assignments] = STATE(2422), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), + }, + [292] = { + [sym__expression] = STATE(1636), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(1347), + [sym_brace_expression] = STATE(1347), + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(1347), + [sym_translated_string] = STATE(1347), + [sym_number] = STATE(1347), + [sym_simple_expansion] = STATE(1347), + [sym_expansion] = STATE(1347), + [sym_command_substitution] = STATE(1347), + [sym_process_substitution] = STATE(1347), + [aux_sym__literal_repeat1] = STATE(1458), + [aux_sym_concatenation_repeat1] = STATE(1346), + [sym_word] = ACTIONS(181), + [anon_sym_LPAREN_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN_RPAREN] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(194), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_PLUS_PLUS2] = ACTIONS(95), + [anon_sym_DASH_DASH2] = ACTIONS(95), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(947), + [aux_sym_concatenation_token1] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym__special_character] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym_raw_string] = ACTIONS(955), + [sym_ansi_c_string] = ACTIONS(955), + [aux_sym_number_token1] = ACTIONS(204), + [aux_sym_number_token2] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_comment] = ACTIONS(63), + [sym__concat] = ACTIONS(949), + [sym_test_operator] = ACTIONS(222), + [sym__brace_start] = ACTIONS(224), + }, + [293] = { + [sym_redirected_statement] = STATE(2441), + [sym_for_statement] = STATE(2441), + [sym_c_style_for_statement] = STATE(2441), + [sym_while_statement] = STATE(2441), + [sym_if_statement] = STATE(2441), + [sym_case_statement] = STATE(2441), + [sym_function_definition] = STATE(2441), + [sym_compound_statement] = STATE(2441), + [sym_subshell] = STATE(2441), + [sym_pipeline] = STATE(2441), + [sym_list] = STATE(2441), + [sym_negated_command] = STATE(2441), + [sym_test_command] = STATE(2441), + [sym_declaration_command] = STATE(2441), + [sym_unset_command] = STATE(2441), + [sym_command] = STATE(2441), + [sym_command_name] = STATE(431), + [sym_variable_assignment] = STATE(559), + [sym_variable_assignments] = STATE(2441), + [sym_subscript] = STATE(3959), + [sym_file_redirect] = STATE(1265), + [sym_arithmetic_expansion] = STATE(670), + [sym_brace_expression] = STATE(670), + [sym_concatenation] = STATE(996), + [sym_string] = STATE(670), + [sym_translated_string] = STATE(670), + [sym_number] = STATE(670), + [sym_simple_expansion] = STATE(670), + [sym_expansion] = STATE(670), + [sym_command_substitution] = STATE(670), + [sym_process_substitution] = STATE(670), + [aux_sym_redirected_statement_repeat2] = STATE(2714), + [aux_sym_command_repeat1] = STATE(833), + [aux_sym__literal_repeat1] = STATE(829), [sym_word] = ACTIONS(691), [anon_sym_for] = ACTIONS(451), [anon_sym_select] = ACTIONS(453), @@ -46249,81 +45886,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(729), [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(731), - [sym_file_descriptor] = ACTIONS(733), - [sym_variable_name] = ACTIONS(735), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), [sym__brace_start] = ACTIONS(737), }, - [298] = { - [sym_redirected_statement] = STATE(2924), - [sym_for_statement] = STATE(2924), - [sym_c_style_for_statement] = STATE(2924), - [sym_while_statement] = STATE(2924), - [sym_if_statement] = STATE(2924), - [sym_case_statement] = STATE(2924), - [sym_function_definition] = STATE(2924), - [sym_compound_statement] = STATE(2924), - [sym_subshell] = STATE(2924), - [sym_pipeline] = STATE(2924), - [sym_list] = STATE(2924), - [sym_negated_command] = STATE(2924), - [sym_test_command] = STATE(2924), - [sym_declaration_command] = STATE(2924), - [sym_unset_command] = STATE(2924), - [sym_command] = STATE(2924), - [sym_command_name] = STATE(515), - [sym_variable_assignment] = STATE(1059), - [sym_variable_assignments] = STATE(2924), - [sym_subscript] = STATE(3976), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(1251), - [sym_brace_expression] = STATE(1251), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(1251), - [sym_translated_string] = STATE(1251), - [sym_number] = STATE(1251), - [sym_simple_expansion] = STATE(1251), - [sym_expansion] = STATE(1251), - [sym_command_substitution] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_redirected_statement_repeat2] = STATE(3093), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(1005), + [294] = { + [sym_redirected_statement] = STATE(3016), + [sym_for_statement] = STATE(3016), + [sym_c_style_for_statement] = STATE(3016), + [sym_while_statement] = STATE(3016), + [sym_if_statement] = STATE(3016), + [sym_case_statement] = STATE(3016), + [sym_function_definition] = STATE(3016), + [sym_compound_statement] = STATE(3016), + [sym_subshell] = STATE(3016), + [sym_pipeline] = STATE(3016), + [sym_list] = STATE(3016), + [sym_negated_command] = STATE(3016), + [sym_test_command] = STATE(3016), + [sym_declaration_command] = STATE(3016), + [sym_unset_command] = STATE(3016), + [sym_command] = STATE(3016), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1166), + [sym_variable_assignments] = STATE(3016), + [sym_subscript] = STATE(3974), + [sym_file_redirect] = STATE(1838), + [sym_arithmetic_expansion] = STATE(1330), + [sym_brace_expression] = STATE(1330), + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(1330), + [sym_translated_string] = STATE(1330), + [sym_number] = STATE(1330), + [sym_simple_expansion] = STATE(1330), + [sym_expansion] = STATE(1330), + [sym_command_substitution] = STATE(1330), + [sym_process_substitution] = STATE(1330), + [aux_sym_redirected_statement_repeat2] = STATE(3145), + [aux_sym_command_repeat1] = STATE(897), + [aux_sym__literal_repeat1] = STATE(1547), + [sym_word] = ACTIONS(963), + [anon_sym_for] = ACTIONS(238), + [anon_sym_select] = ACTIONS(240), + [anon_sym_LPAREN_LPAREN] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_while] = ACTIONS(250), + [anon_sym_until] = ACTIONS(250), + [anon_sym_if] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_function] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [anon_sym_GT_PIPE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym__special_character] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(981), + [sym_ansi_c_string] = ACTIONS(981), + [aux_sym_number_token1] = ACTIONS(983), + [aux_sym_number_token2] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(993), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(300), + [sym_test_operator] = ACTIONS(999), + [sym__brace_start] = ACTIONS(1001), + }, + [295] = { + [sym_redirected_statement] = STATE(2556), + [sym_for_statement] = STATE(2556), + [sym_c_style_for_statement] = STATE(2556), + [sym_while_statement] = STATE(2556), + [sym_if_statement] = STATE(2556), + [sym_case_statement] = STATE(2556), + [sym_function_definition] = STATE(2556), + [sym_compound_statement] = STATE(2556), + [sym_subshell] = STATE(2556), + [sym_pipeline] = STATE(2556), + [sym_list] = STATE(2556), + [sym_negated_command] = STATE(2556), + [sym_test_command] = STATE(2556), + [sym_declaration_command] = STATE(2556), + [sym_unset_command] = STATE(2556), + [sym_command] = STATE(2556), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(627), + [sym_variable_assignments] = STATE(2556), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(1011), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1015), - [anon_sym_typeset] = ACTIONS(1015), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_readonly] = ACTIONS(1015), - [anon_sym_local] = ACTIONS(1015), - [anon_sym_unset] = ACTIONS(1017), - [anon_sym_unsetenv] = ACTIONS(1017), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [anon_sym_GT_PIPE] = ACTIONS(1007), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(1019), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(1021), - [sym_ansi_c_string] = ACTIONS(1021), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -46333,81 +46054,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1023), - [sym_file_descriptor] = ACTIONS(1025), - [sym_variable_name] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [299] = { - [sym_redirected_statement] = STATE(2937), - [sym_for_statement] = STATE(2937), - [sym_c_style_for_statement] = STATE(2937), - [sym_while_statement] = STATE(2937), - [sym_if_statement] = STATE(2937), - [sym_case_statement] = STATE(2937), - [sym_function_definition] = STATE(2937), - [sym_compound_statement] = STATE(2937), - [sym_subshell] = STATE(2937), - [sym_pipeline] = STATE(2937), - [sym_list] = STATE(2937), - [sym_negated_command] = STATE(2937), - [sym_test_command] = STATE(2937), - [sym_declaration_command] = STATE(2937), - [sym_unset_command] = STATE(2937), - [sym_command] = STATE(2937), - [sym_command_name] = STATE(515), - [sym_variable_assignment] = STATE(919), - [sym_variable_assignments] = STATE(2937), - [sym_subscript] = STATE(3976), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(1251), - [sym_brace_expression] = STATE(1251), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(1251), - [sym_translated_string] = STATE(1251), - [sym_number] = STATE(1251), - [sym_simple_expansion] = STATE(1251), - [sym_expansion] = STATE(1251), - [sym_command_substitution] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_redirected_statement_repeat2] = STATE(3093), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(1005), + [296] = { + [sym_redirected_statement] = STATE(2641), + [sym_for_statement] = STATE(2641), + [sym_c_style_for_statement] = STATE(2641), + [sym_while_statement] = STATE(2641), + [sym_if_statement] = STATE(2641), + [sym_case_statement] = STATE(2641), + [sym_function_definition] = STATE(2641), + [sym_compound_statement] = STATE(2641), + [sym_subshell] = STATE(2641), + [sym_pipeline] = STATE(2641), + [sym_list] = STATE(2641), + [sym_negated_command] = STATE(2641), + [sym_test_command] = STATE(2641), + [sym_declaration_command] = STATE(2641), + [sym_unset_command] = STATE(2641), + [sym_command] = STATE(2641), + [sym_command_name] = STATE(477), + [sym_variable_assignment] = STATE(632), + [sym_variable_assignments] = STATE(2641), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1506), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2819), + [aux_sym_command_repeat1] = STATE(899), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), [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(1011), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1015), - [anon_sym_typeset] = ACTIONS(1015), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_readonly] = ACTIONS(1015), - [anon_sym_local] = ACTIONS(1015), - [anon_sym_unset] = ACTIONS(1017), - [anon_sym_unsetenv] = ACTIONS(1017), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [anon_sym_GT_PIPE] = ACTIONS(1007), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(1019), + [sym__special_character] = ACTIONS(411), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(1021), - [sym_ansi_c_string] = ACTIONS(1021), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -46417,81 +46138,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1023), - [sym_file_descriptor] = ACTIONS(1025), - [sym_variable_name] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), [sym__brace_start] = ACTIONS(437), }, - [300] = { - [sym_redirected_statement] = STATE(2921), - [sym_for_statement] = STATE(2921), - [sym_c_style_for_statement] = STATE(2921), - [sym_while_statement] = STATE(2921), - [sym_if_statement] = STATE(2921), - [sym_case_statement] = STATE(2921), - [sym_function_definition] = STATE(2921), - [sym_compound_statement] = STATE(2921), - [sym_subshell] = STATE(2921), - [sym_pipeline] = STATE(2921), - [sym_list] = STATE(2921), - [sym_negated_command] = STATE(2921), - [sym_test_command] = STATE(2921), - [sym_declaration_command] = STATE(2921), - [sym_unset_command] = STATE(2921), - [sym_command] = STATE(2921), - [sym_command_name] = STATE(515), - [sym_variable_assignment] = STATE(918), - [sym_variable_assignments] = STATE(2921), - [sym_subscript] = STATE(3976), - [sym_file_redirect] = STATE(1339), - [sym_arithmetic_expansion] = STATE(1251), - [sym_brace_expression] = STATE(1251), - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(1251), - [sym_translated_string] = STATE(1251), - [sym_number] = STATE(1251), - [sym_simple_expansion] = STATE(1251), - [sym_expansion] = STATE(1251), - [sym_command_substitution] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_redirected_statement_repeat2] = STATE(3093), - [aux_sym_command_repeat1] = STATE(908), - [aux_sym__literal_repeat1] = STATE(1052), - [sym_word] = ACTIONS(1005), + [297] = { + [sym_redirected_statement] = STATE(2922), + [sym_for_statement] = STATE(2922), + [sym_c_style_for_statement] = STATE(2922), + [sym_while_statement] = STATE(2922), + [sym_if_statement] = STATE(2922), + [sym_case_statement] = STATE(2922), + [sym_function_definition] = STATE(2922), + [sym_compound_statement] = STATE(2922), + [sym_subshell] = STATE(2922), + [sym_pipeline] = STATE(2922), + [sym_list] = STATE(2922), + [sym_negated_command] = STATE(2922), + [sym_test_command] = STATE(2922), + [sym_declaration_command] = STATE(2922), + [sym_unset_command] = STATE(2922), + [sym_command] = STATE(2922), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(992), + [sym_variable_assignments] = STATE(2922), + [sym_subscript] = STATE(3972), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(1278), + [sym_brace_expression] = STATE(1278), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(1278), + [sym_translated_string] = STATE(1278), + [sym_number] = STATE(1278), + [sym_simple_expansion] = STATE(1278), + [sym_expansion] = STATE(1278), + [sym_command_substitution] = STATE(1278), + [sym_process_substitution] = STATE(1278), + [aux_sym_redirected_statement_repeat2] = STATE(3071), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(1003), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), [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(1011), + [anon_sym_function] = ACTIONS(1009), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1011), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1015), - [anon_sym_typeset] = ACTIONS(1015), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_readonly] = ACTIONS(1015), - [anon_sym_local] = ACTIONS(1015), - [anon_sym_unset] = ACTIONS(1017), - [anon_sym_unsetenv] = ACTIONS(1017), - [anon_sym_AMP_GT] = ACTIONS(1009), - [anon_sym_AMP_GT_GT] = ACTIONS(1007), - [anon_sym_LT_AMP] = ACTIONS(1007), - [anon_sym_GT_AMP] = ACTIONS(1007), - [anon_sym_GT_PIPE] = ACTIONS(1007), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_typeset] = ACTIONS(1013), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_local] = ACTIONS(1013), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_AMP_GT] = ACTIONS(1007), + [anon_sym_AMP_GT_GT] = ACTIONS(1005), + [anon_sym_LT_AMP] = ACTIONS(1005), + [anon_sym_GT_AMP] = ACTIONS(1005), + [anon_sym_GT_PIPE] = ACTIONS(1005), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(409), - [sym__special_character] = ACTIONS(1019), + [sym__special_character] = ACTIONS(1017), [anon_sym_DQUOTE] = ACTIONS(413), - [sym_raw_string] = ACTIONS(1021), - [sym_ansi_c_string] = ACTIONS(1021), + [sym_raw_string] = ACTIONS(1019), + [sym_ansi_c_string] = ACTIONS(1019), [aux_sym_number_token1] = ACTIONS(417), [aux_sym_number_token2] = ACTIONS(419), [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), @@ -46501,330 +46222,920 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(429), [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1023), - [sym_file_descriptor] = ACTIONS(1025), - [sym_variable_name] = ACTIONS(1027), + [sym_file_descriptor] = ACTIONS(1021), + [sym_variable_name] = ACTIONS(1023), + [sym_test_operator] = ACTIONS(1025), [sym__brace_start] = ACTIONS(437), }, - [301] = { - [sym__expression] = STATE(1649), - [sym_binary_expression] = STATE(1706), - [sym_ternary_expression] = STATE(1706), - [sym_unary_expression] = STATE(1706), - [sym_postfix_expression] = STATE(1706), - [sym_parenthesized_expression] = STATE(1706), - [sym_arithmetic_expansion] = STATE(1441), - [sym_brace_expression] = STATE(1441), - [sym_concatenation] = STATE(1706), - [sym_string] = STATE(1441), - [sym_translated_string] = STATE(1441), - [sym_number] = STATE(1441), - [sym_simple_expansion] = STATE(1441), - [sym_expansion] = STATE(1441), - [sym_command_substitution] = STATE(1441), - [sym_process_substitution] = STATE(1441), - [aux_sym__literal_repeat1] = STATE(1488), - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_word] = ACTIONS(1029), - [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(350), - [anon_sym_GT_GT_EQ] = ACTIONS(350), - [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(350), - [anon_sym_GT_EQ] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_RBRACK] = ACTIONS(1035), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1037), - [anon_sym_PLUS2] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS2] = ACTIONS(1039), - [anon_sym_DASH_DASH2] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), - [aux_sym_concatenation_token1] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(361), - [sym__special_character] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(365), - [sym_raw_string] = ACTIONS(1045), - [sym_ansi_c_string] = ACTIONS(1045), - [aux_sym_number_token1] = ACTIONS(369), - [aux_sym_number_token2] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), - [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), + [298] = { + [sym_redirected_statement] = STATE(3010), + [sym_for_statement] = STATE(3010), + [sym_c_style_for_statement] = STATE(3010), + [sym_while_statement] = STATE(3010), + [sym_if_statement] = STATE(3010), + [sym_case_statement] = STATE(3010), + [sym_function_definition] = STATE(3010), + [sym_compound_statement] = STATE(3010), + [sym_subshell] = STATE(3010), + [sym_pipeline] = STATE(3010), + [sym_list] = STATE(3010), + [sym_negated_command] = STATE(3010), + [sym_test_command] = STATE(3010), + [sym_declaration_command] = STATE(3010), + [sym_unset_command] = STATE(3010), + [sym_command] = STATE(3010), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1141), + [sym_variable_assignments] = STATE(3010), + [sym_subscript] = STATE(3974), + [sym_file_redirect] = STATE(1838), + [sym_arithmetic_expansion] = STATE(1330), + [sym_brace_expression] = STATE(1330), + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(1330), + [sym_translated_string] = STATE(1330), + [sym_number] = STATE(1330), + [sym_simple_expansion] = STATE(1330), + [sym_expansion] = STATE(1330), + [sym_command_substitution] = STATE(1330), + [sym_process_substitution] = STATE(1330), + [aux_sym_redirected_statement_repeat2] = STATE(3145), + [aux_sym_command_repeat1] = STATE(897), + [aux_sym__literal_repeat1] = STATE(1547), + [sym_word] = ACTIONS(963), + [anon_sym_for] = ACTIONS(238), + [anon_sym_select] = ACTIONS(240), + [anon_sym_LPAREN_LPAREN] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_while] = ACTIONS(250), + [anon_sym_until] = ACTIONS(250), + [anon_sym_if] = ACTIONS(252), + [anon_sym_case] = ACTIONS(254), + [anon_sym_function] = ACTIONS(256), + [anon_sym_LBRACE] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(262), + [anon_sym_LBRACK_LBRACK] = ACTIONS(266), + [anon_sym_declare] = ACTIONS(268), + [anon_sym_typeset] = ACTIONS(268), + [anon_sym_export] = ACTIONS(268), + [anon_sym_readonly] = ACTIONS(268), + [anon_sym_local] = ACTIONS(268), + [anon_sym_unset] = ACTIONS(270), + [anon_sym_unsetenv] = ACTIONS(270), + [anon_sym_AMP_GT] = ACTIONS(969), + [anon_sym_AMP_GT_GT] = ACTIONS(967), + [anon_sym_LT_AMP] = ACTIONS(967), + [anon_sym_GT_AMP] = ACTIONS(967), + [anon_sym_GT_PIPE] = ACTIONS(967), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(975), + [sym__special_character] = ACTIONS(977), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_raw_string] = ACTIONS(981), + [sym_ansi_c_string] = ACTIONS(981), + [aux_sym_number_token1] = ACTIONS(983), + [aux_sym_number_token2] = ACTIONS(985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(993), + [anon_sym_LT_LPAREN] = ACTIONS(995), + [anon_sym_GT_LPAREN] = ACTIONS(995), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1047), - [sym__concat] = ACTIONS(1049), - [sym__brace_start] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(997), + [sym_variable_name] = ACTIONS(300), + [sym_test_operator] = ACTIONS(999), + [sym__brace_start] = ACTIONS(1001), }, - [302] = { - [sym__expression] = STATE(1649), - [sym_binary_expression] = STATE(1706), - [sym_ternary_expression] = STATE(1706), - [sym_unary_expression] = STATE(1706), - [sym_postfix_expression] = STATE(1706), - [sym_parenthesized_expression] = STATE(1706), - [sym_arithmetic_expansion] = STATE(1441), - [sym_brace_expression] = STATE(1441), - [sym_concatenation] = STATE(1706), - [sym_string] = STATE(1441), - [sym_translated_string] = STATE(1441), - [sym_number] = STATE(1441), - [sym_simple_expansion] = STATE(1441), - [sym_expansion] = STATE(1441), - [sym_command_substitution] = STATE(1441), - [sym_process_substitution] = STATE(1441), - [aux_sym__literal_repeat1] = STATE(1488), - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_word] = ACTIONS(1029), - [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(350), - [anon_sym_GT_GT_EQ] = ACTIONS(350), - [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(350), - [anon_sym_GT_EQ] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1037), - [anon_sym_PLUS2] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS2] = ACTIONS(1039), - [anon_sym_DASH_DASH2] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), - [aux_sym_concatenation_token1] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(361), - [sym__special_character] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(365), - [sym_raw_string] = ACTIONS(1045), - [sym_ansi_c_string] = ACTIONS(1045), - [aux_sym_number_token1] = ACTIONS(369), - [aux_sym_number_token2] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), - [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), + [299] = { + [sym_redirected_statement] = STATE(2920), + [sym_for_statement] = STATE(2920), + [sym_c_style_for_statement] = STATE(2920), + [sym_while_statement] = STATE(2920), + [sym_if_statement] = STATE(2920), + [sym_case_statement] = STATE(2920), + [sym_function_definition] = STATE(2920), + [sym_compound_statement] = STATE(2920), + [sym_subshell] = STATE(2920), + [sym_pipeline] = STATE(2920), + [sym_list] = STATE(2920), + [sym_negated_command] = STATE(2920), + [sym_test_command] = STATE(2920), + [sym_declaration_command] = STATE(2920), + [sym_unset_command] = STATE(2920), + [sym_command] = STATE(2920), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(959), + [sym_variable_assignments] = STATE(2920), + [sym_subscript] = STATE(3972), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(1278), + [sym_brace_expression] = STATE(1278), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(1278), + [sym_translated_string] = STATE(1278), + [sym_number] = STATE(1278), + [sym_simple_expansion] = STATE(1278), + [sym_expansion] = STATE(1278), + [sym_command_substitution] = STATE(1278), + [sym_process_substitution] = STATE(1278), + [aux_sym_redirected_statement_repeat2] = STATE(3071), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), + [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(1009), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_typeset] = ACTIONS(1013), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_local] = ACTIONS(1013), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_AMP_GT] = ACTIONS(1007), + [anon_sym_AMP_GT_GT] = ACTIONS(1005), + [anon_sym_LT_AMP] = ACTIONS(1005), + [anon_sym_GT_AMP] = ACTIONS(1005), + [anon_sym_GT_PIPE] = ACTIONS(1005), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(1019), + [sym_ansi_c_string] = ACTIONS(1019), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1047), - [sym__concat] = ACTIONS(1053), - [sym__brace_start] = ACTIONS(385), + [sym_file_descriptor] = ACTIONS(1021), + [sym_variable_name] = ACTIONS(1023), + [sym_test_operator] = ACTIONS(1025), + [sym__brace_start] = ACTIONS(437), + }, + [300] = { + [sym_redirected_statement] = STATE(2958), + [sym_for_statement] = STATE(2958), + [sym_c_style_for_statement] = STATE(2958), + [sym_while_statement] = STATE(2958), + [sym_if_statement] = STATE(2958), + [sym_case_statement] = STATE(2958), + [sym_function_definition] = STATE(2958), + [sym_compound_statement] = STATE(2958), + [sym_subshell] = STATE(2958), + [sym_pipeline] = STATE(2958), + [sym_list] = STATE(2958), + [sym_negated_command] = STATE(2958), + [sym_test_command] = STATE(2958), + [sym_declaration_command] = STATE(2958), + [sym_unset_command] = STATE(2958), + [sym_command] = STATE(2958), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(960), + [sym_variable_assignments] = STATE(2958), + [sym_subscript] = STATE(3972), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(1278), + [sym_brace_expression] = STATE(1278), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(1278), + [sym_translated_string] = STATE(1278), + [sym_number] = STATE(1278), + [sym_simple_expansion] = STATE(1278), + [sym_expansion] = STATE(1278), + [sym_command_substitution] = STATE(1278), + [sym_process_substitution] = STATE(1278), + [aux_sym_redirected_statement_repeat2] = STATE(3071), + [aux_sym_command_repeat1] = STATE(877), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), + [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(1009), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_typeset] = ACTIONS(1013), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_readonly] = ACTIONS(1013), + [anon_sym_local] = ACTIONS(1013), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_AMP_GT] = ACTIONS(1007), + [anon_sym_AMP_GT_GT] = ACTIONS(1005), + [anon_sym_LT_AMP] = ACTIONS(1005), + [anon_sym_GT_AMP] = ACTIONS(1005), + [anon_sym_GT_PIPE] = ACTIONS(1005), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(1019), + [sym_ansi_c_string] = ACTIONS(1019), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(1021), + [sym_variable_name] = ACTIONS(1023), + [sym_test_operator] = ACTIONS(1025), + [sym__brace_start] = ACTIONS(437), + }, + [301] = { + [sym_redirected_statement] = STATE(2434), + [sym_for_statement] = STATE(2434), + [sym_c_style_for_statement] = STATE(2434), + [sym_while_statement] = STATE(2434), + [sym_if_statement] = STATE(2434), + [sym_case_statement] = STATE(2434), + [sym_function_definition] = STATE(2434), + [sym_compound_statement] = STATE(2434), + [sym_subshell] = STATE(2434), + [sym_pipeline] = STATE(2434), + [sym_list] = STATE(2434), + [sym_negated_command] = STATE(2434), + [sym_test_command] = STATE(2434), + [sym_declaration_command] = STATE(2434), + [sym_unset_command] = STATE(2434), + [sym_command] = STATE(2434), + [sym_command_name] = STATE(429), + [sym_variable_assignment] = STATE(555), + [sym_variable_assignments] = STATE(2434), + [sym_subscript] = STATE(4022), + [sym_file_redirect] = STATE(1139), + [sym_arithmetic_expansion] = STATE(586), + [sym_brace_expression] = STATE(586), + [sym_concatenation] = STATE(830), + [sym_string] = STATE(586), + [sym_translated_string] = STATE(586), + [sym_number] = STATE(586), + [sym_simple_expansion] = STATE(586), + [sym_expansion] = STATE(586), + [sym_command_substitution] = STATE(586), + [sym_process_substitution] = STATE(586), + [aux_sym_redirected_statement_repeat2] = STATE(2625), + [aux_sym_command_repeat1] = STATE(837), + [aux_sym__literal_repeat1] = STATE(707), + [sym_word] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_select] = ACTIONS(453), + [anon_sym_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(457), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_while] = ACTIONS(463), + [anon_sym_until] = ACTIONS(463), + [anon_sym_if] = ACTIONS(465), + [anon_sym_case] = ACTIONS(467), + [anon_sym_function] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(485), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_typeset] = ACTIONS(487), + [anon_sym_export] = ACTIONS(487), + [anon_sym_readonly] = ACTIONS(487), + [anon_sym_local] = ACTIONS(487), + [anon_sym_unset] = ACTIONS(489), + [anon_sym_unsetenv] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(457), + [anon_sym_LT_AMP] = ACTIONS(457), + [anon_sym_GT_AMP] = ACTIONS(457), + [anon_sym_GT_PIPE] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(491), + [sym__special_character] = ACTIONS(493), + [anon_sym_DQUOTE] = ACTIONS(495), + [sym_raw_string] = ACTIONS(497), + [sym_ansi_c_string] = ACTIONS(497), + [aux_sym_number_token1] = ACTIONS(499), + [aux_sym_number_token2] = ACTIONS(501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(505), + [anon_sym_BQUOTE] = ACTIONS(507), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(509), + [anon_sym_LT_LPAREN] = ACTIONS(511), + [anon_sym_GT_LPAREN] = ACTIONS(511), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(513), + [sym_variable_name] = ACTIONS(515), + [sym_test_operator] = ACTIONS(517), + [sym__brace_start] = ACTIONS(519), + }, + [302] = { + [sym_redirected_statement] = STATE(2543), + [sym_for_statement] = STATE(2543), + [sym_c_style_for_statement] = STATE(2543), + [sym_while_statement] = STATE(2543), + [sym_if_statement] = STATE(2543), + [sym_case_statement] = STATE(2543), + [sym_function_definition] = STATE(2543), + [sym_compound_statement] = STATE(2543), + [sym_subshell] = STATE(2543), + [sym_pipeline] = STATE(2543), + [sym_list] = STATE(2543), + [sym_negated_command] = STATE(2543), + [sym_test_command] = STATE(2543), + [sym_declaration_command] = STATE(2543), + [sym_unset_command] = STATE(2543), + [sym_command] = STATE(2543), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(592), + [sym_variable_assignments] = STATE(2543), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), }, [303] = { - [sym__expression] = STATE(1649), - [sym_binary_expression] = STATE(1706), - [sym_ternary_expression] = STATE(1706), - [sym_unary_expression] = STATE(1706), - [sym_postfix_expression] = STATE(1706), - [sym_parenthesized_expression] = STATE(1706), - [sym_arithmetic_expansion] = STATE(1441), - [sym_brace_expression] = STATE(1441), - [sym_concatenation] = STATE(1706), - [sym_string] = STATE(1441), - [sym_translated_string] = STATE(1441), - [sym_number] = STATE(1441), - [sym_simple_expansion] = STATE(1441), - [sym_expansion] = STATE(1441), - [sym_command_substitution] = STATE(1441), - [sym_process_substitution] = STATE(1441), - [aux_sym__literal_repeat1] = STATE(1488), - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_word] = ACTIONS(1029), - [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [sym_redirected_statement] = STATE(2626), + [sym_for_statement] = STATE(2626), + [sym_c_style_for_statement] = STATE(2626), + [sym_while_statement] = STATE(2626), + [sym_if_statement] = STATE(2626), + [sym_case_statement] = STATE(2626), + [sym_function_definition] = STATE(2626), + [sym_compound_statement] = STATE(2626), + [sym_subshell] = STATE(2626), + [sym_pipeline] = STATE(2626), + [sym_list] = STATE(2626), + [sym_negated_command] = STATE(2626), + [sym_test_command] = STATE(2626), + [sym_declaration_command] = STATE(2626), + [sym_unset_command] = STATE(2626), + [sym_command] = STATE(2626), + [sym_command_name] = STATE(456), + [sym_variable_assignment] = STATE(593), + [sym_variable_assignments] = STATE(2626), + [sym_subscript] = STATE(3939), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(718), + [sym_brace_expression] = STATE(718), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(718), + [sym_translated_string] = STATE(718), + [sym_number] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [aux_sym_redirected_statement_repeat2] = STATE(2791), + [aux_sym_command_repeat1] = STATE(808), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(767), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(81), + [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(85), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(89), + [anon_sym_typeset] = ACTIONS(89), + [anon_sym_export] = ACTIONS(89), + [anon_sym_readonly] = ACTIONS(89), + [anon_sym_local] = ACTIONS(89), + [anon_sym_unset] = ACTIONS(91), + [anon_sym_unsetenv] = ACTIONS(91), + [anon_sym_AMP_GT] = ACTIONS(81), + [anon_sym_AMP_GT_GT] = ACTIONS(79), + [anon_sym_LT_AMP] = ACTIONS(79), + [anon_sym_GT_AMP] = ACTIONS(79), + [anon_sym_GT_PIPE] = ACTIONS(79), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(777), + [sym_ansi_c_string] = ACTIONS(777), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(119), + [sym_variable_name] = ACTIONS(121), + [sym_test_operator] = ACTIONS(779), + [sym__brace_start] = ACTIONS(437), + }, + [304] = { + [sym_redirected_statement] = STATE(2729), + [sym_for_statement] = STATE(2729), + [sym_c_style_for_statement] = STATE(2729), + [sym_while_statement] = STATE(2729), + [sym_if_statement] = STATE(2729), + [sym_case_statement] = STATE(2729), + [sym_function_definition] = STATE(2729), + [sym_compound_statement] = STATE(2729), + [sym_subshell] = STATE(2729), + [sym_pipeline] = STATE(2729), + [sym_list] = STATE(2729), + [sym_negated_command] = STATE(2729), + [sym_test_command] = STATE(2729), + [sym_declaration_command] = STATE(2729), + [sym_unset_command] = STATE(2729), + [sym_command] = STATE(2729), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(607), + [sym_variable_assignments] = STATE(2729), + [sym_subscript] = STATE(3995), + [sym_file_redirect] = STATE(1374), + [sym_arithmetic_expansion] = STATE(809), + [sym_brace_expression] = STATE(809), + [sym_concatenation] = STATE(1134), + [sym_string] = STATE(809), + [sym_translated_string] = STATE(809), + [sym_number] = STATE(809), + [sym_simple_expansion] = STATE(809), + [sym_expansion] = STATE(809), + [sym_command_substitution] = STATE(809), + [sym_process_substitution] = STATE(809), + [aux_sym_redirected_statement_repeat2] = STATE(2879), + [aux_sym_command_repeat1] = STATE(814), + [aux_sym__literal_repeat1] = STATE(1044), + [sym_word] = ACTIONS(387), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [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(401), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(405), + [anon_sym_typeset] = ACTIONS(405), + [anon_sym_export] = ACTIONS(405), + [anon_sym_readonly] = ACTIONS(405), + [anon_sym_local] = ACTIONS(405), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_AMP_GT] = ACTIONS(393), + [anon_sym_AMP_GT_GT] = ACTIONS(391), + [anon_sym_LT_AMP] = ACTIONS(391), + [anon_sym_GT_AMP] = ACTIONS(391), + [anon_sym_GT_PIPE] = ACTIONS(391), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(389), + [anon_sym_DOLLAR] = ACTIONS(409), + [sym__special_character] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [sym_raw_string] = ACTIONS(415), + [sym_ansi_c_string] = ACTIONS(415), + [aux_sym_number_token1] = ACTIONS(417), + [aux_sym_number_token2] = ACTIONS(419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(427), + [anon_sym_LT_LPAREN] = ACTIONS(429), + [anon_sym_GT_LPAREN] = ACTIONS(429), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(431), + [sym_variable_name] = ACTIONS(433), + [sym_test_operator] = ACTIONS(435), + [sym__brace_start] = ACTIONS(437), + }, + [305] = { + [sym_redirected_statement] = STATE(2601), + [sym_for_statement] = STATE(2601), + [sym_c_style_for_statement] = STATE(2601), + [sym_while_statement] = STATE(2601), + [sym_if_statement] = STATE(2601), + [sym_case_statement] = STATE(2601), + [sym_function_definition] = STATE(2601), + [sym_compound_statement] = STATE(2601), + [sym_subshell] = STATE(2601), + [sym_pipeline] = STATE(2601), + [sym_list] = STATE(2601), + [sym_negated_command] = STATE(2601), + [sym_test_command] = STATE(2601), + [sym_declaration_command] = STATE(2601), + [sym_unset_command] = STATE(2601), + [sym_command] = STATE(2601), + [sym_command_name] = STATE(462), + [sym_variable_assignment] = STATE(578), + [sym_variable_assignments] = STATE(2601), + [sym_subscript] = STATE(3947), + [sym_file_redirect] = STATE(1379), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym_redirected_statement_repeat2] = STATE(2827), + [aux_sym_command_repeat1] = STATE(865), + [aux_sym__literal_repeat1] = STATE(930), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_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(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym__special_character] = ACTIONS(43), + [anon_sym_DQUOTE] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [sym_ansi_c_string] = ACTIONS(47), + [aux_sym_number_token1] = ACTIONS(49), + [aux_sym_number_token2] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), + [anon_sym_LT_LPAREN] = ACTIONS(61), + [anon_sym_GT_LPAREN] = ACTIONS(61), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(65), + [sym_variable_name] = ACTIONS(67), + [sym_test_operator] = ACTIONS(69), + [sym__brace_start] = ACTIONS(71), + }, + [306] = { + [sym_redirected_statement] = STATE(2613), + [sym_for_statement] = STATE(2613), + [sym_c_style_for_statement] = STATE(2613), + [sym_while_statement] = STATE(2613), + [sym_if_statement] = STATE(2613), + [sym_case_statement] = STATE(2613), + [sym_function_definition] = STATE(2613), + [sym_compound_statement] = STATE(2613), + [sym_subshell] = STATE(2613), + [sym_pipeline] = STATE(2613), + [sym_list] = STATE(2613), + [sym_negated_command] = STATE(2613), + [sym_test_command] = STATE(2613), + [sym_declaration_command] = STATE(2613), + [sym_unset_command] = STATE(2613), + [sym_command] = STATE(2613), + [sym_command_name] = STATE(462), + [sym_variable_assignment] = STATE(577), + [sym_variable_assignments] = STATE(2613), + [sym_subscript] = STATE(3947), + [sym_file_redirect] = STATE(1379), + [sym_arithmetic_expansion] = STATE(720), + [sym_brace_expression] = STATE(720), + [sym_concatenation] = STATE(1159), + [sym_string] = STATE(720), + [sym_translated_string] = STATE(720), + [sym_number] = STATE(720), + [sym_simple_expansion] = STATE(720), + [sym_expansion] = STATE(720), + [sym_command_substitution] = STATE(720), + [sym_process_substitution] = STATE(720), + [aux_sym_redirected_statement_repeat2] = STATE(2827), + [aux_sym_command_repeat1] = STATE(865), + [aux_sym__literal_repeat1] = STATE(930), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_GT_GT] = ACTIONS(15), + [anon_sym_LT] = ACTIONS(17), + [anon_sym_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(17), + [anon_sym_AMP_GT_GT] = ACTIONS(15), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(15), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_DOLLAR] = ACTIONS(41), + [sym__special_character] = ACTIONS(43), + [anon_sym_DQUOTE] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [sym_ansi_c_string] = ACTIONS(47), + [aux_sym_number_token1] = ACTIONS(49), + [aux_sym_number_token2] = ACTIONS(51), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(53), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(55), + [anon_sym_BQUOTE] = ACTIONS(57), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(59), + [anon_sym_LT_LPAREN] = ACTIONS(61), + [anon_sym_GT_LPAREN] = ACTIONS(61), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(65), + [sym_variable_name] = ACTIONS(67), + [sym_test_operator] = ACTIONS(69), + [sym__brace_start] = ACTIONS(71), + }, + [307] = { + [sym__expression] = STATE(1813), + [sym_binary_expression] = STATE(1763), + [sym_ternary_expression] = STATE(1763), + [sym_unary_expression] = STATE(1763), + [sym_postfix_expression] = STATE(1763), + [sym_parenthesized_expression] = STATE(1763), + [sym_arithmetic_expansion] = STATE(1439), + [sym_brace_expression] = STATE(1439), + [sym_concatenation] = STATE(1763), + [sym_string] = STATE(1439), + [sym_translated_string] = STATE(1439), + [sym_number] = STATE(1439), + [sym_simple_expansion] = STATE(1439), + [sym_expansion] = STATE(1439), + [sym_command_substitution] = STATE(1439), + [sym_process_substitution] = STATE(1439), + [aux_sym__literal_repeat1] = STATE(1420), + [aux_sym_concatenation_repeat1] = STATE(1493), + [sym_word] = ACTIONS(308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_RBRACK] = ACTIONS(1055), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1037), - [anon_sym_PLUS2] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS2] = ACTIONS(1039), - [anon_sym_DASH_DASH2] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), - [aux_sym_concatenation_token1] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(361), - [sym__special_character] = ACTIONS(1043), - [anon_sym_DQUOTE] = ACTIONS(365), - [sym_raw_string] = ACTIONS(1045), - [sym_ansi_c_string] = ACTIONS(1045), - [aux_sym_number_token1] = ACTIONS(369), - [aux_sym_number_token2] = ACTIONS(371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), - [anon_sym_BQUOTE] = ACTIONS(377), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), - [anon_sym_LT_LPAREN] = ACTIONS(381), - [anon_sym_GT_LPAREN] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(312), + [anon_sym_RPAREN] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(314), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(151), + [anon_sym_PLUS2] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(153), + [anon_sym_PLUS_PLUS2] = ACTIONS(153), + [anon_sym_DASH_DASH2] = ACTIONS(153), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1027), + [aux_sym_concatenation_token1] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(318), + [sym__special_character] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1035), + [sym_ansi_c_string] = ACTIONS(1035), + [aux_sym_number_token1] = ACTIONS(324), + [aux_sym_number_token2] = ACTIONS(326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1047), - [sym__concat] = ACTIONS(1057), - [sym__brace_start] = ACTIONS(385), + [sym__concat] = ACTIONS(1029), + [sym_test_operator] = ACTIONS(340), + [sym__brace_start] = ACTIONS(342), }, - [304] = { - [sym__expression] = STATE(1649), - [sym_binary_expression] = STATE(1706), - [sym_ternary_expression] = STATE(1706), - [sym_unary_expression] = STATE(1706), - [sym_postfix_expression] = STATE(1706), - [sym_parenthesized_expression] = STATE(1706), - [sym_arithmetic_expansion] = STATE(1441), - [sym_brace_expression] = STATE(1441), - [sym_concatenation] = STATE(1706), - [sym_string] = STATE(1441), - [sym_translated_string] = STATE(1441), - [sym_number] = STATE(1441), - [sym_simple_expansion] = STATE(1441), - [sym_expansion] = STATE(1441), - [sym_command_substitution] = STATE(1441), - [sym_process_substitution] = STATE(1441), - [aux_sym__literal_repeat1] = STATE(1488), - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_word] = ACTIONS(1029), + [308] = { + [sym__expression] = STATE(1694), + [sym_binary_expression] = STATE(1715), + [sym_ternary_expression] = STATE(1715), + [sym_unary_expression] = STATE(1715), + [sym_postfix_expression] = STATE(1715), + [sym_parenthesized_expression] = STATE(1715), + [sym_arithmetic_expansion] = STATE(1419), + [sym_brace_expression] = STATE(1419), + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(1419), + [sym_translated_string] = STATE(1419), + [sym_number] = STATE(1419), + [sym_simple_expansion] = STATE(1419), + [sym_expansion] = STATE(1419), + [sym_command_substitution] = STATE(1419), + [sym_process_substitution] = STATE(1419), + [aux_sym__literal_repeat1] = STATE(1498), + [aux_sym_concatenation_repeat1] = STATE(1515), + [sym_word] = ACTIONS(1043), [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_RBRACK] = ACTIONS(350), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1037), - [anon_sym_PLUS2] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS2] = ACTIONS(1039), - [anon_sym_DASH_DASH2] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1049), + [anon_sym_PLUS2] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_PLUS_PLUS2] = ACTIONS(1051), + [anon_sym_DASH_DASH2] = ACTIONS(1051), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), - [aux_sym_concatenation_token1] = ACTIONS(1041), + [aux_sym_concatenation_token1] = ACTIONS(1053), [anon_sym_DOLLAR] = ACTIONS(361), - [sym__special_character] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1055), [anon_sym_DQUOTE] = ACTIONS(365), - [sym_raw_string] = ACTIONS(1045), - [sym_ansi_c_string] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1057), + [sym_ansi_c_string] = ACTIONS(1057), [aux_sym_number_token1] = ACTIONS(369), [aux_sym_number_token2] = ACTIONS(371), [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), @@ -46834,163 +47145,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(381), [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1047), [sym__concat] = ACTIONS(350), + [sym_test_operator] = ACTIONS(1059), [sym__brace_start] = ACTIONS(385), }, - [305] = { - [sym__expression] = STATE(1776), - [sym_binary_expression] = STATE(1795), - [sym_ternary_expression] = STATE(1795), - [sym_unary_expression] = STATE(1795), - [sym_postfix_expression] = STATE(1795), - [sym_parenthesized_expression] = STATE(1795), - [sym_arithmetic_expansion] = STATE(1422), - [sym_brace_expression] = STATE(1422), - [sym_concatenation] = STATE(1795), - [sym_string] = STATE(1422), - [sym_translated_string] = STATE(1422), - [sym_number] = STATE(1422), - [sym_simple_expansion] = STATE(1422), - [sym_expansion] = STATE(1422), - [sym_command_substitution] = STATE(1422), - [sym_process_substitution] = STATE(1422), - [aux_sym__literal_repeat1] = STATE(1439), - [aux_sym_concatenation_repeat1] = STATE(1510), - [sym_word] = ACTIONS(308), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [309] = { + [sym__expression] = STATE(1799), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(1416), + [sym_brace_expression] = STATE(1416), + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(1416), + [sym_translated_string] = STATE(1416), + [sym_number] = STATE(1416), + [sym_simple_expansion] = STATE(1416), + [sym_expansion] = STATE(1416), + [sym_command_substitution] = STATE(1416), + [sym_process_substitution] = STATE(1416), + [aux_sym__literal_repeat1] = STATE(1420), + [aux_sym_concatenation_repeat1] = STATE(1469), + [sym_word] = ACTIONS(1061), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(312), - [anon_sym_RPAREN] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(314), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(151), - [anon_sym_PLUS2] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(153), - [anon_sym_PLUS_PLUS2] = ACTIONS(153), - [anon_sym_DASH_DASH2] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1059), - [aux_sym_concatenation_token1] = ACTIONS(1061), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_COLON] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1065), + [anon_sym_PLUS2] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1067), + [anon_sym_PLUS_PLUS2] = ACTIONS(1067), + [anon_sym_DASH_DASH2] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1027), + [aux_sym_concatenation_token1] = ACTIONS(1029), [anon_sym_DOLLAR] = ACTIONS(318), - [sym__special_character] = ACTIONS(1063), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1067), - [sym_ansi_c_string] = ACTIONS(1067), + [sym__special_character] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1071), + [sym_ansi_c_string] = ACTIONS(1071), [aux_sym_number_token1] = ACTIONS(324), [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [anon_sym_GT_LPAREN] = ACTIONS(1073), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1075), - [sym__concat] = ACTIONS(1061), + [sym__concat] = ACTIONS(1029), + [sym_test_operator] = ACTIONS(1073), [sym__brace_start] = ACTIONS(342), }, - [306] = { - [sym__expression] = STATE(1649), - [sym_binary_expression] = STATE(1706), - [sym_ternary_expression] = STATE(1706), - [sym_unary_expression] = STATE(1706), - [sym_postfix_expression] = STATE(1706), - [sym_parenthesized_expression] = STATE(1706), - [sym_arithmetic_expansion] = STATE(1441), - [sym_brace_expression] = STATE(1441), - [sym_concatenation] = STATE(1706), - [sym_string] = STATE(1441), - [sym_translated_string] = STATE(1441), - [sym_number] = STATE(1441), - [sym_simple_expansion] = STATE(1441), - [sym_expansion] = STATE(1441), - [sym_command_substitution] = STATE(1441), - [sym_process_substitution] = STATE(1441), - [aux_sym__literal_repeat1] = STATE(1488), - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_word] = ACTIONS(1029), + [310] = { + [sym__expression] = STATE(1694), + [sym_binary_expression] = STATE(1715), + [sym_ternary_expression] = STATE(1715), + [sym_unary_expression] = STATE(1715), + [sym_postfix_expression] = STATE(1715), + [sym_parenthesized_expression] = STATE(1715), + [sym_arithmetic_expansion] = STATE(1419), + [sym_brace_expression] = STATE(1419), + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(1419), + [sym_translated_string] = STATE(1419), + [sym_number] = STATE(1419), + [sym_simple_expansion] = STATE(1419), + [sym_expansion] = STATE(1419), + [sym_command_substitution] = STATE(1419), + [sym_process_substitution] = STATE(1419), + [aux_sym__literal_repeat1] = STATE(1498), + [aux_sym_concatenation_repeat1] = STATE(1515), + [sym_word] = ACTIONS(1043), [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_RBRACK] = ACTIONS(1077), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1037), - [anon_sym_PLUS2] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS2] = ACTIONS(1039), - [anon_sym_DASH_DASH2] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1075), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1049), + [anon_sym_PLUS2] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_PLUS_PLUS2] = ACTIONS(1051), + [anon_sym_DASH_DASH2] = ACTIONS(1051), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), - [aux_sym_concatenation_token1] = ACTIONS(1041), + [aux_sym_concatenation_token1] = ACTIONS(1053), [anon_sym_DOLLAR] = ACTIONS(361), - [sym__special_character] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1055), [anon_sym_DQUOTE] = ACTIONS(365), - [sym_raw_string] = ACTIONS(1045), - [sym_ansi_c_string] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1057), + [sym_ansi_c_string] = ACTIONS(1057), [aux_sym_number_token1] = ACTIONS(369), [aux_sym_number_token2] = ACTIONS(371), [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), @@ -47000,163 +47311,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(381), [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1047), - [sym__concat] = ACTIONS(1079), + [sym__concat] = ACTIONS(1077), + [sym_test_operator] = ACTIONS(1059), [sym__brace_start] = ACTIONS(385), }, - [307] = { - [sym__expression] = STATE(1762), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(1491), - [sym_brace_expression] = STATE(1491), - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(1491), - [sym_translated_string] = STATE(1491), - [sym_number] = STATE(1491), - [sym_simple_expansion] = STATE(1491), - [sym_expansion] = STATE(1491), - [sym_command_substitution] = STATE(1491), - [sym_process_substitution] = STATE(1491), - [aux_sym__literal_repeat1] = STATE(1485), - [aux_sym_concatenation_repeat1] = STATE(1416), - [sym_word] = ACTIONS(183), - [anon_sym_LPAREN_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN_RPAREN] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [311] = { + [sym__expression] = STATE(1694), + [sym_binary_expression] = STATE(1715), + [sym_ternary_expression] = STATE(1715), + [sym_unary_expression] = STATE(1715), + [sym_postfix_expression] = STATE(1715), + [sym_parenthesized_expression] = STATE(1715), + [sym_arithmetic_expansion] = STATE(1419), + [sym_brace_expression] = STATE(1419), + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(1419), + [sym_translated_string] = STATE(1419), + [sym_number] = STATE(1419), + [sym_simple_expansion] = STATE(1419), + [sym_expansion] = STATE(1419), + [sym_command_substitution] = STATE(1419), + [sym_process_substitution] = STATE(1419), + [aux_sym__literal_repeat1] = STATE(1498), + [aux_sym_concatenation_repeat1] = STATE(1515), + [sym_word] = ACTIONS(1043), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(196), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(93), - [anon_sym_PLUS2] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(95), - [anon_sym_PLUS_PLUS2] = ACTIONS(95), - [anon_sym_DASH_DASH2] = ACTIONS(95), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(987), - [aux_sym_concatenation_token1] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(200), - [sym__special_character] = ACTIONS(1081), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym_raw_string] = ACTIONS(1083), - [sym_ansi_c_string] = ACTIONS(1083), - [aux_sym_number_token1] = ACTIONS(206), - [aux_sym_number_token2] = ACTIONS(208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(997), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(999), - [anon_sym_LT_LPAREN] = ACTIONS(1001), - [anon_sym_GT_LPAREN] = ACTIONS(1001), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1079), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1049), + [anon_sym_PLUS2] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_PLUS_PLUS2] = ACTIONS(1051), + [anon_sym_DASH_DASH2] = ACTIONS(1051), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1057), + [sym_ansi_c_string] = ACTIONS(1057), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1085), - [sym__concat] = ACTIONS(989), - [sym__brace_start] = ACTIONS(226), + [sym__concat] = ACTIONS(1081), + [sym_test_operator] = ACTIONS(1059), + [sym__brace_start] = ACTIONS(385), }, - [308] = { - [sym__expression] = STATE(1649), - [sym_binary_expression] = STATE(1706), - [sym_ternary_expression] = STATE(1706), - [sym_unary_expression] = STATE(1706), - [sym_postfix_expression] = STATE(1706), - [sym_parenthesized_expression] = STATE(1706), - [sym_arithmetic_expansion] = STATE(1441), - [sym_brace_expression] = STATE(1441), - [sym_concatenation] = STATE(1706), - [sym_string] = STATE(1441), - [sym_translated_string] = STATE(1441), - [sym_number] = STATE(1441), - [sym_simple_expansion] = STATE(1441), - [sym_expansion] = STATE(1441), - [sym_command_substitution] = STATE(1441), - [sym_process_substitution] = STATE(1441), - [aux_sym__literal_repeat1] = STATE(1488), - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_word] = ACTIONS(1029), + [312] = { + [sym__expression] = STATE(1694), + [sym_binary_expression] = STATE(1715), + [sym_ternary_expression] = STATE(1715), + [sym_unary_expression] = STATE(1715), + [sym_postfix_expression] = STATE(1715), + [sym_parenthesized_expression] = STATE(1715), + [sym_arithmetic_expansion] = STATE(1419), + [sym_brace_expression] = STATE(1419), + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(1419), + [sym_translated_string] = STATE(1419), + [sym_number] = STATE(1419), + [sym_simple_expansion] = STATE(1419), + [sym_expansion] = STATE(1419), + [sym_command_substitution] = STATE(1419), + [sym_process_substitution] = STATE(1419), + [aux_sym__literal_repeat1] = STATE(1498), + [aux_sym_concatenation_repeat1] = STATE(1515), + [sym_word] = ACTIONS(1043), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1083), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1049), + [anon_sym_PLUS2] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_PLUS_PLUS2] = ACTIONS(1051), + [anon_sym_DASH_DASH2] = ACTIONS(1051), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1057), + [sym_ansi_c_string] = ACTIONS(1057), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), + [sym_comment] = ACTIONS(63), + [sym__concat] = ACTIONS(1085), + [sym_test_operator] = ACTIONS(1059), + [sym__brace_start] = ACTIONS(385), + }, + [313] = { + [sym__expression] = STATE(1694), + [sym_binary_expression] = STATE(1715), + [sym_ternary_expression] = STATE(1715), + [sym_unary_expression] = STATE(1715), + [sym_postfix_expression] = STATE(1715), + [sym_parenthesized_expression] = STATE(1715), + [sym_arithmetic_expansion] = STATE(1419), + [sym_brace_expression] = STATE(1419), + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(1419), + [sym_translated_string] = STATE(1419), + [sym_number] = STATE(1419), + [sym_simple_expansion] = STATE(1419), + [sym_expansion] = STATE(1419), + [sym_command_substitution] = STATE(1419), + [sym_process_substitution] = STATE(1419), + [aux_sym__literal_repeat1] = STATE(1498), + [aux_sym_concatenation_repeat1] = STATE(1515), + [sym_word] = ACTIONS(1043), [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1047), [anon_sym_RBRACK] = ACTIONS(1087), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1037), - [anon_sym_PLUS2] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1039), - [anon_sym_PLUS_PLUS2] = ACTIONS(1039), - [anon_sym_DASH_DASH2] = ACTIONS(1039), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1049), + [anon_sym_PLUS2] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_PLUS_PLUS2] = ACTIONS(1051), + [anon_sym_DASH_DASH2] = ACTIONS(1051), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), - [aux_sym_concatenation_token1] = ACTIONS(1041), + [aux_sym_concatenation_token1] = ACTIONS(1053), [anon_sym_DOLLAR] = ACTIONS(361), - [sym__special_character] = ACTIONS(1043), + [sym__special_character] = ACTIONS(1055), [anon_sym_DQUOTE] = ACTIONS(365), - [sym_raw_string] = ACTIONS(1045), - [sym_ansi_c_string] = ACTIONS(1045), + [sym_raw_string] = ACTIONS(1057), + [sym_ansi_c_string] = ACTIONS(1057), [aux_sym_number_token1] = ACTIONS(369), [aux_sym_number_token2] = ACTIONS(371), [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), @@ -47166,75 +47560,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(381), [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1047), [sym__concat] = ACTIONS(1089), + [sym_test_operator] = ACTIONS(1059), [sym__brace_start] = ACTIONS(385), }, - [309] = { - [sym__expression] = STATE(1794), - [sym_binary_expression] = STATE(1755), - [sym_ternary_expression] = STATE(1755), - [sym_unary_expression] = STATE(1755), - [sym_postfix_expression] = STATE(1755), - [sym_parenthesized_expression] = STATE(1755), - [sym_arithmetic_expansion] = STATE(1428), - [sym_brace_expression] = STATE(1428), - [sym_concatenation] = STATE(1755), - [sym_string] = STATE(1428), - [sym_translated_string] = STATE(1428), - [sym_number] = STATE(1428), - [sym_simple_expansion] = STATE(1428), - [sym_expansion] = STATE(1428), - [sym_command_substitution] = STATE(1428), - [sym_process_substitution] = STATE(1428), - [aux_sym__literal_repeat1] = STATE(1596), - [aux_sym_concatenation_repeat1] = STATE(1440), + [314] = { + [sym__expression] = STATE(1783), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(1499), + [sym_brace_expression] = STATE(1499), + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(1499), + [sym_translated_string] = STATE(1499), + [sym_number] = STATE(1499), + [sym_simple_expansion] = STATE(1499), + [sym_expansion] = STATE(1499), + [sym_command_substitution] = STATE(1499), + [sym_process_substitution] = STATE(1499), + [aux_sym__literal_repeat1] = STATE(1458), + [aux_sym_concatenation_repeat1] = STATE(1443), + [sym_word] = ACTIONS(228), + [anon_sym_LPAREN_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN_RPAREN] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(350), + [anon_sym_GT_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_EQ] = ACTIONS(350), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(350), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(350), + [anon_sym_GT_EQ] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(230), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(133), + [anon_sym_PLUS2] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS_PLUS2] = ACTIONS(135), + [anon_sym_DASH_DASH2] = ACTIONS(135), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(947), + [aux_sym_concatenation_token1] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(198), + [sym__special_character] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(953), + [sym_raw_string] = ACTIONS(1093), + [sym_ansi_c_string] = ACTIONS(1093), + [aux_sym_number_token1] = ACTIONS(204), + [aux_sym_number_token2] = ACTIONS(206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(212), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(959), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_comment] = ACTIONS(63), + [sym__concat] = ACTIONS(949), + [sym_test_operator] = ACTIONS(234), + [sym__brace_start] = ACTIONS(224), + }, + [315] = { + [sym__expression] = STATE(1819), + [sym_binary_expression] = STATE(1773), + [sym_ternary_expression] = STATE(1773), + [sym_unary_expression] = STATE(1773), + [sym_postfix_expression] = STATE(1773), + [sym_parenthesized_expression] = STATE(1773), + [sym_arithmetic_expansion] = STATE(1521), + [sym_brace_expression] = STATE(1521), + [sym_concatenation] = STATE(1773), + [sym_string] = STATE(1521), + [sym_translated_string] = STATE(1521), + [sym_number] = STATE(1521), + [sym_simple_expansion] = STATE(1521), + [sym_expansion] = STATE(1521), + [sym_command_substitution] = STATE(1521), + [sym_process_substitution] = STATE(1521), + [aux_sym__literal_repeat1] = STATE(1550), + [aux_sym_concatenation_repeat1] = STATE(1404), [sym_word] = ACTIONS(346), [anon_sym_LPAREN_LPAREN] = ACTIONS(348), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(185), [anon_sym_BANG] = ACTIONS(357), [anon_sym_RBRACK] = ACTIONS(350), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), [anon_sym_DASH2] = ACTIONS(272), [anon_sym_PLUS2] = ACTIONS(272), [anon_sym_TILDE] = ACTIONS(274), [anon_sym_PLUS_PLUS2] = ACTIONS(274), [anon_sym_DASH_DASH2] = ACTIONS(274), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), - [aux_sym_concatenation_token1] = ACTIONS(1041), + [aux_sym_concatenation_token1] = ACTIONS(1053), [anon_sym_DOLLAR] = ACTIONS(361), [sym__special_character] = ACTIONS(363), [anon_sym_DQUOTE] = ACTIONS(365), @@ -47249,7073 +47726,7005 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(381), [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), + [sym__concat] = ACTIONS(1053), [sym_test_operator] = ACTIONS(383), - [sym__concat] = ACTIONS(1041), [sym__brace_start] = ACTIONS(385), }, - [310] = { - [sym__expression] = STATE(1802), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(1436), - [sym_brace_expression] = STATE(1436), - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(1436), - [sym_translated_string] = STATE(1436), - [sym_number] = STATE(1436), - [sym_simple_expansion] = STATE(1436), - [sym_expansion] = STATE(1436), - [sym_command_substitution] = STATE(1436), - [sym_process_substitution] = STATE(1436), - [aux_sym__literal_repeat1] = STATE(1587), - [aux_sym_concatenation_repeat1] = STATE(1448), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [316] = { + [sym__expression] = STATE(1775), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(1406), + [sym_brace_expression] = STATE(1406), + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(1406), + [sym_translated_string] = STATE(1406), + [sym_number] = STATE(1406), + [sym_simple_expansion] = STATE(1406), + [sym_expansion] = STATE(1406), + [sym_command_substitution] = STATE(1406), + [sym_process_substitution] = STATE(1406), + [aux_sym__literal_repeat1] = STATE(1571), + [aux_sym_concatenation_repeat1] = STATE(1418), + [sym_word] = ACTIONS(1095), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1097), [anon_sym_RBRACK_RBRACK] = ACTIONS(350), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1095), - [anon_sym_PLUS2] = ACTIONS(1095), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_PLUS_PLUS2] = ACTIONS(1097), - [anon_sym_DASH_DASH2] = ACTIONS(1097), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1059), - [aux_sym_concatenation_token1] = ACTIONS(1061), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1099), + [anon_sym_PLUS2] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_PLUS_PLUS2] = ACTIONS(1101), + [anon_sym_DASH_DASH2] = ACTIONS(1101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1027), + [aux_sym_concatenation_token1] = ACTIONS(1029), [anon_sym_DOLLAR] = ACTIONS(318), - [sym__special_character] = ACTIONS(1099), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1101), - [sym_ansi_c_string] = ACTIONS(1101), + [sym__special_character] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1105), + [sym_ansi_c_string] = ACTIONS(1105), [aux_sym_number_token1] = ACTIONS(324), [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [anon_sym_GT_LPAREN] = ACTIONS(1073), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1103), - [sym__concat] = ACTIONS(1061), + [sym__concat] = ACTIONS(1029), + [sym_test_operator] = ACTIONS(1107), [sym__brace_start] = ACTIONS(342), }, - [311] = { - [sym__expression] = STATE(1782), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(1446), - [sym_brace_expression] = STATE(1446), - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(1446), - [sym_translated_string] = STATE(1446), - [sym_number] = STATE(1446), - [sym_simple_expansion] = STATE(1446), - [sym_expansion] = STATE(1446), - [sym_command_substitution] = STATE(1446), - [sym_process_substitution] = STATE(1446), - [aux_sym__literal_repeat1] = STATE(1439), - [aux_sym_concatenation_repeat1] = STATE(1492), - [sym_word] = ACTIONS(1105), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [317] = { + [sym__expression] = STATE(1694), + [sym_binary_expression] = STATE(1715), + [sym_ternary_expression] = STATE(1715), + [sym_unary_expression] = STATE(1715), + [sym_postfix_expression] = STATE(1715), + [sym_parenthesized_expression] = STATE(1715), + [sym_arithmetic_expansion] = STATE(1419), + [sym_brace_expression] = STATE(1419), + [sym_concatenation] = STATE(1715), + [sym_string] = STATE(1419), + [sym_translated_string] = STATE(1419), + [sym_number] = STATE(1419), + [sym_simple_expansion] = STATE(1419), + [sym_expansion] = STATE(1419), + [sym_command_substitution] = STATE(1419), + [sym_process_substitution] = STATE(1419), + [aux_sym__literal_repeat1] = STATE(1498), + [aux_sym_concatenation_repeat1] = STATE(1515), + [sym_word] = ACTIONS(1043), + [anon_sym_LPAREN_LPAREN] = ACTIONS(348), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1109), - [anon_sym_PLUS2] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1111), - [anon_sym_PLUS_PLUS2] = ACTIONS(1111), - [anon_sym_DASH_DASH2] = ACTIONS(1111), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1059), - [aux_sym_concatenation_token1] = ACTIONS(1061), - [anon_sym_DOLLAR] = ACTIONS(318), - [sym__special_character] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1115), - [sym_ansi_c_string] = ACTIONS(1115), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [anon_sym_GT_LPAREN] = ACTIONS(1073), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1109), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1049), + [anon_sym_PLUS2] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1051), + [anon_sym_PLUS_PLUS2] = ACTIONS(1051), + [anon_sym_DASH_DASH2] = ACTIONS(1051), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(348), + [aux_sym_concatenation_token1] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym__special_character] = ACTIONS(1055), + [anon_sym_DQUOTE] = ACTIONS(365), + [sym_raw_string] = ACTIONS(1057), + [sym_ansi_c_string] = ACTIONS(1057), + [aux_sym_number_token1] = ACTIONS(369), + [aux_sym_number_token2] = ACTIONS(371), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(373), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(375), + [anon_sym_BQUOTE] = ACTIONS(377), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(379), + [anon_sym_LT_LPAREN] = ACTIONS(381), + [anon_sym_GT_LPAREN] = ACTIONS(381), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1117), - [sym__concat] = ACTIONS(1061), - [sym__brace_start] = ACTIONS(342), + [sym__concat] = ACTIONS(1111), + [sym_test_operator] = ACTIONS(1059), + [sym__brace_start] = ACTIONS(385), }, - [312] = { - [sym__expression] = STATE(1855), - [sym_binary_expression] = STATE(1418), - [sym_ternary_expression] = STATE(1418), - [sym_unary_expression] = STATE(1418), - [sym_postfix_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_arithmetic_expansion] = STATE(1548), - [sym_brace_expression] = STATE(1548), - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(1548), - [sym_translated_string] = STATE(1548), - [sym_number] = STATE(1548), - [sym_simple_expansion] = STATE(1548), - [sym_expansion] = STATE(1548), - [sym_command_substitution] = STATE(1548), - [sym_process_substitution] = STATE(1548), - [aux_sym__literal_repeat1] = STATE(1439), - [aux_sym_concatenation_repeat1] = STATE(1598), - [sym_word] = ACTIONS(1119), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1059), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [318] = { + [sym__expression] = STATE(1848), + [sym_binary_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_parenthesized_expression] = STATE(1520), + [sym_arithmetic_expansion] = STATE(1541), + [sym_brace_expression] = STATE(1541), + [sym_concatenation] = STATE(1520), + [sym_string] = STATE(1541), + [sym_translated_string] = STATE(1541), + [sym_number] = STATE(1541), + [sym_simple_expansion] = STATE(1541), + [sym_expansion] = STATE(1541), + [sym_command_substitution] = STATE(1541), + [sym_process_substitution] = STATE(1541), + [aux_sym__literal_repeat1] = STATE(1420), + [aux_sym_concatenation_repeat1] = STATE(1562), + [sym_word] = ACTIONS(1113), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(187), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(185), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT_LT] = ACTIONS(187), - [anon_sym_GT_GT] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(194), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(1121), - [anon_sym_EQ_TILDE] = ACTIONS(187), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DASH2] = ACTIONS(1123), - [anon_sym_PLUS2] = ACTIONS(1123), - [anon_sym_TILDE] = ACTIONS(1125), - [anon_sym_PLUS_PLUS2] = ACTIONS(1125), - [anon_sym_DASH_DASH2] = ACTIONS(1125), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1059), - [aux_sym_concatenation_token1] = ACTIONS(1061), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_EQ_TILDE] = ACTIONS(185), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DASH2] = ACTIONS(1117), + [anon_sym_PLUS2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_PLUS_PLUS2] = ACTIONS(1119), + [anon_sym_DASH_DASH2] = ACTIONS(1119), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1027), + [aux_sym_concatenation_token1] = ACTIONS(1029), [anon_sym_DOLLAR] = ACTIONS(318), - [sym__special_character] = ACTIONS(1127), - [anon_sym_DQUOTE] = ACTIONS(1065), - [sym_raw_string] = ACTIONS(1129), - [sym_ansi_c_string] = ACTIONS(1129), + [sym__special_character] = ACTIONS(1121), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_raw_string] = ACTIONS(1123), + [sym_ansi_c_string] = ACTIONS(1123), [aux_sym_number_token1] = ACTIONS(324), [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1037), [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1071), - [anon_sym_LT_LPAREN] = ACTIONS(1073), - [anon_sym_GT_LPAREN] = ACTIONS(1073), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1039), + [anon_sym_LT_LPAREN] = ACTIONS(1041), + [anon_sym_GT_LPAREN] = ACTIONS(1041), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1131), - [sym__concat] = ACTIONS(1061), + [sym__concat] = ACTIONS(1029), + [sym_test_operator] = ACTIONS(1125), [sym__brace_start] = ACTIONS(342), }, - [313] = { - [sym_string] = STATE(332), - [sym_word] = ACTIONS(1133), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1133), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_LT_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP_EQ] = ACTIONS(1133), - [anon_sym_CARET_EQ] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_STAR_STAR] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_EQ_TILDE] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_GT_PIPE] = ACTIONS(1133), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1135), - [sym__special_character] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_raw_string] = ACTIONS(1133), - [sym_ansi_c_string] = ACTIONS(1133), - [aux_sym_number_token1] = ACTIONS(1133), - [aux_sym_number_token2] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1139), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1139), - [anon_sym_AT2] = ACTIONS(1135), - [anon_sym_0] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - [sym_test_operator] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1141), - [sym__bare_dollar] = ACTIONS(1141), - [sym__brace_start] = ACTIONS(1141), - }, - [314] = { - [sym_string] = STATE(332), - [sym_word] = ACTIONS(1143), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_PLUS_EQ] = ACTIONS(1143), - [anon_sym_DASH_EQ] = ACTIONS(1143), - [anon_sym_STAR_EQ] = ACTIONS(1143), - [anon_sym_SLASH_EQ] = ACTIONS(1143), - [anon_sym_PERCENT_EQ] = ACTIONS(1143), - [anon_sym_LT_LT_EQ] = ACTIONS(1143), - [anon_sym_GT_GT_EQ] = ACTIONS(1143), - [anon_sym_AMP_EQ] = ACTIONS(1143), - [anon_sym_CARET_EQ] = ACTIONS(1143), - [anon_sym_PIPE_EQ] = ACTIONS(1143), - [anon_sym_EQ_EQ] = ACTIONS(1143), - [anon_sym_BANG_EQ] = ACTIONS(1143), - [anon_sym_LT_EQ] = ACTIONS(1143), - [anon_sym_GT_EQ] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1143), - [anon_sym_PIPE_PIPE] = ACTIONS(1143), - [anon_sym_LT_LT] = ACTIONS(1143), - [anon_sym_GT_GT] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_STAR] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(1143), - [anon_sym_STAR_STAR] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_GT] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_PIPE] = ACTIONS(1143), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_PIPE_AMP] = ACTIONS(1143), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_EQ_TILDE] = ACTIONS(1143), - [anon_sym_AMP_GT] = ACTIONS(1143), - [anon_sym_AMP_GT_GT] = ACTIONS(1143), - [anon_sym_LT_AMP] = ACTIONS(1143), - [anon_sym_GT_AMP] = ACTIONS(1143), - [anon_sym_GT_PIPE] = ACTIONS(1143), - [anon_sym_LT_LT_DASH] = ACTIONS(1143), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1143), - [anon_sym_LT_LT_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_QMARK] = ACTIONS(1135), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1135), - [sym__special_character] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_raw_string] = ACTIONS(1143), - [sym_ansi_c_string] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(1143), - [aux_sym_number_token2] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1143), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1143), - [anon_sym_BQUOTE] = ACTIONS(1143), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1143), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1139), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1139), - [anon_sym_AT2] = ACTIONS(1135), - [anon_sym_0] = ACTIONS(1135), - [anon_sym__] = ACTIONS(1135), - [sym_test_operator] = ACTIONS(1143), - [sym_file_descriptor] = ACTIONS(1145), - [sym__bare_dollar] = ACTIONS(1145), - [sym__brace_start] = ACTIONS(1145), - }, - [315] = { - [sym_string] = STATE(372), - [sym_word] = ACTIONS(1133), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_LT_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP_EQ] = ACTIONS(1133), - [anon_sym_CARET_EQ] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_STAR_STAR] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_RPAREN] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_SEMI_SEMI] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_EQ_TILDE] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_GT_PIPE] = ACTIONS(1133), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1147), - [sym__special_character] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1133), - [sym_ansi_c_string] = ACTIONS(1133), - [aux_sym_number_token1] = ACTIONS(1133), - [aux_sym_number_token2] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1151), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1151), - [anon_sym_AT2] = ACTIONS(1147), - [anon_sym_0] = ACTIONS(1147), - [anon_sym__] = ACTIONS(1147), - [sym_test_operator] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1141), - [sym__bare_dollar] = ACTIONS(1141), - [sym__brace_start] = ACTIONS(1141), - }, - [316] = { - [sym_string] = STATE(372), - [sym_word] = ACTIONS(1143), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1143), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_PLUS_EQ] = ACTIONS(1143), - [anon_sym_DASH_EQ] = ACTIONS(1143), - [anon_sym_STAR_EQ] = ACTIONS(1143), - [anon_sym_SLASH_EQ] = ACTIONS(1143), - [anon_sym_PERCENT_EQ] = ACTIONS(1143), - [anon_sym_LT_LT_EQ] = ACTIONS(1143), - [anon_sym_GT_GT_EQ] = ACTIONS(1143), - [anon_sym_AMP_EQ] = ACTIONS(1143), - [anon_sym_CARET_EQ] = ACTIONS(1143), - [anon_sym_PIPE_EQ] = ACTIONS(1143), - [anon_sym_EQ_EQ] = ACTIONS(1143), - [anon_sym_BANG_EQ] = ACTIONS(1143), - [anon_sym_LT_EQ] = ACTIONS(1143), - [anon_sym_GT_EQ] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1143), - [anon_sym_PIPE_PIPE] = ACTIONS(1143), - [anon_sym_LT_LT] = ACTIONS(1143), - [anon_sym_GT_GT] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_STAR] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(1143), - [anon_sym_STAR_STAR] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_GT] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_PIPE] = ACTIONS(1143), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_PIPE_AMP] = ACTIONS(1143), - [anon_sym_BANG] = ACTIONS(1147), - [anon_sym_EQ_TILDE] = ACTIONS(1143), - [anon_sym_AMP_GT] = ACTIONS(1143), - [anon_sym_AMP_GT_GT] = ACTIONS(1143), - [anon_sym_LT_AMP] = ACTIONS(1143), - [anon_sym_GT_AMP] = ACTIONS(1143), - [anon_sym_GT_PIPE] = ACTIONS(1143), - [anon_sym_LT_LT_DASH] = ACTIONS(1143), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1143), - [anon_sym_LT_LT_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_QMARK] = ACTIONS(1147), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1147), - [sym__special_character] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1143), - [sym_ansi_c_string] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(1143), - [aux_sym_number_token2] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1143), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1143), - [anon_sym_BQUOTE] = ACTIONS(1143), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1143), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1151), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1151), - [anon_sym_AT2] = ACTIONS(1147), - [anon_sym_0] = ACTIONS(1147), - [anon_sym__] = ACTIONS(1147), - [sym_test_operator] = ACTIONS(1143), - [sym_file_descriptor] = ACTIONS(1145), - [sym__bare_dollar] = ACTIONS(1145), - [sym__brace_start] = ACTIONS(1145), - }, - [317] = { - [sym_string] = STATE(401), - [sym_word] = ACTIONS(1133), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(1133), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_LT_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP_EQ] = ACTIONS(1133), - [anon_sym_CARET_EQ] = ACTIONS(1133), - [anon_sym_PIPE_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_STAR_STAR] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PIPE_AMP] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_EQ_TILDE] = ACTIONS(1133), - [anon_sym_AMP_GT] = ACTIONS(1133), - [anon_sym_AMP_GT_GT] = ACTIONS(1133), - [anon_sym_LT_AMP] = ACTIONS(1133), - [anon_sym_GT_AMP] = ACTIONS(1133), - [anon_sym_GT_PIPE] = ACTIONS(1133), - [anon_sym_LT_LT_DASH] = ACTIONS(1133), - [anon_sym_LT_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1133), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym__special_character] = ACTIONS(1133), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_raw_string] = ACTIONS(1133), - [sym_ansi_c_string] = ACTIONS(1133), - [aux_sym_number_token1] = ACTIONS(1133), - [aux_sym_number_token2] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1133), - [anon_sym_BQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1133), - [anon_sym_GT_LPAREN] = ACTIONS(1133), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1157), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1157), - [anon_sym_AT2] = ACTIONS(1153), - [anon_sym_0] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [sym_test_operator] = ACTIONS(1133), - [sym_file_descriptor] = ACTIONS(1141), - [sym__bare_dollar] = ACTIONS(1141), - [sym__brace_start] = ACTIONS(1141), - }, - [318] = { - [sym_string] = STATE(401), - [sym_word] = ACTIONS(1143), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1143), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_PLUS_PLUS] = ACTIONS(1143), - [anon_sym_DASH_DASH] = ACTIONS(1143), - [anon_sym_PLUS_EQ] = ACTIONS(1143), - [anon_sym_DASH_EQ] = ACTIONS(1143), - [anon_sym_STAR_EQ] = ACTIONS(1143), - [anon_sym_SLASH_EQ] = ACTIONS(1143), - [anon_sym_PERCENT_EQ] = ACTIONS(1143), - [anon_sym_LT_LT_EQ] = ACTIONS(1143), - [anon_sym_GT_GT_EQ] = ACTIONS(1143), - [anon_sym_AMP_EQ] = ACTIONS(1143), - [anon_sym_CARET_EQ] = ACTIONS(1143), - [anon_sym_PIPE_EQ] = ACTIONS(1143), - [anon_sym_EQ_EQ] = ACTIONS(1143), - [anon_sym_BANG_EQ] = ACTIONS(1143), - [anon_sym_LT_EQ] = ACTIONS(1143), - [anon_sym_GT_EQ] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1143), - [anon_sym_PIPE_PIPE] = ACTIONS(1143), - [anon_sym_LT_LT] = ACTIONS(1143), - [anon_sym_GT_GT] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1143), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1153), - [anon_sym_SLASH] = ACTIONS(1143), - [anon_sym_PERCENT] = ACTIONS(1143), - [anon_sym_STAR_STAR] = ACTIONS(1143), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_GT] = ACTIONS(1143), - [anon_sym_PIPE] = ACTIONS(1143), - [anon_sym_PIPE_AMP] = ACTIONS(1143), - [anon_sym_BANG] = ACTIONS(1153), - [anon_sym_RBRACK] = ACTIONS(1143), - [anon_sym_EQ_TILDE] = ACTIONS(1143), - [anon_sym_AMP_GT] = ACTIONS(1143), - [anon_sym_AMP_GT_GT] = ACTIONS(1143), - [anon_sym_LT_AMP] = ACTIONS(1143), - [anon_sym_GT_AMP] = ACTIONS(1143), - [anon_sym_GT_PIPE] = ACTIONS(1143), - [anon_sym_LT_LT_DASH] = ACTIONS(1143), - [anon_sym_LT_LT_LT] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(1143), - [anon_sym_CARET] = ACTIONS(1143), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1153), - [sym__special_character] = ACTIONS(1143), - [anon_sym_DQUOTE] = ACTIONS(1155), - [sym_raw_string] = ACTIONS(1143), - [sym_ansi_c_string] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(1143), - [aux_sym_number_token2] = ACTIONS(1143), - [anon_sym_POUND] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1143), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1143), - [anon_sym_BQUOTE] = ACTIONS(1143), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1143), - [anon_sym_LT_LPAREN] = ACTIONS(1143), - [anon_sym_GT_LPAREN] = ACTIONS(1143), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1157), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1157), - [anon_sym_AT2] = ACTIONS(1153), - [anon_sym_0] = ACTIONS(1153), - [anon_sym__] = ACTIONS(1153), - [sym_test_operator] = ACTIONS(1143), - [sym_file_descriptor] = ACTIONS(1145), - [sym__bare_dollar] = ACTIONS(1145), - [sym__brace_start] = ACTIONS(1145), - }, [319] = { - [aux_sym_concatenation_repeat1] = STATE(325), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_string] = STATE(336), + [sym_word] = ACTIONS(1127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1127), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_EQ] = ACTIONS(1127), + [anon_sym_DASH_EQ] = ACTIONS(1127), + [anon_sym_STAR_EQ] = ACTIONS(1127), + [anon_sym_SLASH_EQ] = ACTIONS(1127), + [anon_sym_PERCENT_EQ] = ACTIONS(1127), + [anon_sym_LT_LT_EQ] = ACTIONS(1127), + [anon_sym_GT_GT_EQ] = ACTIONS(1127), + [anon_sym_AMP_EQ] = ACTIONS(1127), + [anon_sym_CARET_EQ] = ACTIONS(1127), + [anon_sym_PIPE_EQ] = ACTIONS(1127), + [anon_sym_EQ_EQ] = ACTIONS(1127), + [anon_sym_BANG_EQ] = ACTIONS(1127), + [anon_sym_LT_EQ] = ACTIONS(1127), + [anon_sym_GT_EQ] = ACTIONS(1127), + [anon_sym_AMP_AMP] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(1127), + [anon_sym_LT_LT] = ACTIONS(1127), + [anon_sym_GT_GT] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_STAR_STAR] = ACTIONS(1127), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_SEMI_SEMI] = ACTIONS(1127), + [anon_sym_PIPE_AMP] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1127), + [anon_sym_AMP_GT] = ACTIONS(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(1127), + [anon_sym_LT_AMP] = ACTIONS(1127), + [anon_sym_GT_AMP] = ACTIONS(1127), + [anon_sym_GT_PIPE] = ACTIONS(1127), + [anon_sym_LT_LT_DASH] = ACTIONS(1127), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1127), + [anon_sym_LT_LT_LT] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(1129), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1129), + [sym__special_character] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(1127), + [aux_sym_number_token2] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1127), + [anon_sym_BQUOTE] = ACTIONS(1127), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1127), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__concat] = ACTIONS(224), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [aux_sym__simple_variable_name_token1] = ACTIONS(1133), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1133), + [anon_sym_AT2] = ACTIONS(1129), + [anon_sym_0] = ACTIONS(1129), + [anon_sym__] = ACTIONS(1129), + [sym_file_descriptor] = ACTIONS(1135), + [sym_test_operator] = ACTIONS(1135), + [sym__bare_dollar] = ACTIONS(1135), + [sym__brace_start] = ACTIONS(1135), }, [320] = { - [aux_sym_concatenation_repeat1] = STATE(325), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_string] = STATE(336), + [sym_word] = ACTIONS(1137), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1137), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym_EQ] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1137), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1137), + [anon_sym_PERCENT] = ACTIONS(1137), + [anon_sym_STAR_STAR] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1137), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1137), + [anon_sym_SEMI_SEMI] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_EQ_TILDE] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1137), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_GT_PIPE] = ACTIONS(1137), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_CARET] = ACTIONS(1137), + [anon_sym_QMARK] = ACTIONS(1129), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1129), + [sym__special_character] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1131), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(1137), + [aux_sym_number_token2] = ACTIONS(1137), + [anon_sym_POUND] = ACTIONS(1129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1137), + [anon_sym_LT_LPAREN] = ACTIONS(1137), + [anon_sym_GT_LPAREN] = ACTIONS(1137), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__concat] = ACTIONS(224), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [aux_sym__simple_variable_name_token1] = ACTIONS(1133), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1133), + [anon_sym_AT2] = ACTIONS(1129), + [anon_sym_0] = ACTIONS(1129), + [anon_sym__] = ACTIONS(1129), + [sym_file_descriptor] = ACTIONS(1139), + [sym_test_operator] = ACTIONS(1139), + [sym__bare_dollar] = ACTIONS(1139), + [sym__brace_start] = ACTIONS(1139), }, [321] = { - [aux_sym_concatenation_repeat1] = STATE(321), - [sym_word] = ACTIONS(1170), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1170), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_EQ] = ACTIONS(1170), - [anon_sym_DASH_EQ] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1170), - [anon_sym_SLASH_EQ] = ACTIONS(1170), - [anon_sym_PERCENT_EQ] = ACTIONS(1170), - [anon_sym_LT_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_EQ] = ACTIONS(1170), - [anon_sym_CARET_EQ] = ACTIONS(1170), - [anon_sym_PIPE_EQ] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1170), - [anon_sym_RPAREN] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(1170), - [anon_sym_PIPE_AMP] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_AMP_GT] = ACTIONS(1170), - [anon_sym_AMP_GT_GT] = ACTIONS(1170), - [anon_sym_LT_AMP] = ACTIONS(1170), - [anon_sym_GT_AMP] = ACTIONS(1170), - [anon_sym_GT_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT_DASH] = ACTIONS(1170), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1170), - [anon_sym_LT_LT_LT] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1170), - [aux_sym_concatenation_token1] = ACTIONS(1172), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym__special_character] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_raw_string] = ACTIONS(1170), - [sym_ansi_c_string] = ACTIONS(1170), - [aux_sym_number_token1] = ACTIONS(1170), - [aux_sym_number_token2] = ACTIONS(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1170), - [anon_sym_BQUOTE] = ACTIONS(1170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1170), - [anon_sym_LT_LPAREN] = ACTIONS(1170), - [anon_sym_GT_LPAREN] = ACTIONS(1170), + [sym_string] = STATE(376), + [sym_word] = ACTIONS(1127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_EQ] = ACTIONS(1127), + [anon_sym_DASH_EQ] = ACTIONS(1127), + [anon_sym_STAR_EQ] = ACTIONS(1127), + [anon_sym_SLASH_EQ] = ACTIONS(1127), + [anon_sym_PERCENT_EQ] = ACTIONS(1127), + [anon_sym_LT_LT_EQ] = ACTIONS(1127), + [anon_sym_GT_GT_EQ] = ACTIONS(1127), + [anon_sym_AMP_EQ] = ACTIONS(1127), + [anon_sym_CARET_EQ] = ACTIONS(1127), + [anon_sym_PIPE_EQ] = ACTIONS(1127), + [anon_sym_EQ_EQ] = ACTIONS(1127), + [anon_sym_BANG_EQ] = ACTIONS(1127), + [anon_sym_LT_EQ] = ACTIONS(1127), + [anon_sym_GT_EQ] = ACTIONS(1127), + [anon_sym_AMP_AMP] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(1127), + [anon_sym_LT_LT] = ACTIONS(1127), + [anon_sym_GT_GT] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_STAR_STAR] = ACTIONS(1127), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_SEMI_SEMI] = ACTIONS(1127), + [anon_sym_PIPE_AMP] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_EQ_TILDE] = ACTIONS(1127), + [anon_sym_AMP_GT] = ACTIONS(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(1127), + [anon_sym_LT_AMP] = ACTIONS(1127), + [anon_sym_GT_AMP] = ACTIONS(1127), + [anon_sym_GT_PIPE] = ACTIONS(1127), + [anon_sym_LT_LT_DASH] = ACTIONS(1127), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1127), + [anon_sym_LT_LT_LT] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1141), + [sym__special_character] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(1127), + [aux_sym_number_token2] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1127), + [anon_sym_BQUOTE] = ACTIONS(1127), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1127), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1170), - [sym_file_descriptor] = ACTIONS(1175), - [sym__concat] = ACTIONS(1177), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), + [aux_sym__simple_variable_name_token1] = ACTIONS(1145), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1145), + [anon_sym_AT2] = ACTIONS(1141), + [anon_sym_0] = ACTIONS(1141), + [anon_sym__] = ACTIONS(1141), + [sym_file_descriptor] = ACTIONS(1135), + [sym_test_operator] = ACTIONS(1135), + [sym__bare_dollar] = ACTIONS(1135), + [sym__brace_start] = ACTIONS(1135), }, [322] = { - [aux_sym_concatenation_repeat1] = STATE(324), - [sym_word] = ACTIONS(1180), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1180), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_EQ] = ACTIONS(1180), - [anon_sym_DASH_EQ] = ACTIONS(1180), - [anon_sym_STAR_EQ] = ACTIONS(1180), - [anon_sym_SLASH_EQ] = ACTIONS(1180), - [anon_sym_PERCENT_EQ] = ACTIONS(1180), - [anon_sym_LT_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_EQ] = ACTIONS(1180), - [anon_sym_CARET_EQ] = ACTIONS(1180), - [anon_sym_PIPE_EQ] = ACTIONS(1180), - [anon_sym_EQ_EQ] = ACTIONS(1180), - [anon_sym_BANG_EQ] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_SEMI_SEMI] = ACTIONS(1180), - [anon_sym_PIPE_AMP] = ACTIONS(1180), - [anon_sym_EQ_TILDE] = ACTIONS(1180), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1180), - [anon_sym_LT_AMP] = ACTIONS(1180), - [anon_sym_GT_AMP] = ACTIONS(1180), - [anon_sym_GT_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT_DASH] = ACTIONS(1180), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1180), - [anon_sym_LT_LT_LT] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1180), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(1180), - [sym__special_character] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_raw_string] = ACTIONS(1180), - [sym_ansi_c_string] = ACTIONS(1180), - [aux_sym_number_token1] = ACTIONS(1180), - [aux_sym_number_token2] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1180), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1180), - [anon_sym_GT_LPAREN] = ACTIONS(1180), + [sym_string] = STATE(376), + [sym_word] = ACTIONS(1137), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1137), + [anon_sym_SEMI] = ACTIONS(1137), + [anon_sym_EQ] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1137), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_SLASH] = ACTIONS(1137), + [anon_sym_PERCENT] = ACTIONS(1137), + [anon_sym_STAR_STAR] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1137), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1137), + [anon_sym_SEMI_SEMI] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_EQ_TILDE] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1137), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_GT_PIPE] = ACTIONS(1137), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_CARET] = ACTIONS(1137), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1141), + [sym__special_character] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1143), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(1137), + [aux_sym_number_token2] = ACTIONS(1137), + [anon_sym_POUND] = ACTIONS(1141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1137), + [anon_sym_LT_LPAREN] = ACTIONS(1137), + [anon_sym_GT_LPAREN] = ACTIONS(1137), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1180), - [sym_file_descriptor] = ACTIONS(1182), - [sym__concat] = ACTIONS(224), - [sym__bare_dollar] = ACTIONS(1182), - [sym__brace_start] = ACTIONS(1182), + [aux_sym__simple_variable_name_token1] = ACTIONS(1145), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1145), + [anon_sym_AT2] = ACTIONS(1141), + [anon_sym_0] = ACTIONS(1141), + [anon_sym__] = ACTIONS(1141), + [sym_file_descriptor] = ACTIONS(1139), + [sym_test_operator] = ACTIONS(1139), + [sym__bare_dollar] = ACTIONS(1139), + [sym__brace_start] = ACTIONS(1139), }, [323] = { - [aux_sym_concatenation_repeat1] = STATE(325), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__concat] = ACTIONS(224), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(220), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [324] = { - [aux_sym_concatenation_repeat1] = STATE(321), - [sym_word] = ACTIONS(1184), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1184), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_PERCENT_EQ] = ACTIONS(1184), - [anon_sym_LT_LT_EQ] = ACTIONS(1184), - [anon_sym_GT_GT_EQ] = ACTIONS(1184), - [anon_sym_AMP_EQ] = ACTIONS(1184), - [anon_sym_CARET_EQ] = ACTIONS(1184), - [anon_sym_PIPE_EQ] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_AMP_AMP] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_STAR_STAR] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_SEMI_SEMI] = ACTIONS(1184), - [anon_sym_PIPE_AMP] = ACTIONS(1184), - [anon_sym_EQ_TILDE] = ACTIONS(1184), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1184), - [anon_sym_LT_AMP] = ACTIONS(1184), - [anon_sym_GT_AMP] = ACTIONS(1184), - [anon_sym_GT_PIPE] = ACTIONS(1184), - [anon_sym_LT_LT_DASH] = ACTIONS(1184), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1184), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1184), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(1184), - [sym__special_character] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_raw_string] = ACTIONS(1184), - [sym_ansi_c_string] = ACTIONS(1184), - [aux_sym_number_token1] = ACTIONS(1184), - [aux_sym_number_token2] = ACTIONS(1184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1184), - [anon_sym_LT_LPAREN] = ACTIONS(1184), - [anon_sym_GT_LPAREN] = ACTIONS(1184), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1184), - [sym_file_descriptor] = ACTIONS(1186), - [sym__concat] = ACTIONS(1188), - [sym__bare_dollar] = ACTIONS(1186), - [sym__brace_start] = ACTIONS(1186), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(220), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [325] = { - [aux_sym_concatenation_repeat1] = STATE(321), - [sym_word] = ACTIONS(1190), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1190), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [anon_sym_GT_PIPE] = ACTIONS(1190), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1190), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1190), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(1190), - [sym__special_character] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym_raw_string] = ACTIONS(1190), - [sym_ansi_c_string] = ACTIONS(1190), - [aux_sym_number_token1] = ACTIONS(1190), - [aux_sym_number_token2] = ACTIONS(1190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1190), - [anon_sym_LT_LPAREN] = ACTIONS(1190), - [anon_sym_GT_LPAREN] = ACTIONS(1190), + [sym_string] = STATE(394), + [sym_word] = ACTIONS(1127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1127), + [anon_sym_PLUS_EQ] = ACTIONS(1127), + [anon_sym_DASH_EQ] = ACTIONS(1127), + [anon_sym_STAR_EQ] = ACTIONS(1127), + [anon_sym_SLASH_EQ] = ACTIONS(1127), + [anon_sym_PERCENT_EQ] = ACTIONS(1127), + [anon_sym_LT_LT_EQ] = ACTIONS(1127), + [anon_sym_GT_GT_EQ] = ACTIONS(1127), + [anon_sym_AMP_EQ] = ACTIONS(1127), + [anon_sym_CARET_EQ] = ACTIONS(1127), + [anon_sym_PIPE_EQ] = ACTIONS(1127), + [anon_sym_EQ_EQ] = ACTIONS(1127), + [anon_sym_BANG_EQ] = ACTIONS(1127), + [anon_sym_LT_EQ] = ACTIONS(1127), + [anon_sym_GT_EQ] = ACTIONS(1127), + [anon_sym_AMP_AMP] = ACTIONS(1127), + [anon_sym_PIPE_PIPE] = ACTIONS(1127), + [anon_sym_LT_LT] = ACTIONS(1127), + [anon_sym_GT_GT] = ACTIONS(1127), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_STAR_STAR] = ACTIONS(1127), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [anon_sym_PIPE] = ACTIONS(1127), + [anon_sym_PIPE_AMP] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_RBRACK] = ACTIONS(1127), + [anon_sym_EQ_TILDE] = ACTIONS(1127), + [anon_sym_AMP_GT] = ACTIONS(1127), + [anon_sym_AMP_GT_GT] = ACTIONS(1127), + [anon_sym_LT_AMP] = ACTIONS(1127), + [anon_sym_GT_AMP] = ACTIONS(1127), + [anon_sym_GT_PIPE] = ACTIONS(1127), + [anon_sym_LT_LT_DASH] = ACTIONS(1127), + [anon_sym_LT_LT_LT] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym__special_character] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_raw_string] = ACTIONS(1127), + [sym_ansi_c_string] = ACTIONS(1127), + [aux_sym_number_token1] = ACTIONS(1127), + [aux_sym_number_token2] = ACTIONS(1127), + [anon_sym_POUND] = ACTIONS(1161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1127), + [anon_sym_BQUOTE] = ACTIONS(1127), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1127), + [anon_sym_LT_LPAREN] = ACTIONS(1127), + [anon_sym_GT_LPAREN] = ACTIONS(1127), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1190), - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1194), - [sym__bare_dollar] = ACTIONS(1192), - [sym__brace_start] = ACTIONS(1192), + [aux_sym__simple_variable_name_token1] = ACTIONS(1165), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1165), + [anon_sym_AT2] = ACTIONS(1161), + [anon_sym_0] = ACTIONS(1161), + [anon_sym__] = ACTIONS(1161), + [sym_file_descriptor] = ACTIONS(1135), + [sym_test_operator] = ACTIONS(1135), + [sym__bare_dollar] = ACTIONS(1135), + [sym__brace_start] = ACTIONS(1135), }, [326] = { - [aux_sym_concatenation_repeat1] = STATE(325), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), + [sym_string] = STATE(394), + [sym_word] = ACTIONS(1137), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1137), + [anon_sym_EQ] = ACTIONS(1137), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_PERCENT_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_CARET_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP_AMP] = ACTIONS(1137), + [anon_sym_PIPE_PIPE] = ACTIONS(1137), + [anon_sym_LT_LT] = ACTIONS(1137), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), [anon_sym_DASH] = ACTIONS(1161), [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), + [anon_sym_SLASH] = ACTIONS(1137), + [anon_sym_PERCENT] = ACTIONS(1137), + [anon_sym_STAR_STAR] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1137), + [anon_sym_PIPE_AMP] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_RBRACK] = ACTIONS(1137), + [anon_sym_EQ_TILDE] = ACTIONS(1137), + [anon_sym_AMP_GT] = ACTIONS(1137), + [anon_sym_AMP_GT_GT] = ACTIONS(1137), + [anon_sym_LT_AMP] = ACTIONS(1137), + [anon_sym_GT_AMP] = ACTIONS(1137), + [anon_sym_GT_PIPE] = ACTIONS(1137), + [anon_sym_LT_LT_DASH] = ACTIONS(1137), + [anon_sym_LT_LT_LT] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_CARET] = ACTIONS(1137), [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [aux_sym_concatenation_token1] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1161), + [sym__special_character] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_raw_string] = ACTIONS(1137), + [sym_ansi_c_string] = ACTIONS(1137), + [aux_sym_number_token1] = ACTIONS(1137), + [aux_sym_number_token2] = ACTIONS(1137), + [anon_sym_POUND] = ACTIONS(1161), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1137), + [anon_sym_BQUOTE] = ACTIONS(1137), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1137), + [anon_sym_LT_LPAREN] = ACTIONS(1137), + [anon_sym_GT_LPAREN] = ACTIONS(1137), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__concat] = ACTIONS(224), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [aux_sym__simple_variable_name_token1] = ACTIONS(1165), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1165), + [anon_sym_AT2] = ACTIONS(1161), + [anon_sym_0] = ACTIONS(1161), + [anon_sym__] = ACTIONS(1161), + [sym_file_descriptor] = ACTIONS(1139), + [sym_test_operator] = ACTIONS(1139), + [sym__bare_dollar] = ACTIONS(1139), + [sym__brace_start] = ACTIONS(1139), }, [327] = { - [aux_sym_concatenation_repeat1] = STATE(346), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [aux_sym_concatenation_token1] = ACTIONS(316), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__concat] = ACTIONS(340), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(220), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [328] = { - [sym_word] = ACTIONS(1196), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1196), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_GT_EQ] = ACTIONS(1196), - [anon_sym_AMP_EQ] = ACTIONS(1196), - [anon_sym_CARET_EQ] = ACTIONS(1196), - [anon_sym_PIPE_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_STAR_STAR] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_SEMI_SEMI] = ACTIONS(1196), - [anon_sym_PIPE_AMP] = ACTIONS(1196), - [anon_sym_EQ_TILDE] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1196), - [anon_sym_AMP_GT_GT] = ACTIONS(1196), - [anon_sym_LT_AMP] = ACTIONS(1196), - [anon_sym_GT_AMP] = ACTIONS(1196), - [anon_sym_GT_PIPE] = ACTIONS(1196), - [anon_sym_LT_LT_DASH] = ACTIONS(1196), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1196), - [aux_sym_concatenation_token1] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [sym__special_character] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_raw_string] = ACTIONS(1196), - [sym_ansi_c_string] = ACTIONS(1196), - [aux_sym_number_token1] = ACTIONS(1196), - [aux_sym_number_token2] = ACTIONS(1196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1196), - [anon_sym_LT_LPAREN] = ACTIONS(1196), - [anon_sym_GT_LPAREN] = ACTIONS(1196), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1196), - [sym_file_descriptor] = ACTIONS(1198), - [sym__concat] = ACTIONS(1198), - [sym__bare_dollar] = ACTIONS(1198), - [sym__brace_start] = ACTIONS(1198), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(220), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [329] = { - [sym_word] = ACTIONS(1170), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1170), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_EQ] = ACTIONS(1170), - [anon_sym_DASH_EQ] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1170), - [anon_sym_SLASH_EQ] = ACTIONS(1170), - [anon_sym_PERCENT_EQ] = ACTIONS(1170), - [anon_sym_LT_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_EQ] = ACTIONS(1170), - [anon_sym_CARET_EQ] = ACTIONS(1170), - [anon_sym_PIPE_EQ] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1170), - [anon_sym_RPAREN] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(1170), - [anon_sym_PIPE_AMP] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_AMP_GT] = ACTIONS(1170), - [anon_sym_AMP_GT_GT] = ACTIONS(1170), - [anon_sym_LT_AMP] = ACTIONS(1170), - [anon_sym_GT_AMP] = ACTIONS(1170), - [anon_sym_GT_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT_DASH] = ACTIONS(1170), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1170), - [anon_sym_LT_LT_LT] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1170), - [aux_sym_concatenation_token1] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym__special_character] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_raw_string] = ACTIONS(1170), - [sym_ansi_c_string] = ACTIONS(1170), - [aux_sym_number_token1] = ACTIONS(1170), - [aux_sym_number_token2] = ACTIONS(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1170), - [anon_sym_BQUOTE] = ACTIONS(1170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1170), - [anon_sym_LT_LPAREN] = ACTIONS(1170), - [anon_sym_GT_LPAREN] = ACTIONS(1170), + [aux_sym_concatenation_repeat1] = STATE(334), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [aux_sym_concatenation_token1] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1170), - [sym_file_descriptor] = ACTIONS(1175), - [sym__concat] = ACTIONS(1175), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(338), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [330] = { - [sym_word] = ACTIONS(1200), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_EQ] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_EQ] = ACTIONS(1200), - [anon_sym_DASH_EQ] = ACTIONS(1200), - [anon_sym_STAR_EQ] = ACTIONS(1200), - [anon_sym_SLASH_EQ] = ACTIONS(1200), - [anon_sym_PERCENT_EQ] = ACTIONS(1200), - [anon_sym_LT_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_GT_EQ] = ACTIONS(1200), - [anon_sym_AMP_EQ] = ACTIONS(1200), - [anon_sym_CARET_EQ] = ACTIONS(1200), - [anon_sym_PIPE_EQ] = ACTIONS(1200), - [anon_sym_EQ_EQ] = ACTIONS(1200), - [anon_sym_BANG_EQ] = ACTIONS(1200), - [anon_sym_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1200), - [anon_sym_AMP_AMP] = ACTIONS(1200), - [anon_sym_PIPE_PIPE] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1200), - [anon_sym_GT_GT] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_SLASH] = ACTIONS(1200), - [anon_sym_PERCENT] = ACTIONS(1200), - [anon_sym_STAR_STAR] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_GT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_SEMI_SEMI] = ACTIONS(1200), - [anon_sym_PIPE_AMP] = ACTIONS(1200), - [anon_sym_EQ_TILDE] = ACTIONS(1200), - [anon_sym_AMP_GT] = ACTIONS(1200), - [anon_sym_AMP_GT_GT] = ACTIONS(1200), - [anon_sym_LT_AMP] = ACTIONS(1200), - [anon_sym_GT_AMP] = ACTIONS(1200), - [anon_sym_GT_PIPE] = ACTIONS(1200), - [anon_sym_LT_LT_DASH] = ACTIONS(1200), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_CARET] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1200), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1200), - [aux_sym_concatenation_token1] = ACTIONS(1200), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym__special_character] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1200), - [sym_ansi_c_string] = ACTIONS(1200), - [aux_sym_number_token1] = ACTIONS(1200), - [aux_sym_number_token2] = ACTIONS(1200), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1200), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), - [anon_sym_BQUOTE] = ACTIONS(1200), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1200), - [anon_sym_LT_LPAREN] = ACTIONS(1200), - [anon_sym_GT_LPAREN] = ACTIONS(1200), + [aux_sym_concatenation_repeat1] = STATE(331), + [sym_word] = ACTIONS(1167), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1167), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_STAR_EQ] = ACTIONS(1167), + [anon_sym_SLASH_EQ] = ACTIONS(1167), + [anon_sym_PERCENT_EQ] = ACTIONS(1167), + [anon_sym_LT_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_EQ] = ACTIONS(1167), + [anon_sym_CARET_EQ] = ACTIONS(1167), + [anon_sym_PIPE_EQ] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT] = ACTIONS(1167), + [anon_sym_GT_GT] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1167), + [anon_sym_RPAREN] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1167), + [anon_sym_SEMI_SEMI] = ACTIONS(1167), + [anon_sym_PIPE_AMP] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_AMP_GT] = ACTIONS(1167), + [anon_sym_AMP_GT_GT] = ACTIONS(1167), + [anon_sym_LT_AMP] = ACTIONS(1167), + [anon_sym_GT_AMP] = ACTIONS(1167), + [anon_sym_GT_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT_DASH] = ACTIONS(1167), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1169), + [anon_sym_LT_LT_LT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_QMARK] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1167), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(1167), + [sym__special_character] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_raw_string] = ACTIONS(1167), + [sym_ansi_c_string] = ACTIONS(1167), + [aux_sym_number_token1] = ACTIONS(1167), + [aux_sym_number_token2] = ACTIONS(1167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1167), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1167), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1200), - [sym_file_descriptor] = ACTIONS(1202), - [sym__concat] = ACTIONS(1202), - [sym__bare_dollar] = ACTIONS(1202), - [sym__brace_start] = ACTIONS(1202), + [sym_file_descriptor] = ACTIONS(1169), + [sym__concat] = ACTIONS(220), + [sym_test_operator] = ACTIONS(1169), + [sym__bare_dollar] = ACTIONS(1169), + [sym__brace_start] = ACTIONS(1169), }, [331] = { - [sym_word] = ACTIONS(1204), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1204), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_EQ] = ACTIONS(1204), - [anon_sym_DASH_EQ] = ACTIONS(1204), - [anon_sym_STAR_EQ] = ACTIONS(1204), - [anon_sym_SLASH_EQ] = ACTIONS(1204), - [anon_sym_PERCENT_EQ] = ACTIONS(1204), - [anon_sym_LT_LT_EQ] = ACTIONS(1204), - [anon_sym_GT_GT_EQ] = ACTIONS(1204), - [anon_sym_AMP_EQ] = ACTIONS(1204), - [anon_sym_CARET_EQ] = ACTIONS(1204), - [anon_sym_PIPE_EQ] = ACTIONS(1204), - [anon_sym_EQ_EQ] = ACTIONS(1204), - [anon_sym_BANG_EQ] = ACTIONS(1204), - [anon_sym_LT_EQ] = ACTIONS(1204), - [anon_sym_GT_EQ] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(1204), - [anon_sym_PIPE_PIPE] = ACTIONS(1204), - [anon_sym_LT_LT] = ACTIONS(1204), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(1204), - [anon_sym_PERCENT] = ACTIONS(1204), - [anon_sym_STAR_STAR] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_SEMI_SEMI] = ACTIONS(1204), - [anon_sym_PIPE_AMP] = ACTIONS(1204), - [anon_sym_EQ_TILDE] = ACTIONS(1204), - [anon_sym_AMP_GT] = ACTIONS(1204), - [anon_sym_AMP_GT_GT] = ACTIONS(1204), - [anon_sym_LT_AMP] = ACTIONS(1204), - [anon_sym_GT_AMP] = ACTIONS(1204), - [anon_sym_GT_PIPE] = ACTIONS(1204), - [anon_sym_LT_LT_DASH] = ACTIONS(1204), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1204), - [anon_sym_LT_LT_LT] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_CARET] = ACTIONS(1204), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1204), - [aux_sym_concatenation_token1] = ACTIONS(1204), - [anon_sym_DOLLAR] = ACTIONS(1204), - [sym__special_character] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_raw_string] = ACTIONS(1204), - [sym_ansi_c_string] = ACTIONS(1204), - [aux_sym_number_token1] = ACTIONS(1204), - [aux_sym_number_token2] = ACTIONS(1204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1204), - [anon_sym_BQUOTE] = ACTIONS(1204), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1204), - [anon_sym_LT_LPAREN] = ACTIONS(1204), - [anon_sym_GT_LPAREN] = ACTIONS(1204), + [aux_sym_concatenation_repeat1] = STATE(333), + [sym_word] = ACTIONS(1171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1171), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1171), + [anon_sym_DASH_EQ] = ACTIONS(1171), + [anon_sym_STAR_EQ] = ACTIONS(1171), + [anon_sym_SLASH_EQ] = ACTIONS(1171), + [anon_sym_PERCENT_EQ] = ACTIONS(1171), + [anon_sym_LT_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_GT_EQ] = ACTIONS(1171), + [anon_sym_AMP_EQ] = ACTIONS(1171), + [anon_sym_CARET_EQ] = ACTIONS(1171), + [anon_sym_PIPE_EQ] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_LT_LT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_PERCENT] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_SEMI_SEMI] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [anon_sym_GT_PIPE] = ACTIONS(1171), + [anon_sym_LT_LT_DASH] = ACTIONS(1171), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1173), + [anon_sym_LT_LT_LT] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_QMARK] = ACTIONS(1171), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1171), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(1171), + [sym__special_character] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_raw_string] = ACTIONS(1171), + [sym_ansi_c_string] = ACTIONS(1171), + [aux_sym_number_token1] = ACTIONS(1171), + [aux_sym_number_token2] = ACTIONS(1171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1171), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1171), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1204), - [sym_file_descriptor] = ACTIONS(1206), - [sym__concat] = ACTIONS(1206), - [sym__bare_dollar] = ACTIONS(1206), - [sym__brace_start] = ACTIONS(1206), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(1175), + [sym_test_operator] = ACTIONS(1173), + [sym__bare_dollar] = ACTIONS(1173), + [sym__brace_start] = ACTIONS(1173), }, [332] = { - [sym_word] = ACTIONS(1208), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1208), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP_EQ] = ACTIONS(1208), - [anon_sym_CARET_EQ] = ACTIONS(1208), - [anon_sym_PIPE_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1208), - [anon_sym_PIPE_PIPE] = ACTIONS(1208), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_STAR_STAR] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_SEMI_SEMI] = ACTIONS(1208), - [anon_sym_PIPE_AMP] = ACTIONS(1208), - [anon_sym_EQ_TILDE] = ACTIONS(1208), - [anon_sym_AMP_GT] = ACTIONS(1208), - [anon_sym_AMP_GT_GT] = ACTIONS(1208), - [anon_sym_LT_AMP] = ACTIONS(1208), - [anon_sym_GT_AMP] = ACTIONS(1208), - [anon_sym_GT_PIPE] = ACTIONS(1208), - [anon_sym_LT_LT_DASH] = ACTIONS(1208), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1208), - [anon_sym_LT_LT_LT] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1208), - [aux_sym_concatenation_token1] = ACTIONS(1208), - [anon_sym_DOLLAR] = ACTIONS(1208), - [sym__special_character] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_raw_string] = ACTIONS(1208), - [sym_ansi_c_string] = ACTIONS(1208), - [aux_sym_number_token1] = ACTIONS(1208), - [aux_sym_number_token2] = ACTIONS(1208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1208), - [anon_sym_LT_LPAREN] = ACTIONS(1208), - [anon_sym_GT_LPAREN] = ACTIONS(1208), + [aux_sym_concatenation_repeat1] = STATE(333), + [sym_word] = ACTIONS(1177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1177), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_EQ] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_EQ] = ACTIONS(1177), + [anon_sym_DASH_EQ] = ACTIONS(1177), + [anon_sym_STAR_EQ] = ACTIONS(1177), + [anon_sym_SLASH_EQ] = ACTIONS(1177), + [anon_sym_PERCENT_EQ] = ACTIONS(1177), + [anon_sym_LT_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_GT_EQ] = ACTIONS(1177), + [anon_sym_AMP_EQ] = ACTIONS(1177), + [anon_sym_CARET_EQ] = ACTIONS(1177), + [anon_sym_PIPE_EQ] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_LT_LT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_PERCENT] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1177), + [anon_sym_LT_AMP] = ACTIONS(1177), + [anon_sym_GT_AMP] = ACTIONS(1177), + [anon_sym_GT_PIPE] = ACTIONS(1177), + [anon_sym_LT_LT_DASH] = ACTIONS(1177), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1179), + [anon_sym_LT_LT_LT] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), + [anon_sym_QMARK] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1177), + [aux_sym_concatenation_token1] = ACTIONS(196), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [sym_ansi_c_string] = ACTIONS(1177), + [aux_sym_number_token1] = ACTIONS(1177), + [aux_sym_number_token2] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1208), - [sym_file_descriptor] = ACTIONS(1210), - [sym__concat] = ACTIONS(1210), - [sym__bare_dollar] = ACTIONS(1210), - [sym__brace_start] = ACTIONS(1210), + [sym_file_descriptor] = ACTIONS(1179), + [sym__concat] = ACTIONS(1181), + [sym_test_operator] = ACTIONS(1179), + [sym__bare_dollar] = ACTIONS(1179), + [sym__brace_start] = ACTIONS(1179), }, [333] = { - [aux_sym_concatenation_repeat1] = STATE(346), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [aux_sym_concatenation_token1] = ACTIONS(316), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [aux_sym_concatenation_repeat1] = STATE(333), + [sym_word] = ACTIONS(1183), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_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_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_STAR_STAR] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_SEMI_SEMI] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = 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_LT_DASH] = ACTIONS(1183), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1185), + [anon_sym_LT_LT_LT] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), + [aux_sym_concatenation_token1] = ACTIONS(1187), + [anon_sym_DOLLAR] = ACTIONS(1183), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1183), + [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_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), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__concat] = ACTIONS(340), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1185), + [sym__concat] = ACTIONS(1190), + [sym_test_operator] = ACTIONS(1185), + [sym__bare_dollar] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1185), }, [334] = { - [sym_word] = ACTIONS(1212), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_EQ] = ACTIONS(1212), - [anon_sym_DASH_EQ] = ACTIONS(1212), - [anon_sym_STAR_EQ] = ACTIONS(1212), - [anon_sym_SLASH_EQ] = ACTIONS(1212), - [anon_sym_PERCENT_EQ] = ACTIONS(1212), - [anon_sym_LT_LT_EQ] = ACTIONS(1212), - [anon_sym_GT_GT_EQ] = ACTIONS(1212), - [anon_sym_AMP_EQ] = ACTIONS(1212), - [anon_sym_CARET_EQ] = ACTIONS(1212), - [anon_sym_PIPE_EQ] = ACTIONS(1212), - [anon_sym_EQ_EQ] = ACTIONS(1212), - [anon_sym_BANG_EQ] = ACTIONS(1212), - [anon_sym_LT_EQ] = ACTIONS(1212), - [anon_sym_GT_EQ] = ACTIONS(1212), - [anon_sym_AMP_AMP] = ACTIONS(1212), - [anon_sym_PIPE_PIPE] = ACTIONS(1212), - [anon_sym_LT_LT] = ACTIONS(1212), - [anon_sym_GT_GT] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_SLASH] = ACTIONS(1212), - [anon_sym_PERCENT] = ACTIONS(1212), - [anon_sym_STAR_STAR] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_SEMI_SEMI] = ACTIONS(1212), - [anon_sym_PIPE_AMP] = ACTIONS(1212), - [anon_sym_EQ_TILDE] = ACTIONS(1212), - [anon_sym_AMP_GT] = ACTIONS(1212), - [anon_sym_AMP_GT_GT] = ACTIONS(1212), - [anon_sym_LT_AMP] = ACTIONS(1212), - [anon_sym_GT_AMP] = ACTIONS(1212), - [anon_sym_GT_PIPE] = ACTIONS(1212), - [anon_sym_LT_LT_DASH] = ACTIONS(1212), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1212), - [anon_sym_LT_LT_LT] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_CARET] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1212), - [aux_sym_concatenation_token1] = ACTIONS(1212), - [anon_sym_DOLLAR] = ACTIONS(1212), - [sym__special_character] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_raw_string] = ACTIONS(1212), - [sym_ansi_c_string] = ACTIONS(1212), - [aux_sym_number_token1] = ACTIONS(1212), - [aux_sym_number_token2] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1212), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1212), - [anon_sym_GT_LPAREN] = ACTIONS(1212), + [aux_sym_concatenation_repeat1] = STATE(335), + [sym_word] = ACTIONS(1177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), + [anon_sym_EQ] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_EQ] = ACTIONS(1177), + [anon_sym_DASH_EQ] = ACTIONS(1177), + [anon_sym_STAR_EQ] = ACTIONS(1177), + [anon_sym_SLASH_EQ] = ACTIONS(1177), + [anon_sym_PERCENT_EQ] = ACTIONS(1177), + [anon_sym_LT_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_GT_EQ] = ACTIONS(1177), + [anon_sym_AMP_EQ] = ACTIONS(1177), + [anon_sym_CARET_EQ] = ACTIONS(1177), + [anon_sym_PIPE_EQ] = ACTIONS(1177), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(1177), + [anon_sym_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_LT_LT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_PERCENT] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_SEMI_SEMI] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1177), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1177), + [anon_sym_LT_AMP] = ACTIONS(1177), + [anon_sym_GT_AMP] = ACTIONS(1177), + [anon_sym_GT_PIPE] = ACTIONS(1177), + [anon_sym_LT_LT_DASH] = ACTIONS(1177), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1179), + [anon_sym_LT_LT_LT] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), + [anon_sym_QMARK] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1177), + [aux_sym_concatenation_token1] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_raw_string] = ACTIONS(1177), + [sym_ansi_c_string] = ACTIONS(1177), + [aux_sym_number_token1] = ACTIONS(1177), + [aux_sym_number_token2] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1177), + [anon_sym_LT_LPAREN] = ACTIONS(1177), + [anon_sym_GT_LPAREN] = ACTIONS(1177), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1212), - [sym_file_descriptor] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [sym__bare_dollar] = ACTIONS(1214), - [sym__brace_start] = ACTIONS(1214), + [sym_file_descriptor] = ACTIONS(1179), + [sym__concat] = ACTIONS(1193), + [sym_test_operator] = ACTIONS(1179), + [sym__bare_dollar] = ACTIONS(1179), + [sym__brace_start] = ACTIONS(1179), }, [335] = { - [sym_word] = ACTIONS(1216), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1216), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_EQ] = ACTIONS(1216), - [anon_sym_DASH_EQ] = ACTIONS(1216), - [anon_sym_STAR_EQ] = ACTIONS(1216), - [anon_sym_SLASH_EQ] = ACTIONS(1216), - [anon_sym_PERCENT_EQ] = ACTIONS(1216), - [anon_sym_LT_LT_EQ] = ACTIONS(1216), - [anon_sym_GT_GT_EQ] = ACTIONS(1216), - [anon_sym_AMP_EQ] = ACTIONS(1216), - [anon_sym_CARET_EQ] = ACTIONS(1216), - [anon_sym_PIPE_EQ] = ACTIONS(1216), - [anon_sym_EQ_EQ] = ACTIONS(1216), - [anon_sym_BANG_EQ] = ACTIONS(1216), - [anon_sym_LT_EQ] = ACTIONS(1216), - [anon_sym_GT_EQ] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_SLASH] = ACTIONS(1216), - [anon_sym_PERCENT] = ACTIONS(1216), - [anon_sym_STAR_STAR] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_EQ_TILDE] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1216), - [anon_sym_GT_AMP] = ACTIONS(1216), - [anon_sym_GT_PIPE] = ACTIONS(1216), - [anon_sym_LT_LT_DASH] = ACTIONS(1216), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_CARET] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1216), - [aux_sym_concatenation_token1] = ACTIONS(1216), - [anon_sym_DOLLAR] = ACTIONS(1216), - [sym__special_character] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_raw_string] = ACTIONS(1216), - [sym_ansi_c_string] = ACTIONS(1216), - [aux_sym_number_token1] = ACTIONS(1216), - [aux_sym_number_token2] = ACTIONS(1216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1216), - [anon_sym_GT_LPAREN] = ACTIONS(1216), + [aux_sym_concatenation_repeat1] = STATE(335), + [sym_word] = ACTIONS(1183), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_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_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_STAR_STAR] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_SEMI_SEMI] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = 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_LT_DASH] = ACTIONS(1183), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1185), + [anon_sym_LT_LT_LT] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), + [aux_sym_concatenation_token1] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1183), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1183), + [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_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), - [sym_test_operator] = ACTIONS(1216), - [sym_file_descriptor] = ACTIONS(1218), - [sym__concat] = ACTIONS(1218), - [sym__bare_dollar] = ACTIONS(1218), - [sym__brace_start] = ACTIONS(1218), + [sym_file_descriptor] = ACTIONS(1185), + [sym__concat] = ACTIONS(1198), + [sym_test_operator] = ACTIONS(1185), + [sym__bare_dollar] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1185), }, [336] = { - [sym_word] = ACTIONS(1220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1220), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_AMP_EQ] = ACTIONS(1220), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_EQ] = ACTIONS(1220), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(1220), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_GT_PIPE] = ACTIONS(1220), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1220), - [aux_sym_concatenation_token1] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym__special_character] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_raw_string] = ACTIONS(1220), - [sym_ansi_c_string] = ACTIONS(1220), - [aux_sym_number_token1] = ACTIONS(1220), - [aux_sym_number_token2] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1220), - [anon_sym_LT_LPAREN] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(1220), + [sym_word] = ACTIONS(1201), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1201), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_EQ] = ACTIONS(1201), + [anon_sym_DASH_EQ] = ACTIONS(1201), + [anon_sym_STAR_EQ] = ACTIONS(1201), + [anon_sym_SLASH_EQ] = ACTIONS(1201), + [anon_sym_PERCENT_EQ] = ACTIONS(1201), + [anon_sym_LT_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_GT_EQ] = ACTIONS(1201), + [anon_sym_AMP_EQ] = ACTIONS(1201), + [anon_sym_CARET_EQ] = ACTIONS(1201), + [anon_sym_PIPE_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_SEMI_SEMI] = ACTIONS(1201), + [anon_sym_PIPE_AMP] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_GT] = ACTIONS(1201), + [anon_sym_AMP_GT_GT] = ACTIONS(1201), + [anon_sym_LT_AMP] = ACTIONS(1201), + [anon_sym_GT_AMP] = ACTIONS(1201), + [anon_sym_GT_PIPE] = ACTIONS(1201), + [anon_sym_LT_LT_DASH] = ACTIONS(1201), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1203), + [anon_sym_LT_LT_LT] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1201), + [aux_sym_concatenation_token1] = ACTIONS(1201), + [anon_sym_DOLLAR] = ACTIONS(1201), + [sym__special_character] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_raw_string] = ACTIONS(1201), + [sym_ansi_c_string] = ACTIONS(1201), + [aux_sym_number_token1] = ACTIONS(1201), + [aux_sym_number_token2] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1201), + [anon_sym_BQUOTE] = ACTIONS(1201), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1201), + [anon_sym_LT_LPAREN] = ACTIONS(1201), + [anon_sym_GT_LPAREN] = ACTIONS(1201), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1220), - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [sym__bare_dollar] = ACTIONS(1222), - [sym__brace_start] = ACTIONS(1222), + [sym_file_descriptor] = ACTIONS(1203), + [sym__concat] = ACTIONS(1203), + [sym_test_operator] = ACTIONS(1203), + [sym__bare_dollar] = ACTIONS(1203), + [sym__brace_start] = ACTIONS(1203), }, [337] = { - [sym_word] = ACTIONS(1224), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_EQ] = ACTIONS(1224), - [anon_sym_DASH_EQ] = ACTIONS(1224), - [anon_sym_STAR_EQ] = ACTIONS(1224), - [anon_sym_SLASH_EQ] = ACTIONS(1224), - [anon_sym_PERCENT_EQ] = ACTIONS(1224), - [anon_sym_LT_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_GT_EQ] = ACTIONS(1224), - [anon_sym_AMP_EQ] = ACTIONS(1224), - [anon_sym_CARET_EQ] = ACTIONS(1224), - [anon_sym_PIPE_EQ] = ACTIONS(1224), - [anon_sym_EQ_EQ] = ACTIONS(1224), - [anon_sym_BANG_EQ] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_EQ] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PERCENT] = ACTIONS(1224), - [anon_sym_STAR_STAR] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_EQ_TILDE] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_GT_PIPE] = ACTIONS(1224), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1224), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1224), - [aux_sym_concatenation_token1] = ACTIONS(1224), - [anon_sym_DOLLAR] = ACTIONS(1224), - [sym__special_character] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_raw_string] = ACTIONS(1224), - [sym_ansi_c_string] = ACTIONS(1224), - [aux_sym_number_token1] = ACTIONS(1224), - [aux_sym_number_token2] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1224), - [anon_sym_LT_LPAREN] = ACTIONS(1224), - [anon_sym_GT_LPAREN] = ACTIONS(1224), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_SEMI_SEMI] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1205), + [anon_sym_LT_AMP] = ACTIONS(1205), + [anon_sym_GT_AMP] = ACTIONS(1205), + [anon_sym_GT_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT_DASH] = ACTIONS(1205), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1207), + [anon_sym_LT_LT_LT] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), + [aux_sym_concatenation_token1] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1205), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_raw_string] = ACTIONS(1205), + [sym_ansi_c_string] = ACTIONS(1205), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), + [anon_sym_LT_LPAREN] = ACTIONS(1205), + [anon_sym_GT_LPAREN] = ACTIONS(1205), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1224), - [sym_file_descriptor] = ACTIONS(1226), - [sym__concat] = ACTIONS(1226), - [sym__bare_dollar] = ACTIONS(1226), - [sym__brace_start] = ACTIONS(1226), + [sym_file_descriptor] = ACTIONS(1207), + [sym__concat] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1207), + [sym__bare_dollar] = ACTIONS(1207), + [sym__brace_start] = ACTIONS(1207), }, [338] = { - [sym_word] = ACTIONS(1228), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_PERCENT_EQ] = ACTIONS(1228), - [anon_sym_LT_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_GT_EQ] = ACTIONS(1228), - [anon_sym_AMP_EQ] = ACTIONS(1228), - [anon_sym_CARET_EQ] = ACTIONS(1228), - [anon_sym_PIPE_EQ] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_GT_PIPE] = ACTIONS(1228), - [anon_sym_LT_LT_DASH] = ACTIONS(1228), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1228), - [anon_sym_LT_LT_LT] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1228), - [aux_sym_concatenation_token1] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [sym__special_character] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_raw_string] = ACTIONS(1228), - [sym_ansi_c_string] = ACTIONS(1228), - [aux_sym_number_token1] = ACTIONS(1228), - [aux_sym_number_token2] = ACTIONS(1228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1228), - [anon_sym_LT_LPAREN] = ACTIONS(1228), - [anon_sym_GT_LPAREN] = ACTIONS(1228), + [aux_sym_concatenation_repeat1] = STATE(335), + [sym_word] = ACTIONS(1171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1171), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1171), + [anon_sym_DASH_EQ] = ACTIONS(1171), + [anon_sym_STAR_EQ] = ACTIONS(1171), + [anon_sym_SLASH_EQ] = ACTIONS(1171), + [anon_sym_PERCENT_EQ] = ACTIONS(1171), + [anon_sym_LT_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_GT_EQ] = ACTIONS(1171), + [anon_sym_AMP_EQ] = ACTIONS(1171), + [anon_sym_CARET_EQ] = ACTIONS(1171), + [anon_sym_PIPE_EQ] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1171), + [anon_sym_AMP_AMP] = ACTIONS(1171), + [anon_sym_PIPE_PIPE] = ACTIONS(1171), + [anon_sym_LT_LT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_PERCENT] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_SEMI_SEMI] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(1171), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [anon_sym_GT_PIPE] = ACTIONS(1171), + [anon_sym_LT_LT_DASH] = ACTIONS(1171), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1173), + [anon_sym_LT_LT_LT] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_QMARK] = ACTIONS(1171), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1171), + [aux_sym_concatenation_token1] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(1171), + [sym__special_character] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1171), + [sym_raw_string] = ACTIONS(1171), + [sym_ansi_c_string] = ACTIONS(1171), + [aux_sym_number_token1] = ACTIONS(1171), + [aux_sym_number_token2] = ACTIONS(1171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1171), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1171), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1171), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1228), - [sym_file_descriptor] = ACTIONS(1230), - [sym__concat] = ACTIONS(1230), - [sym__bare_dollar] = ACTIONS(1230), - [sym__brace_start] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(1209), + [sym_test_operator] = ACTIONS(1173), + [sym__bare_dollar] = ACTIONS(1173), + [sym__brace_start] = ACTIONS(1173), }, [339] = { - [aux_sym_concatenation_repeat1] = STATE(339), - [sym_word] = ACTIONS(1170), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_EQ] = ACTIONS(1170), - [anon_sym_DASH_EQ] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1170), - [anon_sym_SLASH_EQ] = ACTIONS(1170), - [anon_sym_PERCENT_EQ] = ACTIONS(1170), - [anon_sym_LT_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_EQ] = ACTIONS(1170), - [anon_sym_CARET_EQ] = ACTIONS(1170), - [anon_sym_PIPE_EQ] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1170), - [anon_sym_RPAREN] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(1170), - [anon_sym_PIPE_AMP] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_AMP_GT] = ACTIONS(1170), - [anon_sym_AMP_GT_GT] = ACTIONS(1170), - [anon_sym_LT_AMP] = ACTIONS(1170), - [anon_sym_GT_AMP] = ACTIONS(1170), - [anon_sym_GT_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT_DASH] = ACTIONS(1170), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1170), - [anon_sym_LT_LT_LT] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1170), - [aux_sym_concatenation_token1] = ACTIONS(1232), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym__special_character] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_raw_string] = ACTIONS(1170), - [sym_ansi_c_string] = ACTIONS(1170), - [aux_sym_number_token1] = ACTIONS(1170), - [aux_sym_number_token2] = ACTIONS(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1170), - [anon_sym_BQUOTE] = ACTIONS(1170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1170), - [anon_sym_LT_LPAREN] = ACTIONS(1170), - [anon_sym_GT_LPAREN] = ACTIONS(1170), + [sym_word] = ACTIONS(1211), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1211), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1211), + [anon_sym_DASH_EQ] = ACTIONS(1211), + [anon_sym_STAR_EQ] = ACTIONS(1211), + [anon_sym_SLASH_EQ] = ACTIONS(1211), + [anon_sym_PERCENT_EQ] = ACTIONS(1211), + [anon_sym_LT_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_GT_EQ] = ACTIONS(1211), + [anon_sym_AMP_EQ] = ACTIONS(1211), + [anon_sym_CARET_EQ] = ACTIONS(1211), + [anon_sym_PIPE_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_SEMI_SEMI] = ACTIONS(1211), + [anon_sym_PIPE_AMP] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_GT] = ACTIONS(1211), + [anon_sym_AMP_GT_GT] = ACTIONS(1211), + [anon_sym_LT_AMP] = ACTIONS(1211), + [anon_sym_GT_AMP] = ACTIONS(1211), + [anon_sym_GT_PIPE] = ACTIONS(1211), + [anon_sym_LT_LT_DASH] = ACTIONS(1211), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1213), + [anon_sym_LT_LT_LT] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1211), + [aux_sym_concatenation_token1] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [sym__special_character] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym_raw_string] = ACTIONS(1211), + [sym_ansi_c_string] = ACTIONS(1211), + [aux_sym_number_token1] = ACTIONS(1211), + [aux_sym_number_token2] = ACTIONS(1211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1211), + [anon_sym_LT_LPAREN] = ACTIONS(1211), + [anon_sym_GT_LPAREN] = ACTIONS(1211), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1170), - [sym_file_descriptor] = ACTIONS(1175), - [sym__concat] = ACTIONS(1235), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(1213), + [sym__concat] = ACTIONS(1213), + [sym_test_operator] = ACTIONS(1213), + [sym__bare_dollar] = ACTIONS(1213), + [sym__brace_start] = ACTIONS(1213), }, [340] = { - [sym_word] = ACTIONS(1238), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1238), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1238), - [anon_sym_DASH_EQ] = ACTIONS(1238), - [anon_sym_STAR_EQ] = ACTIONS(1238), - [anon_sym_SLASH_EQ] = ACTIONS(1238), - [anon_sym_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_LT_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP_EQ] = ACTIONS(1238), - [anon_sym_CARET_EQ] = ACTIONS(1238), - [anon_sym_PIPE_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1238), - [anon_sym_BANG_EQ] = ACTIONS(1238), - [anon_sym_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_STAR_STAR] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_RPAREN] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_SEMI_SEMI] = ACTIONS(1238), - [anon_sym_PIPE_AMP] = ACTIONS(1238), - [anon_sym_EQ_TILDE] = ACTIONS(1238), - [anon_sym_AMP_GT] = ACTIONS(1238), - [anon_sym_AMP_GT_GT] = ACTIONS(1238), - [anon_sym_LT_AMP] = ACTIONS(1238), - [anon_sym_GT_AMP] = ACTIONS(1238), - [anon_sym_GT_PIPE] = ACTIONS(1238), - [anon_sym_LT_LT_DASH] = ACTIONS(1238), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1238), - [anon_sym_LT_LT_LT] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1238), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1238), - [aux_sym_concatenation_token1] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1238), - [sym__special_character] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_raw_string] = ACTIONS(1238), - [sym_ansi_c_string] = ACTIONS(1238), - [aux_sym_number_token1] = ACTIONS(1238), - [aux_sym_number_token2] = ACTIONS(1238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1238), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1238), - [anon_sym_LT_LPAREN] = ACTIONS(1238), - [anon_sym_GT_LPAREN] = ACTIONS(1238), + [sym_word] = ACTIONS(1215), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_EQ] = ACTIONS(1215), + [anon_sym_DASH_EQ] = ACTIONS(1215), + [anon_sym_STAR_EQ] = ACTIONS(1215), + [anon_sym_SLASH_EQ] = ACTIONS(1215), + [anon_sym_PERCENT_EQ] = ACTIONS(1215), + [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(1215), + [anon_sym_PIPE_EQ] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_GT] = ACTIONS(1215), + [anon_sym_AMP_GT_GT] = ACTIONS(1215), + [anon_sym_LT_AMP] = ACTIONS(1215), + [anon_sym_GT_AMP] = ACTIONS(1215), + [anon_sym_GT_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT_DASH] = ACTIONS(1215), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1217), + [anon_sym_LT_LT_LT] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), + [aux_sym_concatenation_token1] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [sym__special_character] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym_raw_string] = ACTIONS(1215), + [sym_ansi_c_string] = ACTIONS(1215), + [aux_sym_number_token1] = ACTIONS(1215), + [aux_sym_number_token2] = ACTIONS(1215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1238), - [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(1240), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1217), + [sym__concat] = ACTIONS(1217), + [sym_test_operator] = ACTIONS(1217), + [sym__bare_dollar] = ACTIONS(1217), + [sym__brace_start] = ACTIONS(1217), }, [341] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [aux_sym_concatenation_repeat1] = STATE(334), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [aux_sym_concatenation_token1] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(338), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [342] = { - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_GT_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), - [aux_sym_concatenation_token1] = ACTIONS(1246), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_raw_string] = ACTIONS(1246), - [sym_ansi_c_string] = ACTIONS(1246), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), - [anon_sym_LT_LPAREN] = ACTIONS(1246), - [anon_sym_GT_LPAREN] = ACTIONS(1246), + [sym_word] = ACTIONS(1219), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1219), + [anon_sym_RPAREN_RPAREN] = 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_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_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_PIPE] = 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_LT_DASH] = ACTIONS(1219), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = 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_test_operator] = ACTIONS(1246), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1248), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), + [sym_file_descriptor] = ACTIONS(1221), + [sym__concat] = ACTIONS(1221), + [sym_test_operator] = ACTIONS(1221), + [sym__bare_dollar] = ACTIONS(1221), + [sym__brace_start] = ACTIONS(1221), }, [343] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym_word] = ACTIONS(1223), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1223), + [anon_sym_RPAREN_RPAREN] = 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_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_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_PIPE] = 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_LT_DASH] = ACTIONS(1223), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1223), + [aux_sym_concatenation_token1] = 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_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1225), + [sym__concat] = ACTIONS(1225), + [sym_test_operator] = ACTIONS(1225), + [sym__bare_dollar] = ACTIONS(1225), + [sym__brace_start] = ACTIONS(1225), }, [344] = { - [sym_word] = ACTIONS(1250), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1250), - [anon_sym_DASH_EQ] = ACTIONS(1250), - [anon_sym_STAR_EQ] = ACTIONS(1250), - [anon_sym_SLASH_EQ] = ACTIONS(1250), - [anon_sym_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_LT_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_EQ] = ACTIONS(1250), - [anon_sym_CARET_EQ] = ACTIONS(1250), - [anon_sym_PIPE_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_STAR_STAR] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_SEMI_SEMI] = ACTIONS(1250), - [anon_sym_PIPE_AMP] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1250), - [anon_sym_AMP_GT] = ACTIONS(1250), - [anon_sym_AMP_GT_GT] = ACTIONS(1250), - [anon_sym_LT_AMP] = ACTIONS(1250), - [anon_sym_GT_AMP] = ACTIONS(1250), - [anon_sym_GT_PIPE] = ACTIONS(1250), - [anon_sym_LT_LT_DASH] = ACTIONS(1250), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1250), - [aux_sym_concatenation_token1] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1250), - [sym__special_character] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_raw_string] = ACTIONS(1250), - [sym_ansi_c_string] = ACTIONS(1250), - [aux_sym_number_token1] = ACTIONS(1250), - [aux_sym_number_token2] = ACTIONS(1250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1250), - [anon_sym_BQUOTE] = ACTIONS(1250), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1250), - [anon_sym_LT_LPAREN] = ACTIONS(1250), - [anon_sym_GT_LPAREN] = ACTIONS(1250), + [sym_word] = ACTIONS(1227), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN_RPAREN] = 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_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_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_PIPE] = 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_LT_DASH] = ACTIONS(1227), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1229), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1227), + [aux_sym_concatenation_token1] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(1227), + [sym_ansi_c_string] = ACTIONS(1227), + [aux_sym_number_token1] = ACTIONS(1227), + [aux_sym_number_token2] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1250), - [sym_file_descriptor] = ACTIONS(1252), - [sym__concat] = ACTIONS(1252), - [sym__bare_dollar] = ACTIONS(1252), - [sym__brace_start] = ACTIONS(1252), + [sym_file_descriptor] = ACTIONS(1229), + [sym__concat] = ACTIONS(1229), + [sym_test_operator] = ACTIONS(1229), + [sym__bare_dollar] = ACTIONS(1229), + [sym__brace_start] = ACTIONS(1229), }, [345] = { - [sym_word] = ACTIONS(1254), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_STAR_EQ] = ACTIONS(1254), - [anon_sym_SLASH_EQ] = ACTIONS(1254), - [anon_sym_PERCENT_EQ] = ACTIONS(1254), - [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(1254), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_SEMI_SEMI] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_LT_AMP] = ACTIONS(1254), - [anon_sym_GT_AMP] = ACTIONS(1254), - [anon_sym_GT_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT_DASH] = ACTIONS(1254), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), - [aux_sym_concatenation_token1] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1254), - [sym__special_character] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_ansi_c_string] = ACTIONS(1254), - [aux_sym_number_token1] = ACTIONS(1254), - [aux_sym_number_token2] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), + [sym_word] = ACTIONS(1231), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1231), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_GT_PIPE] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1231), + [aux_sym_concatenation_token1] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_ansi_c_string] = ACTIONS(1231), + [aux_sym_number_token1] = ACTIONS(1231), + [aux_sym_number_token2] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1256), - [sym__concat] = ACTIONS(1256), - [sym__bare_dollar] = ACTIONS(1256), - [sym__brace_start] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [sym_test_operator] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, [346] = { - [aux_sym_concatenation_repeat1] = STATE(339), - [sym_word] = ACTIONS(1190), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1190), - [anon_sym_SEMI] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_EQ] = ACTIONS(1190), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1190), - [anon_sym_PIPE_PIPE] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_RPAREN] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_SEMI_SEMI] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1190), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1190), - [anon_sym_LT_AMP] = ACTIONS(1190), - [anon_sym_GT_AMP] = ACTIONS(1190), - [anon_sym_GT_PIPE] = ACTIONS(1190), - [anon_sym_LT_LT_DASH] = ACTIONS(1190), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1190), - [anon_sym_LT_LT_LT] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1190), - [aux_sym_concatenation_token1] = ACTIONS(316), - [anon_sym_DOLLAR] = ACTIONS(1190), - [sym__special_character] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1190), - [sym_raw_string] = ACTIONS(1190), - [sym_ansi_c_string] = ACTIONS(1190), - [aux_sym_number_token1] = ACTIONS(1190), - [aux_sym_number_token2] = ACTIONS(1190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1190), - [anon_sym_LT_LPAREN] = ACTIONS(1190), - [anon_sym_GT_LPAREN] = ACTIONS(1190), + [sym_word] = ACTIONS(1235), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1235), + [aux_sym_concatenation_token1] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1190), - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1258), - [sym__bare_dollar] = ACTIONS(1192), - [sym__brace_start] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_test_operator] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), }, [347] = { - [aux_sym_concatenation_repeat1] = STATE(339), - [sym_word] = ACTIONS(1184), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1184), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_PERCENT_EQ] = ACTIONS(1184), - [anon_sym_LT_LT_EQ] = ACTIONS(1184), - [anon_sym_GT_GT_EQ] = ACTIONS(1184), - [anon_sym_AMP_EQ] = ACTIONS(1184), - [anon_sym_CARET_EQ] = ACTIONS(1184), - [anon_sym_PIPE_EQ] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_AMP_AMP] = ACTIONS(1184), - [anon_sym_PIPE_PIPE] = ACTIONS(1184), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_STAR_STAR] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_RPAREN] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_SEMI_SEMI] = ACTIONS(1184), - [anon_sym_PIPE_AMP] = ACTIONS(1184), - [anon_sym_EQ_TILDE] = ACTIONS(1184), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1184), - [anon_sym_LT_AMP] = ACTIONS(1184), - [anon_sym_GT_AMP] = ACTIONS(1184), - [anon_sym_GT_PIPE] = ACTIONS(1184), - [anon_sym_LT_LT_DASH] = ACTIONS(1184), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1184), - [anon_sym_LT_LT_LT] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1184), - [aux_sym_concatenation_token1] = ACTIONS(316), - [anon_sym_DOLLAR] = ACTIONS(1184), - [sym__special_character] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_raw_string] = ACTIONS(1184), - [sym_ansi_c_string] = ACTIONS(1184), - [aux_sym_number_token1] = ACTIONS(1184), - [aux_sym_number_token2] = ACTIONS(1184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1184), - [anon_sym_LT_LPAREN] = ACTIONS(1184), - [anon_sym_GT_LPAREN] = ACTIONS(1184), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_SEMI_SEMI] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1205), + [anon_sym_LT_AMP] = ACTIONS(1205), + [anon_sym_GT_AMP] = ACTIONS(1205), + [anon_sym_GT_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT_DASH] = ACTIONS(1205), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1207), + [anon_sym_LT_LT_LT] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), + [aux_sym_concatenation_token1] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1205), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_raw_string] = ACTIONS(1205), + [sym_ansi_c_string] = ACTIONS(1205), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), + [anon_sym_LT_LPAREN] = ACTIONS(1205), + [anon_sym_GT_LPAREN] = ACTIONS(1205), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1184), - [sym_file_descriptor] = ACTIONS(1186), - [sym__concat] = ACTIONS(1260), - [sym__bare_dollar] = ACTIONS(1186), - [sym__brace_start] = ACTIONS(1186), + [sym_file_descriptor] = ACTIONS(1207), + [sym__concat] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1207), + [sym__bare_dollar] = ACTIONS(1207), + [sym__brace_start] = ACTIONS(1207), }, [348] = { - [sym_word] = ACTIONS(1262), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1262), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [anon_sym_DASH_EQ] = ACTIONS(1262), - [anon_sym_STAR_EQ] = ACTIONS(1262), - [anon_sym_SLASH_EQ] = ACTIONS(1262), - [anon_sym_PERCENT_EQ] = ACTIONS(1262), - [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(1262), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1262), - [anon_sym_GT_GT] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1262), - [anon_sym_STAR_STAR] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_SEMI_SEMI] = ACTIONS(1262), - [anon_sym_PIPE_AMP] = ACTIONS(1262), - [anon_sym_EQ_TILDE] = ACTIONS(1262), - [anon_sym_AMP_GT] = ACTIONS(1262), - [anon_sym_AMP_GT_GT] = ACTIONS(1262), - [anon_sym_LT_AMP] = ACTIONS(1262), - [anon_sym_GT_AMP] = ACTIONS(1262), - [anon_sym_GT_PIPE] = ACTIONS(1262), - [anon_sym_LT_LT_DASH] = ACTIONS(1262), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1262), - [anon_sym_LT_LT_LT] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1262), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), - [aux_sym_concatenation_token1] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1262), - [sym__special_character] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_raw_string] = ACTIONS(1262), - [sym_ansi_c_string] = ACTIONS(1262), - [aux_sym_number_token1] = ACTIONS(1262), - [aux_sym_number_token2] = ACTIONS(1262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), - [anon_sym_BQUOTE] = ACTIONS(1262), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), - [anon_sym_LT_LPAREN] = ACTIONS(1262), - [anon_sym_GT_LPAREN] = ACTIONS(1262), + [aux_sym_concatenation_repeat1] = STATE(338), + [sym_word] = ACTIONS(1167), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_STAR_EQ] = ACTIONS(1167), + [anon_sym_SLASH_EQ] = ACTIONS(1167), + [anon_sym_PERCENT_EQ] = ACTIONS(1167), + [anon_sym_LT_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_EQ] = ACTIONS(1167), + [anon_sym_CARET_EQ] = ACTIONS(1167), + [anon_sym_PIPE_EQ] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT] = ACTIONS(1167), + [anon_sym_GT_GT] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1167), + [anon_sym_RPAREN] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1167), + [anon_sym_SEMI_SEMI] = ACTIONS(1167), + [anon_sym_PIPE_AMP] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_AMP_GT] = ACTIONS(1167), + [anon_sym_AMP_GT_GT] = ACTIONS(1167), + [anon_sym_LT_AMP] = ACTIONS(1167), + [anon_sym_GT_AMP] = ACTIONS(1167), + [anon_sym_GT_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT_DASH] = ACTIONS(1167), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1169), + [anon_sym_LT_LT_LT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_QMARK] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1167), + [aux_sym_concatenation_token1] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(1167), + [sym__special_character] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_raw_string] = ACTIONS(1167), + [sym_ansi_c_string] = ACTIONS(1167), + [aux_sym_number_token1] = ACTIONS(1167), + [aux_sym_number_token2] = ACTIONS(1167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1167), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1167), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1262), - [sym_file_descriptor] = ACTIONS(1264), - [sym__concat] = ACTIONS(1264), - [sym__bare_dollar] = ACTIONS(1264), - [sym__brace_start] = ACTIONS(1264), + [sym_file_descriptor] = ACTIONS(1169), + [sym__concat] = ACTIONS(338), + [sym_test_operator] = ACTIONS(1169), + [sym__bare_dollar] = ACTIONS(1169), + [sym__brace_start] = ACTIONS(1169), }, [349] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym_word] = ACTIONS(1180), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_EQ] = ACTIONS(1180), - [anon_sym_DASH_EQ] = ACTIONS(1180), - [anon_sym_STAR_EQ] = ACTIONS(1180), - [anon_sym_SLASH_EQ] = ACTIONS(1180), - [anon_sym_PERCENT_EQ] = ACTIONS(1180), - [anon_sym_LT_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_EQ] = ACTIONS(1180), - [anon_sym_CARET_EQ] = ACTIONS(1180), - [anon_sym_PIPE_EQ] = ACTIONS(1180), - [anon_sym_EQ_EQ] = ACTIONS(1180), - [anon_sym_BANG_EQ] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_SEMI_SEMI] = ACTIONS(1180), - [anon_sym_PIPE_AMP] = ACTIONS(1180), - [anon_sym_EQ_TILDE] = ACTIONS(1180), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1180), - [anon_sym_LT_AMP] = ACTIONS(1180), - [anon_sym_GT_AMP] = ACTIONS(1180), - [anon_sym_GT_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT_DASH] = ACTIONS(1180), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1180), - [anon_sym_LT_LT_LT] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1180), - [aux_sym_concatenation_token1] = ACTIONS(316), - [anon_sym_DOLLAR] = ACTIONS(1180), - [sym__special_character] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_raw_string] = ACTIONS(1180), - [sym_ansi_c_string] = ACTIONS(1180), - [aux_sym_number_token1] = ACTIONS(1180), - [aux_sym_number_token2] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1180), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1180), - [anon_sym_GT_LPAREN] = ACTIONS(1180), + [sym_word] = ACTIONS(1239), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1239), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_SEMI_SEMI] = ACTIONS(1239), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1239), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_AMP] = ACTIONS(1239), + [anon_sym_GT_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT_DASH] = ACTIONS(1239), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1239), + [aux_sym_concatenation_token1] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [sym__special_character] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_raw_string] = ACTIONS(1239), + [sym_ansi_c_string] = ACTIONS(1239), + [aux_sym_number_token1] = ACTIONS(1239), + [aux_sym_number_token2] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1239), + [anon_sym_LT_LPAREN] = ACTIONS(1239), + [anon_sym_GT_LPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1180), - [sym_file_descriptor] = ACTIONS(1182), - [sym__concat] = ACTIONS(340), - [sym__bare_dollar] = ACTIONS(1182), - [sym__brace_start] = ACTIONS(1182), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_test_operator] = ACTIONS(1241), + [sym__bare_dollar] = ACTIONS(1241), + [sym__brace_start] = ACTIONS(1241), }, [350] = { - [sym_word] = ACTIONS(1266), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_EQ] = ACTIONS(1266), - [anon_sym_DASH_EQ] = ACTIONS(1266), - [anon_sym_STAR_EQ] = ACTIONS(1266), - [anon_sym_SLASH_EQ] = ACTIONS(1266), - [anon_sym_PERCENT_EQ] = ACTIONS(1266), - [anon_sym_LT_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_EQ] = ACTIONS(1266), - [anon_sym_CARET_EQ] = ACTIONS(1266), - [anon_sym_PIPE_EQ] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1266), - [anon_sym_BANG_EQ] = ACTIONS(1266), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_AMP] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1266), - [anon_sym_STAR_STAR] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_RPAREN] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_SEMI_SEMI] = ACTIONS(1266), - [anon_sym_PIPE_AMP] = ACTIONS(1266), - [anon_sym_EQ_TILDE] = ACTIONS(1266), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(1266), - [anon_sym_LT_AMP] = ACTIONS(1266), - [anon_sym_GT_AMP] = ACTIONS(1266), - [anon_sym_GT_PIPE] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(1266), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), - [aux_sym_concatenation_token1] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1266), - [sym__special_character] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_raw_string] = ACTIONS(1266), - [sym_ansi_c_string] = ACTIONS(1266), - [aux_sym_number_token1] = ACTIONS(1266), - [aux_sym_number_token2] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), - [anon_sym_BQUOTE] = ACTIONS(1266), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), - [anon_sym_LT_LPAREN] = ACTIONS(1266), - [anon_sym_GT_LPAREN] = ACTIONS(1266), + [sym_word] = ACTIONS(1243), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1243), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_EQ] = ACTIONS(1243), + [anon_sym_DASH_EQ] = ACTIONS(1243), + [anon_sym_STAR_EQ] = ACTIONS(1243), + [anon_sym_SLASH_EQ] = ACTIONS(1243), + [anon_sym_PERCENT_EQ] = ACTIONS(1243), + [anon_sym_LT_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_GT_EQ] = ACTIONS(1243), + [anon_sym_AMP_EQ] = ACTIONS(1243), + [anon_sym_CARET_EQ] = ACTIONS(1243), + [anon_sym_PIPE_EQ] = ACTIONS(1243), + [anon_sym_EQ_EQ] = ACTIONS(1243), + [anon_sym_BANG_EQ] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_EQ] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1243), + [anon_sym_STAR_STAR] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_GT_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1245), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1243), + [aux_sym_concatenation_token1] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [sym__special_character] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1243), + [sym_ansi_c_string] = ACTIONS(1243), + [aux_sym_number_token1] = ACTIONS(1243), + [aux_sym_number_token2] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1266), - [sym_file_descriptor] = ACTIONS(1268), - [sym__concat] = ACTIONS(1268), - [sym__bare_dollar] = ACTIONS(1268), - [sym__brace_start] = ACTIONS(1268), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(1245), + [sym_test_operator] = ACTIONS(1245), + [sym__bare_dollar] = ACTIONS(1245), + [sym__brace_start] = ACTIONS(1245), }, [351] = { - [sym_word] = ACTIONS(1270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), - [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(1270), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_RPAREN] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_SEMI_SEMI] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), + [sym_word] = ACTIONS(1247), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1247), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1247), + [anon_sym_DASH_EQ] = ACTIONS(1247), + [anon_sym_STAR_EQ] = ACTIONS(1247), + [anon_sym_SLASH_EQ] = ACTIONS(1247), + [anon_sym_PERCENT_EQ] = ACTIONS(1247), + [anon_sym_LT_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_GT_EQ] = ACTIONS(1247), + [anon_sym_AMP_EQ] = ACTIONS(1247), + [anon_sym_CARET_EQ] = ACTIONS(1247), + [anon_sym_PIPE_EQ] = ACTIONS(1247), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1247), + [anon_sym_STAR_STAR] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_GT_PIPE] = ACTIONS(1247), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1249), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1247), + [aux_sym_concatenation_token1] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1247), + [sym__special_character] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_raw_string] = ACTIONS(1247), + [sym_ansi_c_string] = ACTIONS(1247), + [aux_sym_number_token1] = ACTIONS(1247), + [aux_sym_number_token2] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1272), - [sym__concat] = ACTIONS(1272), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), + [sym_file_descriptor] = ACTIONS(1249), + [sym__concat] = ACTIONS(1249), + [sym_test_operator] = ACTIONS(1249), + [sym__bare_dollar] = ACTIONS(1249), + [sym__brace_start] = ACTIONS(1249), }, [352] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1253), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1253), + [sym__concat] = ACTIONS(1253), + [sym_test_operator] = ACTIONS(1253), + [sym__bare_dollar] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1253), }, [353] = { - [sym_word] = ACTIONS(1238), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1238), - [anon_sym_DASH_EQ] = ACTIONS(1238), - [anon_sym_STAR_EQ] = ACTIONS(1238), - [anon_sym_SLASH_EQ] = ACTIONS(1238), - [anon_sym_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_LT_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP_EQ] = ACTIONS(1238), - [anon_sym_CARET_EQ] = ACTIONS(1238), - [anon_sym_PIPE_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1238), - [anon_sym_BANG_EQ] = ACTIONS(1238), - [anon_sym_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_STAR_STAR] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_RPAREN] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_SEMI_SEMI] = ACTIONS(1238), - [anon_sym_PIPE_AMP] = ACTIONS(1238), - [anon_sym_EQ_TILDE] = ACTIONS(1238), - [anon_sym_AMP_GT] = ACTIONS(1238), - [anon_sym_AMP_GT_GT] = ACTIONS(1238), - [anon_sym_LT_AMP] = ACTIONS(1238), - [anon_sym_GT_AMP] = ACTIONS(1238), - [anon_sym_GT_PIPE] = ACTIONS(1238), - [anon_sym_LT_LT_DASH] = ACTIONS(1238), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1238), - [anon_sym_LT_LT_LT] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1238), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1238), - [aux_sym_concatenation_token1] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1238), - [sym__special_character] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_raw_string] = ACTIONS(1238), - [sym_ansi_c_string] = ACTIONS(1238), - [aux_sym_number_token1] = ACTIONS(1238), - [aux_sym_number_token2] = ACTIONS(1238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1238), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1238), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1238), - [anon_sym_LT_LPAREN] = ACTIONS(1238), - [anon_sym_GT_LPAREN] = ACTIONS(1238), + [sym_word] = ACTIONS(1255), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1255), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1255), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [anon_sym_GT_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT_DASH] = ACTIONS(1255), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1257), + [anon_sym_LT_LT_LT] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1255), + [aux_sym_concatenation_token1] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [sym__special_character] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym_raw_string] = ACTIONS(1255), + [sym_ansi_c_string] = ACTIONS(1255), + [aux_sym_number_token1] = ACTIONS(1255), + [aux_sym_number_token2] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1238), - [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(1240), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1257), + [sym__concat] = ACTIONS(1257), + [sym_test_operator] = ACTIONS(1257), + [sym__bare_dollar] = ACTIONS(1257), + [sym__brace_start] = ACTIONS(1257), }, [354] = { - [sym_word] = ACTIONS(1250), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1250), - [anon_sym_DASH_EQ] = ACTIONS(1250), - [anon_sym_STAR_EQ] = ACTIONS(1250), - [anon_sym_SLASH_EQ] = ACTIONS(1250), - [anon_sym_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_LT_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_EQ] = ACTIONS(1250), - [anon_sym_CARET_EQ] = ACTIONS(1250), - [anon_sym_PIPE_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_STAR_STAR] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_SEMI_SEMI] = ACTIONS(1250), - [anon_sym_PIPE_AMP] = ACTIONS(1250), - [anon_sym_EQ_TILDE] = ACTIONS(1250), - [anon_sym_AMP_GT] = ACTIONS(1250), - [anon_sym_AMP_GT_GT] = ACTIONS(1250), - [anon_sym_LT_AMP] = ACTIONS(1250), - [anon_sym_GT_AMP] = ACTIONS(1250), - [anon_sym_GT_PIPE] = ACTIONS(1250), - [anon_sym_LT_LT_DASH] = ACTIONS(1250), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1250), - [aux_sym_concatenation_token1] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1250), - [sym__special_character] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_raw_string] = ACTIONS(1250), - [sym_ansi_c_string] = ACTIONS(1250), - [aux_sym_number_token1] = ACTIONS(1250), - [aux_sym_number_token2] = ACTIONS(1250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1250), - [anon_sym_BQUOTE] = ACTIONS(1250), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1250), - [anon_sym_LT_LPAREN] = ACTIONS(1250), - [anon_sym_GT_LPAREN] = ACTIONS(1250), + [sym_word] = ACTIONS(1183), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_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_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_STAR_STAR] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_SEMI_SEMI] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = 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_LT_DASH] = ACTIONS(1183), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1185), + [anon_sym_LT_LT_LT] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), + [aux_sym_concatenation_token1] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1183), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1183), + [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_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), - [sym_test_operator] = ACTIONS(1250), - [sym_file_descriptor] = ACTIONS(1252), - [sym__concat] = ACTIONS(1252), - [sym__bare_dollar] = ACTIONS(1252), - [sym__brace_start] = ACTIONS(1252), + [sym_file_descriptor] = ACTIONS(1185), + [sym__concat] = ACTIONS(1185), + [sym_test_operator] = ACTIONS(1185), + [sym__bare_dollar] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1185), }, [355] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_SEMI_SEMI] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1242), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1242), - [anon_sym_LT_AMP] = ACTIONS(1242), - [anon_sym_GT_AMP] = ACTIONS(1242), - [anon_sym_GT_PIPE] = ACTIONS(1242), - [anon_sym_LT_LT_DASH] = ACTIONS(1242), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1242), - [anon_sym_LT_LT_LT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1242), - [aux_sym_concatenation_token1] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_raw_string] = ACTIONS(1242), - [sym_ansi_c_string] = ACTIONS(1242), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1242), - [anon_sym_LT_LPAREN] = ACTIONS(1242), - [anon_sym_GT_LPAREN] = ACTIONS(1242), + [sym_word] = ACTIONS(1259), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1259), + [anon_sym_DASH_EQ] = ACTIONS(1259), + [anon_sym_STAR_EQ] = ACTIONS(1259), + [anon_sym_SLASH_EQ] = ACTIONS(1259), + [anon_sym_PERCENT_EQ] = ACTIONS(1259), + [anon_sym_LT_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_GT_EQ] = ACTIONS(1259), + [anon_sym_AMP_EQ] = ACTIONS(1259), + [anon_sym_CARET_EQ] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1259), + [anon_sym_PIPE_PIPE] = ACTIONS(1259), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_STAR_STAR] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_SEMI_SEMI] = ACTIONS(1259), + [anon_sym_PIPE_AMP] = ACTIONS(1259), + [anon_sym_EQ_TILDE] = ACTIONS(1259), + [anon_sym_AMP_GT] = ACTIONS(1259), + [anon_sym_AMP_GT_GT] = ACTIONS(1259), + [anon_sym_LT_AMP] = ACTIONS(1259), + [anon_sym_GT_AMP] = ACTIONS(1259), + [anon_sym_GT_PIPE] = ACTIONS(1259), + [anon_sym_LT_LT_DASH] = ACTIONS(1259), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1261), + [anon_sym_LT_LT_LT] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1259), + [aux_sym_concatenation_token1] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [sym__special_character] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym_raw_string] = ACTIONS(1259), + [sym_ansi_c_string] = ACTIONS(1259), + [aux_sym_number_token1] = ACTIONS(1259), + [aux_sym_number_token2] = ACTIONS(1259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), + [anon_sym_BQUOTE] = ACTIONS(1259), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1259), + [anon_sym_LT_LPAREN] = ACTIONS(1259), + [anon_sym_GT_LPAREN] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1242), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1261), + [sym__concat] = ACTIONS(1261), + [sym_test_operator] = ACTIONS(1261), + [sym__bare_dollar] = ACTIONS(1261), + [sym__brace_start] = ACTIONS(1261), }, [356] = { - [sym_word] = ACTIONS(1212), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_EQ] = ACTIONS(1212), - [anon_sym_DASH_EQ] = ACTIONS(1212), - [anon_sym_STAR_EQ] = ACTIONS(1212), - [anon_sym_SLASH_EQ] = ACTIONS(1212), - [anon_sym_PERCENT_EQ] = ACTIONS(1212), - [anon_sym_LT_LT_EQ] = ACTIONS(1212), - [anon_sym_GT_GT_EQ] = ACTIONS(1212), - [anon_sym_AMP_EQ] = ACTIONS(1212), - [anon_sym_CARET_EQ] = ACTIONS(1212), - [anon_sym_PIPE_EQ] = ACTIONS(1212), - [anon_sym_EQ_EQ] = ACTIONS(1212), - [anon_sym_BANG_EQ] = ACTIONS(1212), - [anon_sym_LT_EQ] = ACTIONS(1212), - [anon_sym_GT_EQ] = ACTIONS(1212), - [anon_sym_AMP_AMP] = ACTIONS(1212), - [anon_sym_PIPE_PIPE] = ACTIONS(1212), - [anon_sym_LT_LT] = ACTIONS(1212), - [anon_sym_GT_GT] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_SLASH] = ACTIONS(1212), - [anon_sym_PERCENT] = ACTIONS(1212), - [anon_sym_STAR_STAR] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_SEMI_SEMI] = ACTIONS(1212), - [anon_sym_PIPE_AMP] = ACTIONS(1212), - [anon_sym_EQ_TILDE] = ACTIONS(1212), - [anon_sym_AMP_GT] = ACTIONS(1212), - [anon_sym_AMP_GT_GT] = ACTIONS(1212), - [anon_sym_LT_AMP] = ACTIONS(1212), - [anon_sym_GT_AMP] = ACTIONS(1212), - [anon_sym_GT_PIPE] = ACTIONS(1212), - [anon_sym_LT_LT_DASH] = ACTIONS(1212), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1212), - [anon_sym_LT_LT_LT] = ACTIONS(1212), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_CARET] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1212), - [aux_sym_concatenation_token1] = ACTIONS(1212), - [anon_sym_DOLLAR] = ACTIONS(1212), - [sym__special_character] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_raw_string] = ACTIONS(1212), - [sym_ansi_c_string] = ACTIONS(1212), - [aux_sym_number_token1] = ACTIONS(1212), - [aux_sym_number_token2] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1212), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1212), - [anon_sym_GT_LPAREN] = ACTIONS(1212), + [sym_word] = ACTIONS(1263), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1263), + [anon_sym_DASH_EQ] = ACTIONS(1263), + [anon_sym_STAR_EQ] = ACTIONS(1263), + [anon_sym_SLASH_EQ] = ACTIONS(1263), + [anon_sym_PERCENT_EQ] = ACTIONS(1263), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_STAR_STAR] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1265), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [aux_sym_concatenation_token1] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym__special_character] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), + [aux_sym_number_token1] = ACTIONS(1263), + [aux_sym_number_token2] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1212), - [sym_file_descriptor] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [sym__bare_dollar] = ACTIONS(1214), - [sym__brace_start] = ACTIONS(1214), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(1265), + [sym_test_operator] = ACTIONS(1265), + [sym__bare_dollar] = ACTIONS(1265), + [sym__brace_start] = ACTIONS(1265), }, [357] = { - [aux_sym__literal_repeat1] = STATE(373), - [sym_word] = ACTIONS(189), - [anon_sym_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_RPAREN_RPAREN] = ACTIONS(187), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(187), - [anon_sym_GT_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_EQ] = ACTIONS(187), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(187), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(187), - [anon_sym_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_GT_PIPE] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [aux_sym_heredoc_redirect_token1] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_ansi_c_string] = ACTIONS(189), - [aux_sym_number_token1] = ACTIONS(189), - [aux_sym_number_token2] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_word] = ACTIONS(1267), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1267), + [anon_sym_DASH_EQ] = ACTIONS(1267), + [anon_sym_STAR_EQ] = ACTIONS(1267), + [anon_sym_SLASH_EQ] = ACTIONS(1267), + [anon_sym_PERCENT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_GT_EQ] = ACTIONS(1267), + [anon_sym_AMP_EQ] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_GT_PIPE] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), + [aux_sym_concatenation_token1] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym__special_character] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [sym_ansi_c_string] = ACTIONS(1267), + [aux_sym_number_token1] = ACTIONS(1267), + [aux_sym_number_token2] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(222), - [sym__bare_dollar] = ACTIONS(222), - [sym__brace_start] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_test_operator] = ACTIONS(1269), + [sym__bare_dollar] = ACTIONS(1269), + [sym__brace_start] = ACTIONS(1269), }, [358] = { - [sym_word] = ACTIONS(1204), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_EQ] = ACTIONS(1204), - [anon_sym_DASH_EQ] = ACTIONS(1204), - [anon_sym_STAR_EQ] = ACTIONS(1204), - [anon_sym_SLASH_EQ] = ACTIONS(1204), - [anon_sym_PERCENT_EQ] = ACTIONS(1204), - [anon_sym_LT_LT_EQ] = ACTIONS(1204), - [anon_sym_GT_GT_EQ] = ACTIONS(1204), - [anon_sym_AMP_EQ] = ACTIONS(1204), - [anon_sym_CARET_EQ] = ACTIONS(1204), - [anon_sym_PIPE_EQ] = ACTIONS(1204), - [anon_sym_EQ_EQ] = ACTIONS(1204), - [anon_sym_BANG_EQ] = ACTIONS(1204), - [anon_sym_LT_EQ] = ACTIONS(1204), - [anon_sym_GT_EQ] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(1204), - [anon_sym_PIPE_PIPE] = ACTIONS(1204), - [anon_sym_LT_LT] = ACTIONS(1204), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(1204), - [anon_sym_PERCENT] = ACTIONS(1204), - [anon_sym_STAR_STAR] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_SEMI_SEMI] = ACTIONS(1204), - [anon_sym_PIPE_AMP] = ACTIONS(1204), - [anon_sym_EQ_TILDE] = ACTIONS(1204), - [anon_sym_AMP_GT] = ACTIONS(1204), - [anon_sym_AMP_GT_GT] = ACTIONS(1204), - [anon_sym_LT_AMP] = ACTIONS(1204), - [anon_sym_GT_AMP] = ACTIONS(1204), - [anon_sym_GT_PIPE] = ACTIONS(1204), - [anon_sym_LT_LT_DASH] = ACTIONS(1204), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1204), - [anon_sym_LT_LT_LT] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_CARET] = ACTIONS(1204), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1204), - [aux_sym_concatenation_token1] = ACTIONS(1204), - [anon_sym_DOLLAR] = ACTIONS(1204), - [sym__special_character] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_raw_string] = ACTIONS(1204), - [sym_ansi_c_string] = ACTIONS(1204), - [aux_sym_number_token1] = ACTIONS(1204), - [aux_sym_number_token2] = ACTIONS(1204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1204), - [anon_sym_BQUOTE] = ACTIONS(1204), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1204), - [anon_sym_LT_LPAREN] = ACTIONS(1204), - [anon_sym_GT_LPAREN] = ACTIONS(1204), + [sym_word] = ACTIONS(1183), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1183), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1183), + [anon_sym_DASH_DASH] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1183), + [anon_sym_DASH_EQ] = ACTIONS(1183), + [anon_sym_STAR_EQ] = ACTIONS(1183), + [anon_sym_SLASH_EQ] = ACTIONS(1183), + [anon_sym_PERCENT_EQ] = ACTIONS(1183), + [anon_sym_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_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_AMP_AMP] = ACTIONS(1183), + [anon_sym_PIPE_PIPE] = ACTIONS(1183), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_STAR_STAR] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_SEMI_SEMI] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = 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_LT_DASH] = ACTIONS(1183), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1185), + [anon_sym_LT_LT_LT] = ACTIONS(1183), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), + [aux_sym_concatenation_token1] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1183), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1183), + [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_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), - [sym_test_operator] = ACTIONS(1204), - [sym_file_descriptor] = ACTIONS(1206), - [sym__concat] = ACTIONS(1206), - [sym__bare_dollar] = ACTIONS(1206), - [sym__brace_start] = ACTIONS(1206), + [sym_file_descriptor] = ACTIONS(1185), + [sym__concat] = ACTIONS(1185), + [sym_test_operator] = ACTIONS(1185), + [sym__bare_dollar] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1185), }, [359] = { - [sym_word] = ACTIONS(1196), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_GT_EQ] = ACTIONS(1196), - [anon_sym_AMP_EQ] = ACTIONS(1196), - [anon_sym_CARET_EQ] = ACTIONS(1196), - [anon_sym_PIPE_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1196), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_STAR_STAR] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_SEMI_SEMI] = ACTIONS(1196), - [anon_sym_PIPE_AMP] = ACTIONS(1196), - [anon_sym_EQ_TILDE] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1196), - [anon_sym_AMP_GT_GT] = ACTIONS(1196), - [anon_sym_LT_AMP] = ACTIONS(1196), - [anon_sym_GT_AMP] = ACTIONS(1196), - [anon_sym_GT_PIPE] = ACTIONS(1196), - [anon_sym_LT_LT_DASH] = ACTIONS(1196), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1196), - [anon_sym_LT_LT_LT] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1196), - [aux_sym_concatenation_token1] = ACTIONS(1196), - [anon_sym_DOLLAR] = ACTIONS(1196), - [sym__special_character] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_raw_string] = ACTIONS(1196), - [sym_ansi_c_string] = ACTIONS(1196), - [aux_sym_number_token1] = ACTIONS(1196), - [aux_sym_number_token2] = ACTIONS(1196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1196), - [anon_sym_LT_LPAREN] = ACTIONS(1196), - [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_word] = ACTIONS(1219), + [anon_sym_LPAREN_LPAREN] = 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_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_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_PIPE] = 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_LT_DASH] = ACTIONS(1219), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = 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_test_operator] = ACTIONS(1196), - [sym_file_descriptor] = ACTIONS(1198), - [sym__concat] = ACTIONS(1198), - [sym__bare_dollar] = ACTIONS(1198), - [sym__brace_start] = ACTIONS(1198), + [sym_file_descriptor] = ACTIONS(1221), + [sym__concat] = ACTIONS(1221), + [sym_test_operator] = ACTIONS(1221), + [sym__bare_dollar] = ACTIONS(1221), + [sym__brace_start] = ACTIONS(1221), }, [360] = { - [sym_word] = ACTIONS(1216), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_EQ] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_EQ] = ACTIONS(1216), - [anon_sym_DASH_EQ] = ACTIONS(1216), - [anon_sym_STAR_EQ] = ACTIONS(1216), - [anon_sym_SLASH_EQ] = ACTIONS(1216), - [anon_sym_PERCENT_EQ] = ACTIONS(1216), - [anon_sym_LT_LT_EQ] = ACTIONS(1216), - [anon_sym_GT_GT_EQ] = ACTIONS(1216), - [anon_sym_AMP_EQ] = ACTIONS(1216), - [anon_sym_CARET_EQ] = ACTIONS(1216), - [anon_sym_PIPE_EQ] = ACTIONS(1216), - [anon_sym_EQ_EQ] = ACTIONS(1216), - [anon_sym_BANG_EQ] = ACTIONS(1216), - [anon_sym_LT_EQ] = ACTIONS(1216), - [anon_sym_GT_EQ] = ACTIONS(1216), - [anon_sym_AMP_AMP] = ACTIONS(1216), - [anon_sym_PIPE_PIPE] = ACTIONS(1216), - [anon_sym_LT_LT] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_SLASH] = ACTIONS(1216), - [anon_sym_PERCENT] = ACTIONS(1216), - [anon_sym_STAR_STAR] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_SEMI_SEMI] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1216), - [anon_sym_EQ_TILDE] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_AMP_GT_GT] = ACTIONS(1216), - [anon_sym_LT_AMP] = ACTIONS(1216), - [anon_sym_GT_AMP] = ACTIONS(1216), - [anon_sym_GT_PIPE] = ACTIONS(1216), - [anon_sym_LT_LT_DASH] = ACTIONS(1216), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1216), - [anon_sym_LT_LT_LT] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_CARET] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1216), - [aux_sym_concatenation_token1] = ACTIONS(1216), - [anon_sym_DOLLAR] = ACTIONS(1216), - [sym__special_character] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_raw_string] = ACTIONS(1216), - [sym_ansi_c_string] = ACTIONS(1216), - [aux_sym_number_token1] = ACTIONS(1216), - [aux_sym_number_token2] = ACTIONS(1216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1216), - [anon_sym_LT_LPAREN] = ACTIONS(1216), - [anon_sym_GT_LPAREN] = ACTIONS(1216), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1253), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [aux_sym_concatenation_token1] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1216), - [sym_file_descriptor] = ACTIONS(1218), - [sym__concat] = ACTIONS(1218), - [sym__bare_dollar] = ACTIONS(1218), - [sym__brace_start] = ACTIONS(1218), + [sym_file_descriptor] = ACTIONS(1253), + [sym__concat] = ACTIONS(1253), + [sym_test_operator] = ACTIONS(1253), + [sym__bare_dollar] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1253), }, [361] = { - [sym_word] = ACTIONS(1170), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1170), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_EQ] = ACTIONS(1170), - [anon_sym_DASH_EQ] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1170), - [anon_sym_SLASH_EQ] = ACTIONS(1170), - [anon_sym_PERCENT_EQ] = ACTIONS(1170), - [anon_sym_LT_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_EQ] = ACTIONS(1170), - [anon_sym_CARET_EQ] = ACTIONS(1170), - [anon_sym_PIPE_EQ] = ACTIONS(1170), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1170), - [anon_sym_GT_EQ] = ACTIONS(1170), - [anon_sym_AMP_AMP] = ACTIONS(1170), - [anon_sym_PIPE_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1170), - [anon_sym_RPAREN] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_SEMI_SEMI] = ACTIONS(1170), - [anon_sym_PIPE_AMP] = ACTIONS(1170), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_AMP_GT] = ACTIONS(1170), - [anon_sym_AMP_GT_GT] = ACTIONS(1170), - [anon_sym_LT_AMP] = ACTIONS(1170), - [anon_sym_GT_AMP] = ACTIONS(1170), - [anon_sym_GT_PIPE] = ACTIONS(1170), - [anon_sym_LT_LT_DASH] = ACTIONS(1170), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1170), - [anon_sym_LT_LT_LT] = ACTIONS(1170), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1170), - [aux_sym_concatenation_token1] = ACTIONS(1170), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym__special_character] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1170), - [sym_raw_string] = ACTIONS(1170), - [sym_ansi_c_string] = ACTIONS(1170), - [aux_sym_number_token1] = ACTIONS(1170), - [aux_sym_number_token2] = ACTIONS(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1170), - [anon_sym_BQUOTE] = ACTIONS(1170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1170), - [anon_sym_LT_LPAREN] = ACTIONS(1170), - [anon_sym_GT_LPAREN] = ACTIONS(1170), + [sym_word] = ACTIONS(1247), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1247), + [anon_sym_DASH_EQ] = ACTIONS(1247), + [anon_sym_STAR_EQ] = ACTIONS(1247), + [anon_sym_SLASH_EQ] = ACTIONS(1247), + [anon_sym_PERCENT_EQ] = ACTIONS(1247), + [anon_sym_LT_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_GT_EQ] = ACTIONS(1247), + [anon_sym_AMP_EQ] = ACTIONS(1247), + [anon_sym_CARET_EQ] = ACTIONS(1247), + [anon_sym_PIPE_EQ] = ACTIONS(1247), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1247), + [anon_sym_STAR_STAR] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_SEMI_SEMI] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1247), + [anon_sym_EQ_TILDE] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1247), + [anon_sym_LT_AMP] = ACTIONS(1247), + [anon_sym_GT_AMP] = ACTIONS(1247), + [anon_sym_GT_PIPE] = ACTIONS(1247), + [anon_sym_LT_LT_DASH] = ACTIONS(1247), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1249), + [anon_sym_LT_LT_LT] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1247), + [aux_sym_concatenation_token1] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1247), + [sym__special_character] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_raw_string] = ACTIONS(1247), + [sym_ansi_c_string] = ACTIONS(1247), + [aux_sym_number_token1] = ACTIONS(1247), + [aux_sym_number_token2] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1247), + [anon_sym_LT_LPAREN] = ACTIONS(1247), + [anon_sym_GT_LPAREN] = ACTIONS(1247), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1170), - [sym_file_descriptor] = ACTIONS(1175), - [sym__concat] = ACTIONS(1175), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(1249), + [sym__concat] = ACTIONS(1249), + [sym_test_operator] = ACTIONS(1249), + [sym__bare_dollar] = ACTIONS(1249), + [sym__brace_start] = ACTIONS(1249), }, [362] = { - [sym_word] = ACTIONS(1224), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_EQ] = ACTIONS(1224), - [anon_sym_DASH_EQ] = ACTIONS(1224), - [anon_sym_STAR_EQ] = ACTIONS(1224), - [anon_sym_SLASH_EQ] = ACTIONS(1224), - [anon_sym_PERCENT_EQ] = ACTIONS(1224), - [anon_sym_LT_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_GT_EQ] = ACTIONS(1224), - [anon_sym_AMP_EQ] = ACTIONS(1224), - [anon_sym_CARET_EQ] = ACTIONS(1224), - [anon_sym_PIPE_EQ] = ACTIONS(1224), - [anon_sym_EQ_EQ] = ACTIONS(1224), - [anon_sym_BANG_EQ] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1224), - [anon_sym_GT_EQ] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1224), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PERCENT] = ACTIONS(1224), - [anon_sym_STAR_STAR] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_SEMI_SEMI] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_EQ_TILDE] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1224), - [anon_sym_LT_AMP] = ACTIONS(1224), - [anon_sym_GT_AMP] = ACTIONS(1224), - [anon_sym_GT_PIPE] = ACTIONS(1224), - [anon_sym_LT_LT_DASH] = ACTIONS(1224), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1224), - [anon_sym_LT_LT_LT] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1224), - [aux_sym_concatenation_token1] = ACTIONS(1224), - [anon_sym_DOLLAR] = ACTIONS(1224), - [sym__special_character] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_raw_string] = ACTIONS(1224), - [sym_ansi_c_string] = ACTIONS(1224), - [aux_sym_number_token1] = ACTIONS(1224), - [aux_sym_number_token2] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1224), - [anon_sym_LT_LPAREN] = ACTIONS(1224), - [anon_sym_GT_LPAREN] = ACTIONS(1224), + [sym_word] = ACTIONS(1235), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1235), + [anon_sym_DASH_EQ] = ACTIONS(1235), + [anon_sym_STAR_EQ] = ACTIONS(1235), + [anon_sym_SLASH_EQ] = ACTIONS(1235), + [anon_sym_PERCENT_EQ] = ACTIONS(1235), + [anon_sym_LT_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_EQ] = ACTIONS(1235), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_SEMI_SEMI] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1235), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1235), + [anon_sym_LT_AMP] = ACTIONS(1235), + [anon_sym_GT_AMP] = ACTIONS(1235), + [anon_sym_GT_PIPE] = ACTIONS(1235), + [anon_sym_LT_LT_DASH] = ACTIONS(1235), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1235), + [aux_sym_concatenation_token1] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_raw_string] = ACTIONS(1235), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1235), + [anon_sym_LT_LPAREN] = ACTIONS(1235), + [anon_sym_GT_LPAREN] = ACTIONS(1235), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1224), - [sym_file_descriptor] = ACTIONS(1226), - [sym__concat] = ACTIONS(1226), - [sym__bare_dollar] = ACTIONS(1226), - [sym__brace_start] = ACTIONS(1226), + [sym_file_descriptor] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_test_operator] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), }, [363] = { - [sym_word] = ACTIONS(1266), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_EQ] = ACTIONS(1266), - [anon_sym_DASH_EQ] = ACTIONS(1266), - [anon_sym_STAR_EQ] = ACTIONS(1266), - [anon_sym_SLASH_EQ] = ACTIONS(1266), - [anon_sym_PERCENT_EQ] = ACTIONS(1266), - [anon_sym_LT_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_EQ] = ACTIONS(1266), - [anon_sym_CARET_EQ] = ACTIONS(1266), - [anon_sym_PIPE_EQ] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1266), - [anon_sym_BANG_EQ] = ACTIONS(1266), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1266), - [anon_sym_AMP_AMP] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1266), - [anon_sym_STAR_STAR] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_RPAREN] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_SEMI_SEMI] = ACTIONS(1266), - [anon_sym_PIPE_AMP] = ACTIONS(1266), - [anon_sym_EQ_TILDE] = ACTIONS(1266), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(1266), - [anon_sym_LT_AMP] = ACTIONS(1266), - [anon_sym_GT_AMP] = ACTIONS(1266), - [anon_sym_GT_PIPE] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(1266), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), - [aux_sym_concatenation_token1] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1266), - [sym__special_character] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_raw_string] = ACTIONS(1266), - [sym_ansi_c_string] = ACTIONS(1266), - [aux_sym_number_token1] = ACTIONS(1266), - [aux_sym_number_token2] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), - [anon_sym_BQUOTE] = ACTIONS(1266), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), - [anon_sym_LT_LPAREN] = ACTIONS(1266), - [anon_sym_GT_LPAREN] = ACTIONS(1266), + [sym_word] = ACTIONS(1243), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_EQ] = ACTIONS(1243), + [anon_sym_DASH_EQ] = ACTIONS(1243), + [anon_sym_STAR_EQ] = ACTIONS(1243), + [anon_sym_SLASH_EQ] = ACTIONS(1243), + [anon_sym_PERCENT_EQ] = ACTIONS(1243), + [anon_sym_LT_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_GT_EQ] = ACTIONS(1243), + [anon_sym_AMP_EQ] = ACTIONS(1243), + [anon_sym_CARET_EQ] = ACTIONS(1243), + [anon_sym_PIPE_EQ] = ACTIONS(1243), + [anon_sym_EQ_EQ] = ACTIONS(1243), + [anon_sym_BANG_EQ] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_EQ] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1243), + [anon_sym_STAR_STAR] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_EQ_TILDE] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_GT_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1245), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1243), + [aux_sym_concatenation_token1] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [sym__special_character] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1243), + [sym_ansi_c_string] = ACTIONS(1243), + [aux_sym_number_token1] = ACTIONS(1243), + [aux_sym_number_token2] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1266), - [sym_file_descriptor] = ACTIONS(1268), - [sym__concat] = ACTIONS(1268), - [sym__bare_dollar] = ACTIONS(1268), - [sym__brace_start] = ACTIONS(1268), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(1245), + [sym_test_operator] = ACTIONS(1245), + [sym__bare_dollar] = ACTIONS(1245), + [sym__brace_start] = ACTIONS(1245), }, [364] = { - [sym_word] = ACTIONS(1220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_GT_EQ] = ACTIONS(1220), - [anon_sym_AMP_EQ] = ACTIONS(1220), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1220), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_GT_EQ] = ACTIONS(1220), - [anon_sym_AMP_AMP] = ACTIONS(1220), - [anon_sym_PIPE_PIPE] = ACTIONS(1220), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(1220), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1220), - [anon_sym_LT_AMP] = ACTIONS(1220), - [anon_sym_GT_AMP] = ACTIONS(1220), - [anon_sym_GT_PIPE] = ACTIONS(1220), - [anon_sym_LT_LT_DASH] = ACTIONS(1220), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1220), - [anon_sym_LT_LT_LT] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1220), - [aux_sym_concatenation_token1] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym__special_character] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_raw_string] = ACTIONS(1220), - [sym_ansi_c_string] = ACTIONS(1220), - [aux_sym_number_token1] = ACTIONS(1220), - [aux_sym_number_token2] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1220), - [anon_sym_LT_LPAREN] = ACTIONS(1220), - [anon_sym_GT_LPAREN] = ACTIONS(1220), + [aux_sym__literal_repeat1] = STATE(370), + [sym_word] = ACTIONS(187), + [anon_sym_LPAREN_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN_RPAREN] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(185), + [anon_sym_GT_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_EQ] = ACTIONS(185), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(187), + [anon_sym_LT_AMP] = ACTIONS(187), + [anon_sym_GT_AMP] = ACTIONS(187), + [anon_sym_GT_PIPE] = ACTIONS(187), + [anon_sym_LT_LT_DASH] = ACTIONS(187), + [aux_sym_heredoc_redirect_token1] = ACTIONS(218), + [anon_sym_LT_LT_LT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(187), + [aux_sym_number_token2] = ACTIONS(187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(187), + [anon_sym_LT_LPAREN] = ACTIONS(187), + [anon_sym_GT_LPAREN] = ACTIONS(187), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1220), - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [sym__bare_dollar] = ACTIONS(1222), - [sym__brace_start] = ACTIONS(1222), + [sym_file_descriptor] = ACTIONS(218), + [sym_test_operator] = ACTIONS(352), + [sym__bare_dollar] = ACTIONS(218), + [sym__brace_start] = ACTIONS(218), }, [365] = { - [sym_word] = ACTIONS(1228), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_PERCENT_EQ] = ACTIONS(1228), - [anon_sym_LT_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_GT_EQ] = ACTIONS(1228), - [anon_sym_AMP_EQ] = ACTIONS(1228), - [anon_sym_CARET_EQ] = ACTIONS(1228), - [anon_sym_PIPE_EQ] = ACTIONS(1228), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_GT_PIPE] = ACTIONS(1228), - [anon_sym_LT_LT_DASH] = ACTIONS(1228), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1228), - [anon_sym_LT_LT_LT] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1228), - [aux_sym_concatenation_token1] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [sym__special_character] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_raw_string] = ACTIONS(1228), - [sym_ansi_c_string] = ACTIONS(1228), - [aux_sym_number_token1] = ACTIONS(1228), - [aux_sym_number_token2] = ACTIONS(1228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1228), - [anon_sym_LT_LPAREN] = ACTIONS(1228), - [anon_sym_GT_LPAREN] = ACTIONS(1228), + [sym_word] = ACTIONS(1263), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1263), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1263), + [anon_sym_DASH_EQ] = ACTIONS(1263), + [anon_sym_STAR_EQ] = ACTIONS(1263), + [anon_sym_SLASH_EQ] = ACTIONS(1263), + [anon_sym_PERCENT_EQ] = ACTIONS(1263), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1263), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_STAR_STAR] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1263), + [anon_sym_GT_AMP] = ACTIONS(1263), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1265), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [aux_sym_concatenation_token1] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym__special_character] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), + [aux_sym_number_token1] = ACTIONS(1263), + [aux_sym_number_token2] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1228), - [sym_file_descriptor] = ACTIONS(1230), - [sym__concat] = ACTIONS(1230), - [sym__bare_dollar] = ACTIONS(1230), - [sym__brace_start] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(1265), + [sym_test_operator] = ACTIONS(1265), + [sym__bare_dollar] = ACTIONS(1265), + [sym__brace_start] = ACTIONS(1265), }, [366] = { - [sym_word] = ACTIONS(1200), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_EQ] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_EQ] = ACTIONS(1200), - [anon_sym_DASH_EQ] = ACTIONS(1200), - [anon_sym_STAR_EQ] = ACTIONS(1200), - [anon_sym_SLASH_EQ] = ACTIONS(1200), - [anon_sym_PERCENT_EQ] = ACTIONS(1200), - [anon_sym_LT_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_GT_EQ] = ACTIONS(1200), - [anon_sym_AMP_EQ] = ACTIONS(1200), - [anon_sym_CARET_EQ] = ACTIONS(1200), - [anon_sym_PIPE_EQ] = ACTIONS(1200), - [anon_sym_EQ_EQ] = ACTIONS(1200), - [anon_sym_BANG_EQ] = ACTIONS(1200), - [anon_sym_LT_EQ] = ACTIONS(1200), - [anon_sym_GT_EQ] = ACTIONS(1200), - [anon_sym_AMP_AMP] = ACTIONS(1200), - [anon_sym_PIPE_PIPE] = ACTIONS(1200), - [anon_sym_LT_LT] = ACTIONS(1200), - [anon_sym_GT_GT] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_SLASH] = ACTIONS(1200), - [anon_sym_PERCENT] = ACTIONS(1200), - [anon_sym_STAR_STAR] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_GT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_SEMI_SEMI] = ACTIONS(1200), - [anon_sym_PIPE_AMP] = ACTIONS(1200), - [anon_sym_EQ_TILDE] = ACTIONS(1200), - [anon_sym_AMP_GT] = ACTIONS(1200), - [anon_sym_AMP_GT_GT] = ACTIONS(1200), - [anon_sym_LT_AMP] = ACTIONS(1200), - [anon_sym_GT_AMP] = ACTIONS(1200), - [anon_sym_GT_PIPE] = ACTIONS(1200), - [anon_sym_LT_LT_DASH] = ACTIONS(1200), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1200), - [anon_sym_LT_LT_LT] = ACTIONS(1200), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_CARET] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1200), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1200), - [aux_sym_concatenation_token1] = ACTIONS(1200), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym__special_character] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1200), - [sym_ansi_c_string] = ACTIONS(1200), - [aux_sym_number_token1] = ACTIONS(1200), - [aux_sym_number_token2] = ACTIONS(1200), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1200), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), - [anon_sym_BQUOTE] = ACTIONS(1200), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1200), - [anon_sym_LT_LPAREN] = ACTIONS(1200), - [anon_sym_GT_LPAREN] = ACTIONS(1200), + [sym_word] = ACTIONS(1239), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_GT_EQ] = ACTIONS(1239), + [anon_sym_AMP_EQ] = ACTIONS(1239), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_SEMI_SEMI] = ACTIONS(1239), + [anon_sym_PIPE_AMP] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1239), + [anon_sym_AMP_GT_GT] = ACTIONS(1239), + [anon_sym_LT_AMP] = ACTIONS(1239), + [anon_sym_GT_AMP] = ACTIONS(1239), + [anon_sym_GT_PIPE] = ACTIONS(1239), + [anon_sym_LT_LT_DASH] = ACTIONS(1239), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1239), + [aux_sym_concatenation_token1] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1239), + [sym__special_character] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_raw_string] = ACTIONS(1239), + [sym_ansi_c_string] = ACTIONS(1239), + [aux_sym_number_token1] = ACTIONS(1239), + [aux_sym_number_token2] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1239), + [anon_sym_LT_LPAREN] = ACTIONS(1239), + [anon_sym_GT_LPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1200), - [sym_file_descriptor] = ACTIONS(1202), - [sym__concat] = ACTIONS(1202), - [sym__bare_dollar] = ACTIONS(1202), - [sym__brace_start] = ACTIONS(1202), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_test_operator] = ACTIONS(1241), + [sym__bare_dollar] = ACTIONS(1241), + [sym__brace_start] = ACTIONS(1241), }, [367] = { - [sym_word] = ACTIONS(1262), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [anon_sym_DASH_EQ] = ACTIONS(1262), - [anon_sym_STAR_EQ] = ACTIONS(1262), - [anon_sym_SLASH_EQ] = ACTIONS(1262), - [anon_sym_PERCENT_EQ] = ACTIONS(1262), - [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(1262), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1262), - [anon_sym_GT_GT] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1262), - [anon_sym_STAR_STAR] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_SEMI_SEMI] = ACTIONS(1262), - [anon_sym_PIPE_AMP] = ACTIONS(1262), - [anon_sym_EQ_TILDE] = ACTIONS(1262), - [anon_sym_AMP_GT] = ACTIONS(1262), - [anon_sym_AMP_GT_GT] = ACTIONS(1262), - [anon_sym_LT_AMP] = ACTIONS(1262), - [anon_sym_GT_AMP] = ACTIONS(1262), - [anon_sym_GT_PIPE] = ACTIONS(1262), - [anon_sym_LT_LT_DASH] = ACTIONS(1262), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1262), - [anon_sym_LT_LT_LT] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1262), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), - [aux_sym_concatenation_token1] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1262), - [sym__special_character] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_raw_string] = ACTIONS(1262), - [sym_ansi_c_string] = ACTIONS(1262), - [aux_sym_number_token1] = ACTIONS(1262), - [aux_sym_number_token2] = ACTIONS(1262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), - [anon_sym_BQUOTE] = ACTIONS(1262), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), - [anon_sym_LT_LPAREN] = ACTIONS(1262), - [anon_sym_GT_LPAREN] = ACTIONS(1262), + [sym_word] = ACTIONS(1259), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1259), + [anon_sym_DASH_EQ] = ACTIONS(1259), + [anon_sym_STAR_EQ] = ACTIONS(1259), + [anon_sym_SLASH_EQ] = ACTIONS(1259), + [anon_sym_PERCENT_EQ] = ACTIONS(1259), + [anon_sym_LT_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_GT_EQ] = ACTIONS(1259), + [anon_sym_AMP_EQ] = ACTIONS(1259), + [anon_sym_CARET_EQ] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1259), + [anon_sym_PIPE_PIPE] = ACTIONS(1259), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_STAR_STAR] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_SEMI_SEMI] = ACTIONS(1259), + [anon_sym_PIPE_AMP] = ACTIONS(1259), + [anon_sym_EQ_TILDE] = ACTIONS(1259), + [anon_sym_AMP_GT] = ACTIONS(1259), + [anon_sym_AMP_GT_GT] = ACTIONS(1259), + [anon_sym_LT_AMP] = ACTIONS(1259), + [anon_sym_GT_AMP] = ACTIONS(1259), + [anon_sym_GT_PIPE] = ACTIONS(1259), + [anon_sym_LT_LT_DASH] = ACTIONS(1259), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1261), + [anon_sym_LT_LT_LT] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1259), + [aux_sym_concatenation_token1] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [sym__special_character] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym_raw_string] = ACTIONS(1259), + [sym_ansi_c_string] = ACTIONS(1259), + [aux_sym_number_token1] = ACTIONS(1259), + [aux_sym_number_token2] = ACTIONS(1259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), + [anon_sym_BQUOTE] = ACTIONS(1259), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1259), + [anon_sym_LT_LPAREN] = ACTIONS(1259), + [anon_sym_GT_LPAREN] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1262), - [sym_file_descriptor] = ACTIONS(1264), - [sym__concat] = ACTIONS(1264), - [sym__bare_dollar] = ACTIONS(1264), - [sym__brace_start] = ACTIONS(1264), + [sym_file_descriptor] = ACTIONS(1261), + [sym__concat] = ACTIONS(1261), + [sym_test_operator] = ACTIONS(1261), + [sym__bare_dollar] = ACTIONS(1261), + [sym__brace_start] = ACTIONS(1261), }, [368] = { - [aux_sym__literal_repeat1] = STATE(373), - [sym_word] = ACTIONS(189), - [anon_sym_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_RPAREN_RPAREN] = ACTIONS(187), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(187), - [anon_sym_GT_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_EQ] = ACTIONS(187), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(187), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(187), - [anon_sym_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_GT_PIPE] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [aux_sym_heredoc_redirect_token1] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym__special_character] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_ansi_c_string] = ACTIONS(189), - [aux_sym_number_token1] = ACTIONS(189), - [aux_sym_number_token2] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_SEMI_SEMI] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1205), + [anon_sym_LT_AMP] = ACTIONS(1205), + [anon_sym_GT_AMP] = ACTIONS(1205), + [anon_sym_GT_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT_DASH] = ACTIONS(1205), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1207), + [anon_sym_LT_LT_LT] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), + [aux_sym_concatenation_token1] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1205), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_raw_string] = ACTIONS(1205), + [sym_ansi_c_string] = ACTIONS(1205), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), + [anon_sym_LT_LPAREN] = ACTIONS(1205), + [anon_sym_GT_LPAREN] = ACTIONS(1205), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(222), - [sym__bare_dollar] = ACTIONS(222), - [sym__brace_start] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(1207), + [sym__concat] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1207), + [sym__bare_dollar] = ACTIONS(1207), + [sym__brace_start] = ACTIONS(1207), }, [369] = { - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_SEMI_SEMI] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1246), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1246), - [anon_sym_LT_AMP] = ACTIONS(1246), - [anon_sym_GT_AMP] = ACTIONS(1246), - [anon_sym_GT_PIPE] = ACTIONS(1246), - [anon_sym_LT_LT_DASH] = ACTIONS(1246), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1246), - [anon_sym_LT_LT_LT] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1246), - [aux_sym_concatenation_token1] = ACTIONS(1246), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_raw_string] = ACTIONS(1246), - [sym_ansi_c_string] = ACTIONS(1246), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1246), - [anon_sym_LT_LPAREN] = ACTIONS(1246), - [anon_sym_GT_LPAREN] = ACTIONS(1246), + [sym_word] = ACTIONS(1215), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_EQ] = ACTIONS(1215), + [anon_sym_DASH_EQ] = ACTIONS(1215), + [anon_sym_STAR_EQ] = ACTIONS(1215), + [anon_sym_SLASH_EQ] = ACTIONS(1215), + [anon_sym_PERCENT_EQ] = ACTIONS(1215), + [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(1215), + [anon_sym_PIPE_EQ] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_GT] = ACTIONS(1215), + [anon_sym_AMP_GT_GT] = ACTIONS(1215), + [anon_sym_LT_AMP] = ACTIONS(1215), + [anon_sym_GT_AMP] = ACTIONS(1215), + [anon_sym_GT_PIPE] = ACTIONS(1215), + [anon_sym_LT_LT_DASH] = ACTIONS(1215), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1217), + [anon_sym_LT_LT_LT] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1215), + [aux_sym_concatenation_token1] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1215), + [sym__special_character] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym_raw_string] = ACTIONS(1215), + [sym_ansi_c_string] = ACTIONS(1215), + [aux_sym_number_token1] = ACTIONS(1215), + [aux_sym_number_token2] = ACTIONS(1215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1215), + [anon_sym_LT_LPAREN] = ACTIONS(1215), + [anon_sym_GT_LPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1246), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1248), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), + [sym_file_descriptor] = ACTIONS(1217), + [sym__concat] = ACTIONS(1217), + [sym_test_operator] = ACTIONS(1217), + [sym__bare_dollar] = ACTIONS(1217), + [sym__brace_start] = ACTIONS(1217), }, [370] = { - [sym_word] = ACTIONS(1270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), - [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(1270), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_RPAREN] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_SEMI_SEMI] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1270), - [anon_sym_GT_AMP] = ACTIONS(1270), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), + [aux_sym__literal_repeat1] = STATE(370), + [sym_word] = ACTIONS(1273), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1273), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1273), + [anon_sym_GT_GT] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_SEMI_SEMI] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1273), + [anon_sym_AMP_GT] = ACTIONS(1273), + [anon_sym_AMP_GT_GT] = ACTIONS(1273), + [anon_sym_LT_AMP] = ACTIONS(1273), + [anon_sym_GT_AMP] = ACTIONS(1273), + [anon_sym_GT_PIPE] = ACTIONS(1273), + [anon_sym_LT_LT_DASH] = ACTIONS(1273), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1275), + [anon_sym_LT_LT_LT] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1273), + [anon_sym_DOLLAR] = ACTIONS(1273), + [sym__special_character] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_raw_string] = ACTIONS(1273), + [sym_ansi_c_string] = ACTIONS(1273), + [aux_sym_number_token1] = ACTIONS(1273), + [aux_sym_number_token2] = ACTIONS(1273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1273), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1273), + [anon_sym_GT_LPAREN] = ACTIONS(1273), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1270), - [sym_file_descriptor] = ACTIONS(1272), - [sym__concat] = ACTIONS(1272), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), + [sym_file_descriptor] = ACTIONS(1275), + [sym_test_operator] = ACTIONS(1275), + [sym__bare_dollar] = ACTIONS(1275), + [sym__brace_start] = ACTIONS(1275), }, [371] = { - [sym_word] = ACTIONS(1254), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_STAR_EQ] = ACTIONS(1254), - [anon_sym_SLASH_EQ] = ACTIONS(1254), - [anon_sym_PERCENT_EQ] = ACTIONS(1254), - [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(1254), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_SEMI_SEMI] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1254), - [anon_sym_EQ_TILDE] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(1254), - [anon_sym_LT_AMP] = ACTIONS(1254), - [anon_sym_GT_AMP] = ACTIONS(1254), - [anon_sym_GT_PIPE] = ACTIONS(1254), - [anon_sym_LT_LT_DASH] = ACTIONS(1254), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1254), - [anon_sym_LT_LT_LT] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1254), - [aux_sym_concatenation_token1] = ACTIONS(1254), - [anon_sym_DOLLAR] = ACTIONS(1254), - [sym__special_character] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_raw_string] = ACTIONS(1254), - [sym_ansi_c_string] = ACTIONS(1254), - [aux_sym_number_token1] = ACTIONS(1254), - [aux_sym_number_token2] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1254), - [anon_sym_LT_LPAREN] = ACTIONS(1254), - [anon_sym_GT_LPAREN] = ACTIONS(1254), + [aux_sym__literal_repeat1] = STATE(370), + [sym_word] = ACTIONS(187), + [anon_sym_LPAREN_LPAREN] = ACTIONS(187), + [anon_sym_RPAREN_RPAREN] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(185), + [anon_sym_GT_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_EQ] = ACTIONS(185), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(187), + [anon_sym_LT_AMP] = ACTIONS(187), + [anon_sym_GT_AMP] = ACTIONS(187), + [anon_sym_GT_PIPE] = ACTIONS(187), + [anon_sym_LT_LT_DASH] = ACTIONS(187), + [aux_sym_heredoc_redirect_token1] = ACTIONS(218), + [anon_sym_LT_LT_LT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(187), + [aux_sym_number_token2] = ACTIONS(187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(187), + [anon_sym_LT_LPAREN] = ACTIONS(187), + [anon_sym_GT_LPAREN] = ACTIONS(187), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1254), - [sym_file_descriptor] = ACTIONS(1256), - [sym__concat] = ACTIONS(1256), - [sym__bare_dollar] = ACTIONS(1256), - [sym__brace_start] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(218), + [sym_test_operator] = ACTIONS(352), + [sym__bare_dollar] = ACTIONS(218), + [sym__brace_start] = ACTIONS(218), }, [372] = { - [sym_word] = ACTIONS(1208), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP_EQ] = ACTIONS(1208), - [anon_sym_CARET_EQ] = ACTIONS(1208), - [anon_sym_PIPE_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1208), - [anon_sym_PIPE_PIPE] = ACTIONS(1208), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_STAR_STAR] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_SEMI_SEMI] = ACTIONS(1208), - [anon_sym_PIPE_AMP] = ACTIONS(1208), - [anon_sym_EQ_TILDE] = ACTIONS(1208), - [anon_sym_AMP_GT] = ACTIONS(1208), - [anon_sym_AMP_GT_GT] = ACTIONS(1208), - [anon_sym_LT_AMP] = ACTIONS(1208), - [anon_sym_GT_AMP] = ACTIONS(1208), - [anon_sym_GT_PIPE] = ACTIONS(1208), - [anon_sym_LT_LT_DASH] = ACTIONS(1208), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1208), - [anon_sym_LT_LT_LT] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1208), - [aux_sym_concatenation_token1] = ACTIONS(1208), - [anon_sym_DOLLAR] = ACTIONS(1208), - [sym__special_character] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_raw_string] = ACTIONS(1208), - [sym_ansi_c_string] = ACTIONS(1208), - [aux_sym_number_token1] = ACTIONS(1208), - [aux_sym_number_token2] = ACTIONS(1208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1208), - [anon_sym_LT_LPAREN] = ACTIONS(1208), - [anon_sym_GT_LPAREN] = ACTIONS(1208), + [sym_word] = ACTIONS(1231), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_SEMI_SEMI] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1231), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1231), + [anon_sym_LT_AMP] = ACTIONS(1231), + [anon_sym_GT_AMP] = ACTIONS(1231), + [anon_sym_GT_PIPE] = ACTIONS(1231), + [anon_sym_LT_LT_DASH] = ACTIONS(1231), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1231), + [aux_sym_concatenation_token1] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1231), + [sym_ansi_c_string] = ACTIONS(1231), + [aux_sym_number_token1] = ACTIONS(1231), + [aux_sym_number_token2] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1231), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1208), - [sym_file_descriptor] = ACTIONS(1210), - [sym__concat] = ACTIONS(1210), - [sym__bare_dollar] = ACTIONS(1210), - [sym__brace_start] = ACTIONS(1210), + [sym_file_descriptor] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [sym_test_operator] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, [373] = { - [aux_sym__literal_repeat1] = STATE(373), - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1276), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1205), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_CARET_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_SEMI_SEMI] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1205), + [anon_sym_LT_AMP] = ACTIONS(1205), + [anon_sym_GT_AMP] = ACTIONS(1205), + [anon_sym_GT_PIPE] = ACTIONS(1205), + [anon_sym_LT_LT_DASH] = ACTIONS(1205), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1207), + [anon_sym_LT_LT_LT] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1205), + [aux_sym_concatenation_token1] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1205), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_raw_string] = ACTIONS(1205), + [sym_ansi_c_string] = ACTIONS(1205), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1205), + [anon_sym_LT_LPAREN] = ACTIONS(1205), + [anon_sym_GT_LPAREN] = ACTIONS(1205), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1276), - [sym_file_descriptor] = ACTIONS(1281), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), + [sym_file_descriptor] = ACTIONS(1207), + [sym__concat] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1207), + [sym__bare_dollar] = ACTIONS(1207), + [sym__brace_start] = ACTIONS(1207), }, [374] = { - [sym_word] = ACTIONS(1180), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1180), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_EQ] = ACTIONS(1180), - [anon_sym_DASH_EQ] = ACTIONS(1180), - [anon_sym_STAR_EQ] = ACTIONS(1180), - [anon_sym_SLASH_EQ] = ACTIONS(1180), - [anon_sym_PERCENT_EQ] = ACTIONS(1180), - [anon_sym_LT_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_EQ] = ACTIONS(1180), - [anon_sym_CARET_EQ] = ACTIONS(1180), - [anon_sym_PIPE_EQ] = ACTIONS(1180), - [anon_sym_EQ_EQ] = ACTIONS(1180), - [anon_sym_BANG_EQ] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_SEMI_SEMI] = ACTIONS(1180), - [anon_sym_PIPE_AMP] = ACTIONS(1180), - [anon_sym_EQ_TILDE] = ACTIONS(1180), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1180), - [anon_sym_LT_AMP] = ACTIONS(1180), - [anon_sym_GT_AMP] = ACTIONS(1180), - [anon_sym_GT_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT_DASH] = ACTIONS(1180), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1180), - [anon_sym_LT_LT_LT] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1180), - [anon_sym_DOLLAR] = ACTIONS(1180), - [sym__special_character] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_raw_string] = ACTIONS(1180), - [sym_ansi_c_string] = ACTIONS(1180), - [aux_sym_number_token1] = ACTIONS(1180), - [aux_sym_number_token2] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1180), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1180), - [anon_sym_GT_LPAREN] = ACTIONS(1180), + [sym_word] = ACTIONS(1211), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1211), + [anon_sym_DASH_EQ] = ACTIONS(1211), + [anon_sym_STAR_EQ] = ACTIONS(1211), + [anon_sym_SLASH_EQ] = ACTIONS(1211), + [anon_sym_PERCENT_EQ] = ACTIONS(1211), + [anon_sym_LT_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_GT_EQ] = ACTIONS(1211), + [anon_sym_AMP_EQ] = ACTIONS(1211), + [anon_sym_CARET_EQ] = ACTIONS(1211), + [anon_sym_PIPE_EQ] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_RPAREN] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_SEMI_SEMI] = ACTIONS(1211), + [anon_sym_PIPE_AMP] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_GT] = ACTIONS(1211), + [anon_sym_AMP_GT_GT] = ACTIONS(1211), + [anon_sym_LT_AMP] = ACTIONS(1211), + [anon_sym_GT_AMP] = ACTIONS(1211), + [anon_sym_GT_PIPE] = ACTIONS(1211), + [anon_sym_LT_LT_DASH] = ACTIONS(1211), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1213), + [anon_sym_LT_LT_LT] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1211), + [aux_sym_concatenation_token1] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1211), + [sym__special_character] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym_raw_string] = ACTIONS(1211), + [sym_ansi_c_string] = ACTIONS(1211), + [aux_sym_number_token1] = ACTIONS(1211), + [aux_sym_number_token2] = ACTIONS(1211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1211), + [anon_sym_LT_LPAREN] = ACTIONS(1211), + [anon_sym_GT_LPAREN] = ACTIONS(1211), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1180), - [sym_file_descriptor] = ACTIONS(1182), - [sym__bare_dollar] = ACTIONS(1182), - [sym__brace_start] = ACTIONS(1182), + [sym_file_descriptor] = ACTIONS(1213), + [sym__concat] = ACTIONS(1213), + [sym_test_operator] = ACTIONS(1213), + [sym__bare_dollar] = ACTIONS(1213), + [sym__brace_start] = ACTIONS(1213), }, [375] = { - [aux_sym__literal_repeat1] = STATE(378), - [sym_word] = ACTIONS(189), - [anon_sym_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(189), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), - [anon_sym_LT_LT_EQ] = ACTIONS(187), - [anon_sym_GT_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_EQ] = ACTIONS(187), - [anon_sym_CARET_EQ] = ACTIONS(187), - [anon_sym_PIPE_EQ] = ACTIONS(187), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), - [anon_sym_LT_EQ] = ACTIONS(187), - [anon_sym_GT_EQ] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(191), - [anon_sym_PIPE_PIPE] = ACTIONS(191), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(189), - [anon_sym_PIPE_AMP] = ACTIONS(189), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(189), - [anon_sym_LT_AMP] = ACTIONS(189), - [anon_sym_GT_AMP] = ACTIONS(189), - [anon_sym_GT_PIPE] = ACTIONS(189), - [anon_sym_LT_LT_DASH] = ACTIONS(189), - [aux_sym_heredoc_redirect_token1] = ACTIONS(189), - [anon_sym_LT_LT_LT] = ACTIONS(189), - [anon_sym_AMP] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym__special_character] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(189), - [sym_raw_string] = ACTIONS(189), - [sym_ansi_c_string] = ACTIONS(189), - [aux_sym_number_token1] = ACTIONS(189), - [aux_sym_number_token2] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(189), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), + [sym_word] = ACTIONS(1267), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1267), + [anon_sym_DASH_EQ] = ACTIONS(1267), + [anon_sym_STAR_EQ] = ACTIONS(1267), + [anon_sym_SLASH_EQ] = ACTIONS(1267), + [anon_sym_PERCENT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_GT_EQ] = ACTIONS(1267), + [anon_sym_AMP_EQ] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1267), + [anon_sym_LT_AMP] = ACTIONS(1267), + [anon_sym_GT_AMP] = ACTIONS(1267), + [anon_sym_GT_PIPE] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), + [aux_sym_concatenation_token1] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym__special_character] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [sym_raw_string] = ACTIONS(1267), + [sym_ansi_c_string] = ACTIONS(1267), + [aux_sym_number_token1] = ACTIONS(1267), + [aux_sym_number_token2] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1267), + [anon_sym_LT_LPAREN] = ACTIONS(1267), + [anon_sym_GT_LPAREN] = ACTIONS(1267), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(191), - [sym_file_descriptor] = ACTIONS(222), - [sym__bare_dollar] = ACTIONS(222), - [sym__brace_start] = ACTIONS(222), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_test_operator] = ACTIONS(1269), + [sym__bare_dollar] = ACTIONS(1269), + [sym__brace_start] = ACTIONS(1269), }, [376] = { - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_word] = ACTIONS(1201), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_EQ] = ACTIONS(1201), + [anon_sym_DASH_EQ] = ACTIONS(1201), + [anon_sym_STAR_EQ] = ACTIONS(1201), + [anon_sym_SLASH_EQ] = ACTIONS(1201), + [anon_sym_PERCENT_EQ] = ACTIONS(1201), + [anon_sym_LT_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_GT_EQ] = ACTIONS(1201), + [anon_sym_AMP_EQ] = ACTIONS(1201), + [anon_sym_CARET_EQ] = ACTIONS(1201), + [anon_sym_PIPE_EQ] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_SEMI_SEMI] = ACTIONS(1201), + [anon_sym_PIPE_AMP] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_GT] = ACTIONS(1201), + [anon_sym_AMP_GT_GT] = ACTIONS(1201), + [anon_sym_LT_AMP] = ACTIONS(1201), + [anon_sym_GT_AMP] = ACTIONS(1201), + [anon_sym_GT_PIPE] = ACTIONS(1201), + [anon_sym_LT_LT_DASH] = ACTIONS(1201), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1203), + [anon_sym_LT_LT_LT] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1201), + [aux_sym_concatenation_token1] = ACTIONS(1201), + [anon_sym_DOLLAR] = ACTIONS(1201), + [sym__special_character] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_raw_string] = ACTIONS(1201), + [sym_ansi_c_string] = ACTIONS(1201), + [aux_sym_number_token1] = ACTIONS(1201), + [aux_sym_number_token2] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1201), + [anon_sym_BQUOTE] = ACTIONS(1201), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1201), + [anon_sym_LT_LPAREN] = ACTIONS(1201), + [anon_sym_GT_LPAREN] = ACTIONS(1201), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1203), + [sym__concat] = ACTIONS(1203), + [sym_test_operator] = ACTIONS(1203), + [sym__bare_dollar] = ACTIONS(1203), + [sym__brace_start] = ACTIONS(1203), }, [377] = { - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1161), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_word] = ACTIONS(1227), + [anon_sym_LPAREN_LPAREN] = 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_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_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_PIPE] = 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_LT_DASH] = ACTIONS(1227), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1229), + [anon_sym_LT_LT_LT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1227), + [aux_sym_concatenation_token1] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [sym__special_character] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_raw_string] = ACTIONS(1227), + [sym_ansi_c_string] = ACTIONS(1227), + [aux_sym_number_token1] = ACTIONS(1227), + [aux_sym_number_token2] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1227), + [anon_sym_LT_LPAREN] = ACTIONS(1227), + [anon_sym_GT_LPAREN] = ACTIONS(1227), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1229), + [sym__concat] = ACTIONS(1229), + [sym_test_operator] = ACTIONS(1229), + [sym__bare_dollar] = ACTIONS(1229), + [sym__brace_start] = ACTIONS(1229), }, [378] = { - [aux_sym__literal_repeat1] = STATE(378), - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1276), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), + [sym_word] = ACTIONS(1255), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1255), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [anon_sym_GT_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT_DASH] = ACTIONS(1255), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1257), + [anon_sym_LT_LT_LT] = ACTIONS(1255), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1255), + [aux_sym_concatenation_token1] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1255), + [sym__special_character] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym_raw_string] = ACTIONS(1255), + [sym_ansi_c_string] = ACTIONS(1255), + [aux_sym_number_token1] = ACTIONS(1255), + [aux_sym_number_token2] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1276), - [sym_file_descriptor] = ACTIONS(1281), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), + [sym_file_descriptor] = ACTIONS(1257), + [sym__concat] = ACTIONS(1257), + [sym_test_operator] = ACTIONS(1257), + [sym__bare_dollar] = ACTIONS(1257), + [sym__brace_start] = ACTIONS(1257), }, [379] = { - [aux_sym_concatenation_repeat1] = STATE(381), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1168), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1168), - [anon_sym_LT_AMP] = ACTIONS(1168), - [anon_sym_GT_AMP] = ACTIONS(1168), - [anon_sym_GT_PIPE] = ACTIONS(1168), - [anon_sym_LT_LT_DASH] = ACTIONS(1168), - [anon_sym_LT_LT_LT] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1168), - [aux_sym_concatenation_token1] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_raw_string] = ACTIONS(1168), - [sym_ansi_c_string] = ACTIONS(1168), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1168), - [anon_sym_LT_LPAREN] = ACTIONS(1168), - [anon_sym_GT_LPAREN] = ACTIONS(1168), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1168), - [sym__concat] = ACTIONS(359), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_word] = ACTIONS(1223), + [anon_sym_LPAREN_LPAREN] = 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_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_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_PIPE] = 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_LT_DASH] = ACTIONS(1223), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1223), + [aux_sym_concatenation_token1] = 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__concat] = ACTIONS(1225), + [sym_test_operator] = ACTIONS(1225), + [sym__bare_dollar] = ACTIONS(1225), + [sym__brace_start] = ACTIONS(1225), }, [380] = { - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP] = ACTIONS(1163), - [anon_sym_PIPE_PIPE] = ACTIONS(1163), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_SEMI_SEMI] = ACTIONS(1159), - [anon_sym_PIPE_AMP] = ACTIONS(1159), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1159), - [anon_sym_LT_AMP] = ACTIONS(1159), - [anon_sym_GT_AMP] = ACTIONS(1159), - [anon_sym_GT_PIPE] = ACTIONS(1159), - [anon_sym_LT_LT_DASH] = ACTIONS(1159), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1159), - [anon_sym_LT_LT_LT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1159), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1159), - [sym_raw_string] = ACTIONS(1159), - [sym_ansi_c_string] = ACTIONS(1159), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1159), - [anon_sym_LT_LPAREN] = ACTIONS(1159), - [anon_sym_GT_LPAREN] = ACTIONS(1159), + [aux_sym__literal_repeat1] = STATE(380), + [sym_word] = ACTIONS(1273), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1273), + [anon_sym_GT_GT] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_SEMI_SEMI] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1273), + [anon_sym_AMP_GT] = ACTIONS(1273), + [anon_sym_AMP_GT_GT] = ACTIONS(1273), + [anon_sym_LT_AMP] = ACTIONS(1273), + [anon_sym_GT_AMP] = ACTIONS(1273), + [anon_sym_GT_PIPE] = ACTIONS(1273), + [anon_sym_LT_LT_DASH] = ACTIONS(1273), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1275), + [anon_sym_LT_LT_LT] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1273), + [anon_sym_DOLLAR] = ACTIONS(1273), + [sym__special_character] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_raw_string] = ACTIONS(1273), + [sym_ansi_c_string] = ACTIONS(1273), + [aux_sym_number_token1] = ACTIONS(1273), + [aux_sym_number_token2] = ACTIONS(1273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1273), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1273), + [anon_sym_GT_LPAREN] = ACTIONS(1273), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1163), - [sym_file_descriptor] = ACTIONS(1168), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1275), + [sym_test_operator] = ACTIONS(1275), + [sym__bare_dollar] = ACTIONS(1275), + [sym__brace_start] = ACTIONS(1275), }, [381] = { - [aux_sym_concatenation_repeat1] = STATE(383), - [sym_word] = ACTIONS(1190), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1192), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1190), - [anon_sym_DASH_EQ] = ACTIONS(1190), - [anon_sym_STAR_EQ] = ACTIONS(1190), - [anon_sym_SLASH_EQ] = ACTIONS(1190), - [anon_sym_PERCENT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_GT_EQ] = ACTIONS(1192), - [anon_sym_AMP_EQ] = ACTIONS(1192), - [anon_sym_CARET_EQ] = ACTIONS(1190), - [anon_sym_PIPE_EQ] = ACTIONS(1192), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_BANG_EQ] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_AMP_AMP] = ACTIONS(1192), - [anon_sym_PIPE_PIPE] = ACTIONS(1192), - [anon_sym_LT_LT] = ACTIONS(1190), - [anon_sym_GT_GT] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1190), - [anon_sym_STAR_STAR] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_PIPE] = ACTIONS(1190), - [anon_sym_PIPE_AMP] = ACTIONS(1192), - [anon_sym_RBRACK] = ACTIONS(1192), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_AMP_GT] = ACTIONS(1190), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [anon_sym_GT_PIPE] = ACTIONS(1192), - [anon_sym_LT_LT_DASH] = ACTIONS(1192), - [anon_sym_LT_LT_LT] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_QMARK] = ACTIONS(1190), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1192), + [aux_sym_concatenation_repeat1] = STATE(389), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_GT_EQ] = ACTIONS(1283), + [anon_sym_AMP_EQ] = ACTIONS(1283), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1158), + [anon_sym_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_PIPE_AMP] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_GT_PIPE] = ACTIONS(1156), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1156), [aux_sym_concatenation_token1] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(1190), - [sym__special_character] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_raw_string] = ACTIONS(1192), - [sym_ansi_c_string] = ACTIONS(1192), - [aux_sym_number_token1] = ACTIONS(1190), - [aux_sym_number_token2] = ACTIONS(1190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1190), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1192), - [anon_sym_LT_LPAREN] = ACTIONS(1192), - [anon_sym_GT_LPAREN] = ACTIONS(1192), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_raw_string] = ACTIONS(1156), + [sym_ansi_c_string] = ACTIONS(1156), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(1156), + [anon_sym_GT_LPAREN] = ACTIONS(1156), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1192), - [sym_file_descriptor] = ACTIONS(1192), - [sym__concat] = ACTIONS(1295), - [sym__bare_dollar] = ACTIONS(1192), - [sym__brace_start] = ACTIONS(1192), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(359), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [382] = { - [sym_word] = ACTIONS(1180), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1180), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_EQ] = ACTIONS(1180), - [anon_sym_DASH_EQ] = ACTIONS(1180), - [anon_sym_STAR_EQ] = ACTIONS(1180), - [anon_sym_SLASH_EQ] = ACTIONS(1180), - [anon_sym_PERCENT_EQ] = ACTIONS(1180), - [anon_sym_LT_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_EQ] = ACTIONS(1180), - [anon_sym_CARET_EQ] = ACTIONS(1180), - [anon_sym_PIPE_EQ] = ACTIONS(1180), - [anon_sym_EQ_EQ] = ACTIONS(1180), - [anon_sym_BANG_EQ] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1180), - [anon_sym_GT_EQ] = ACTIONS(1180), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_RPAREN] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_SEMI_SEMI] = ACTIONS(1180), - [anon_sym_PIPE_AMP] = ACTIONS(1180), - [anon_sym_EQ_TILDE] = ACTIONS(1180), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1180), - [anon_sym_LT_AMP] = ACTIONS(1180), - [anon_sym_GT_AMP] = ACTIONS(1180), - [anon_sym_GT_PIPE] = ACTIONS(1180), - [anon_sym_LT_LT_DASH] = ACTIONS(1180), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1180), - [anon_sym_LT_LT_LT] = ACTIONS(1180), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1180), - [anon_sym_DOLLAR] = ACTIONS(1180), - [sym__special_character] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1180), - [sym_raw_string] = ACTIONS(1180), - [sym_ansi_c_string] = ACTIONS(1180), - [aux_sym_number_token1] = ACTIONS(1180), - [aux_sym_number_token2] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1180), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1180), - [anon_sym_LT_LPAREN] = ACTIONS(1180), - [anon_sym_GT_LPAREN] = ACTIONS(1180), + [aux_sym__literal_repeat1] = STATE(380), + [sym_word] = ACTIONS(187), + [anon_sym_LPAREN_LPAREN] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), + [anon_sym_LT_LT_EQ] = ACTIONS(185), + [anon_sym_GT_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_EQ] = ACTIONS(185), + [anon_sym_CARET_EQ] = ACTIONS(185), + [anon_sym_PIPE_EQ] = ACTIONS(185), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_GT_EQ] = ACTIONS(185), + [anon_sym_AMP_AMP] = ACTIONS(189), + [anon_sym_PIPE_PIPE] = ACTIONS(189), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE_AMP] = ACTIONS(187), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(187), + [anon_sym_LT_AMP] = ACTIONS(187), + [anon_sym_GT_AMP] = ACTIONS(187), + [anon_sym_GT_PIPE] = ACTIONS(187), + [anon_sym_LT_LT_DASH] = ACTIONS(187), + [aux_sym_heredoc_redirect_token1] = ACTIONS(218), + [anon_sym_LT_LT_LT] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(187), + [anon_sym_DOLLAR] = ACTIONS(187), + [sym__special_character] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(187), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(187), + [aux_sym_number_token2] = ACTIONS(187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(187), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(187), + [anon_sym_LT_LPAREN] = ACTIONS(187), + [anon_sym_GT_LPAREN] = ACTIONS(187), [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1180), - [sym_file_descriptor] = ACTIONS(1182), - [sym__bare_dollar] = ACTIONS(1182), - [sym__brace_start] = ACTIONS(1182), + [sym_file_descriptor] = ACTIONS(218), + [sym_test_operator] = ACTIONS(352), + [sym__bare_dollar] = ACTIONS(218), + [sym__brace_start] = ACTIONS(218), }, [383] = { - [aux_sym_concatenation_repeat1] = STATE(383), - [sym_word] = ACTIONS(1170), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1175), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_EQ] = ACTIONS(1170), - [anon_sym_DASH_EQ] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1170), - [anon_sym_SLASH_EQ] = ACTIONS(1170), - [anon_sym_PERCENT_EQ] = ACTIONS(1170), - [anon_sym_LT_LT_EQ] = ACTIONS(1175), - [anon_sym_GT_GT_EQ] = ACTIONS(1175), - [anon_sym_AMP_EQ] = ACTIONS(1175), - [anon_sym_CARET_EQ] = ACTIONS(1170), - [anon_sym_PIPE_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_PIPE_AMP] = ACTIONS(1175), - [anon_sym_RBRACK] = ACTIONS(1175), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_AMP_GT] = ACTIONS(1170), - [anon_sym_AMP_GT_GT] = ACTIONS(1175), - [anon_sym_LT_AMP] = ACTIONS(1175), - [anon_sym_GT_AMP] = ACTIONS(1175), - [anon_sym_GT_PIPE] = ACTIONS(1175), - [anon_sym_LT_LT_DASH] = ACTIONS(1175), - [anon_sym_LT_LT_LT] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1175), - [aux_sym_concatenation_token1] = ACTIONS(1297), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym__special_character] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_raw_string] = ACTIONS(1175), - [sym_ansi_c_string] = ACTIONS(1175), - [aux_sym_number_token1] = ACTIONS(1170), - [aux_sym_number_token2] = ACTIONS(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1170), - [anon_sym_BQUOTE] = ACTIONS(1170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1175), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1175), - [sym_file_descriptor] = ACTIONS(1175), - [sym__concat] = ACTIONS(1297), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1156), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [384] = { - [aux_sym_concatenation_repeat1] = STATE(383), - [sym_word] = ACTIONS(1184), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1184), - [anon_sym_PLUS_PLUS] = ACTIONS(1184), - [anon_sym_DASH_DASH] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_PERCENT_EQ] = ACTIONS(1184), - [anon_sym_LT_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_GT_EQ] = ACTIONS(1186), - [anon_sym_AMP_EQ] = ACTIONS(1186), - [anon_sym_CARET_EQ] = ACTIONS(1184), - [anon_sym_PIPE_EQ] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT_EQ] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1186), - [anon_sym_PIPE_PIPE] = ACTIONS(1186), - [anon_sym_LT_LT] = ACTIONS(1184), - [anon_sym_GT_GT] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1184), - [anon_sym_STAR] = ACTIONS(1184), - [anon_sym_SLASH] = ACTIONS(1184), - [anon_sym_PERCENT] = ACTIONS(1184), - [anon_sym_STAR_STAR] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_PIPE_AMP] = ACTIONS(1186), - [anon_sym_RBRACK] = ACTIONS(1186), - [anon_sym_EQ_TILDE] = ACTIONS(1184), - [anon_sym_AMP_GT] = ACTIONS(1184), - [anon_sym_AMP_GT_GT] = ACTIONS(1186), - [anon_sym_LT_AMP] = ACTIONS(1186), - [anon_sym_GT_AMP] = ACTIONS(1186), - [anon_sym_GT_PIPE] = ACTIONS(1186), - [anon_sym_LT_LT_DASH] = ACTIONS(1186), - [anon_sym_LT_LT_LT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1186), - [aux_sym_concatenation_token1] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(1184), - [sym__special_character] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1186), - [sym_raw_string] = ACTIONS(1186), - [sym_ansi_c_string] = ACTIONS(1186), - [aux_sym_number_token1] = ACTIONS(1184), - [aux_sym_number_token2] = ACTIONS(1184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1184), - [anon_sym_BQUOTE] = ACTIONS(1184), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1186), - [anon_sym_LT_LPAREN] = ACTIONS(1186), - [anon_sym_GT_LPAREN] = ACTIONS(1186), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1186), - [sym_file_descriptor] = ACTIONS(1186), - [sym__concat] = ACTIONS(1300), - [sym__bare_dollar] = ACTIONS(1186), - [sym__brace_start] = ACTIONS(1186), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1149), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1147), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1156), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [385] = { - [aux_sym_concatenation_repeat1] = STATE(384), - [sym_word] = ACTIONS(1180), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1182), - [anon_sym_EQ] = ACTIONS(1180), - [anon_sym_PLUS_PLUS] = ACTIONS(1180), - [anon_sym_DASH_DASH] = ACTIONS(1180), - [anon_sym_PLUS_EQ] = ACTIONS(1180), - [anon_sym_DASH_EQ] = ACTIONS(1180), - [anon_sym_STAR_EQ] = ACTIONS(1180), - [anon_sym_SLASH_EQ] = ACTIONS(1180), - [anon_sym_PERCENT_EQ] = ACTIONS(1180), - [anon_sym_LT_LT_EQ] = ACTIONS(1182), - [anon_sym_GT_GT_EQ] = ACTIONS(1182), - [anon_sym_AMP_EQ] = ACTIONS(1182), - [anon_sym_CARET_EQ] = ACTIONS(1180), - [anon_sym_PIPE_EQ] = ACTIONS(1182), - [anon_sym_EQ_EQ] = ACTIONS(1180), - [anon_sym_BANG_EQ] = ACTIONS(1180), - [anon_sym_LT_EQ] = ACTIONS(1182), - [anon_sym_GT_EQ] = ACTIONS(1182), - [anon_sym_AMP_AMP] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1182), - [anon_sym_LT_LT] = ACTIONS(1180), - [anon_sym_GT_GT] = ACTIONS(1180), - [anon_sym_PLUS] = ACTIONS(1180), - [anon_sym_DASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1180), - [anon_sym_SLASH] = ACTIONS(1180), - [anon_sym_PERCENT] = ACTIONS(1180), - [anon_sym_STAR_STAR] = ACTIONS(1180), - [anon_sym_LT] = ACTIONS(1180), - [anon_sym_GT] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1180), - [anon_sym_PIPE_AMP] = ACTIONS(1182), - [anon_sym_RBRACK] = ACTIONS(1182), - [anon_sym_EQ_TILDE] = ACTIONS(1180), - [anon_sym_AMP_GT] = ACTIONS(1180), - [anon_sym_AMP_GT_GT] = ACTIONS(1182), - [anon_sym_LT_AMP] = ACTIONS(1182), - [anon_sym_GT_AMP] = ACTIONS(1182), - [anon_sym_GT_PIPE] = ACTIONS(1182), - [anon_sym_LT_LT_DASH] = ACTIONS(1182), - [anon_sym_LT_LT_LT] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1180), - [anon_sym_CARET] = ACTIONS(1180), - [anon_sym_QMARK] = ACTIONS(1180), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1182), - [aux_sym_concatenation_token1] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(1180), - [sym__special_character] = ACTIONS(1180), - [anon_sym_DQUOTE] = ACTIONS(1182), - [sym_raw_string] = ACTIONS(1182), - [sym_ansi_c_string] = ACTIONS(1182), - [aux_sym_number_token1] = ACTIONS(1180), - [aux_sym_number_token2] = ACTIONS(1180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1180), - [anon_sym_BQUOTE] = ACTIONS(1180), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1182), - [anon_sym_LT_LPAREN] = ACTIONS(1182), - [anon_sym_GT_LPAREN] = ACTIONS(1182), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1182), - [sym_file_descriptor] = ACTIONS(1182), - [sym__concat] = ACTIONS(359), - [sym__bare_dollar] = ACTIONS(1182), - [sym__brace_start] = ACTIONS(1182), + [sym_word] = ACTIONS(1167), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1167), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_STAR_EQ] = ACTIONS(1167), + [anon_sym_SLASH_EQ] = ACTIONS(1167), + [anon_sym_PERCENT_EQ] = ACTIONS(1167), + [anon_sym_LT_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_EQ] = ACTIONS(1167), + [anon_sym_CARET_EQ] = ACTIONS(1167), + [anon_sym_PIPE_EQ] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT] = ACTIONS(1167), + [anon_sym_GT_GT] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1167), + [anon_sym_RPAREN] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1167), + [anon_sym_SEMI_SEMI] = ACTIONS(1167), + [anon_sym_PIPE_AMP] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_AMP_GT] = ACTIONS(1167), + [anon_sym_AMP_GT_GT] = ACTIONS(1167), + [anon_sym_LT_AMP] = ACTIONS(1167), + [anon_sym_GT_AMP] = ACTIONS(1167), + [anon_sym_GT_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT_DASH] = ACTIONS(1167), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1169), + [anon_sym_LT_LT_LT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_QMARK] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1167), + [sym__special_character] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_raw_string] = ACTIONS(1167), + [sym_ansi_c_string] = ACTIONS(1167), + [aux_sym_number_token1] = ACTIONS(1167), + [aux_sym_number_token2] = ACTIONS(1167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1167), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1167), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1169), + [sym_test_operator] = ACTIONS(1169), + [sym__bare_dollar] = ACTIONS(1169), + [sym__brace_start] = ACTIONS(1169), }, [386] = { - [aux_sym_concatenation_repeat1] = STATE(381), - [sym_word] = ACTIONS(1159), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1168), - [anon_sym_EQ] = ACTIONS(1161), - [anon_sym_PLUS_PLUS] = ACTIONS(1161), - [anon_sym_DASH_DASH] = ACTIONS(1161), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1163), - [anon_sym_BANG_EQ] = ACTIONS(1161), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_LT_LT] = ACTIONS(1163), - [anon_sym_GT_GT] = ACTIONS(1163), - [anon_sym_PLUS] = ACTIONS(1161), - [anon_sym_DASH] = ACTIONS(1161), - [anon_sym_STAR] = ACTIONS(1161), - [anon_sym_SLASH] = ACTIONS(1161), - [anon_sym_PERCENT] = ACTIONS(1161), - [anon_sym_STAR_STAR] = ACTIONS(1161), - [anon_sym_LT] = ACTIONS(1163), - [anon_sym_GT] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1163), - [anon_sym_AMP_GT] = ACTIONS(1159), - [anon_sym_AMP_GT_GT] = ACTIONS(1168), - [anon_sym_LT_AMP] = ACTIONS(1168), - [anon_sym_GT_AMP] = ACTIONS(1168), - [anon_sym_GT_PIPE] = ACTIONS(1168), - [anon_sym_LT_LT_DASH] = ACTIONS(1168), - [anon_sym_LT_LT_LT] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1161), - [anon_sym_CARET] = ACTIONS(1161), - [anon_sym_QMARK] = ACTIONS(1161), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1168), + [aux_sym_concatenation_repeat1] = STATE(391), + [sym_word] = ACTIONS(1167), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_STAR_EQ] = ACTIONS(1167), + [anon_sym_SLASH_EQ] = ACTIONS(1167), + [anon_sym_PERCENT_EQ] = ACTIONS(1167), + [anon_sym_LT_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_GT_EQ] = ACTIONS(1169), + [anon_sym_AMP_EQ] = ACTIONS(1169), + [anon_sym_CARET_EQ] = ACTIONS(1167), + [anon_sym_PIPE_EQ] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_AMP_AMP] = ACTIONS(1169), + [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_LT_LT] = ACTIONS(1167), + [anon_sym_GT_GT] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1167), + [anon_sym_PIPE_AMP] = ACTIONS(1169), + [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_AMP_GT] = ACTIONS(1167), + [anon_sym_AMP_GT_GT] = ACTIONS(1169), + [anon_sym_LT_AMP] = ACTIONS(1169), + [anon_sym_GT_AMP] = ACTIONS(1169), + [anon_sym_GT_PIPE] = ACTIONS(1169), + [anon_sym_LT_LT_DASH] = ACTIONS(1169), + [anon_sym_LT_LT_LT] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_QMARK] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1169), [aux_sym_concatenation_token1] = ACTIONS(359), - [anon_sym_DOLLAR] = ACTIONS(1159), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1168), - [sym_raw_string] = ACTIONS(1168), - [sym_ansi_c_string] = ACTIONS(1168), - [aux_sym_number_token1] = ACTIONS(1159), - [aux_sym_number_token2] = ACTIONS(1159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1159), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1168), - [anon_sym_LT_LPAREN] = ACTIONS(1168), - [anon_sym_GT_LPAREN] = ACTIONS(1168), + [anon_sym_DOLLAR] = ACTIONS(1167), + [sym__special_character] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_raw_string] = ACTIONS(1169), + [sym_ansi_c_string] = ACTIONS(1169), + [aux_sym_number_token1] = ACTIONS(1167), + [aux_sym_number_token2] = ACTIONS(1167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1167), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1169), + [anon_sym_GT_LPAREN] = ACTIONS(1169), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1290), - [sym_file_descriptor] = ACTIONS(1168), + [sym_file_descriptor] = ACTIONS(1169), [sym__concat] = ACTIONS(359), - [sym__bare_dollar] = ACTIONS(1168), - [sym__brace_start] = ACTIONS(1168), + [sym_test_operator] = ACTIONS(1169), + [sym__bare_dollar] = ACTIONS(1169), + [sym__brace_start] = ACTIONS(1169), }, [387] = { - [sym_word] = ACTIONS(1220), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_PLUS_PLUS] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1220), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_PERCENT_EQ] = ACTIONS(1220), - [anon_sym_LT_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_GT_EQ] = ACTIONS(1222), - [anon_sym_AMP_EQ] = ACTIONS(1222), - [anon_sym_CARET_EQ] = ACTIONS(1220), - [anon_sym_PIPE_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1220), - [anon_sym_GT_GT] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_SLASH] = ACTIONS(1220), - [anon_sym_PERCENT] = ACTIONS(1220), - [anon_sym_STAR_STAR] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_PIPE_AMP] = ACTIONS(1222), - [anon_sym_RBRACK] = ACTIONS(1222), - [anon_sym_EQ_TILDE] = ACTIONS(1220), - [anon_sym_AMP_GT] = ACTIONS(1220), - [anon_sym_AMP_GT_GT] = ACTIONS(1222), - [anon_sym_LT_AMP] = ACTIONS(1222), - [anon_sym_GT_AMP] = ACTIONS(1222), - [anon_sym_GT_PIPE] = ACTIONS(1222), - [anon_sym_LT_LT_DASH] = ACTIONS(1222), - [anon_sym_LT_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1222), - [aux_sym_concatenation_token1] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym__special_character] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_raw_string] = ACTIONS(1222), - [sym_ansi_c_string] = ACTIONS(1222), - [aux_sym_number_token1] = ACTIONS(1220), - [aux_sym_number_token2] = ACTIONS(1220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), - [anon_sym_BQUOTE] = ACTIONS(1220), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1222), - [anon_sym_LT_LPAREN] = ACTIONS(1222), - [anon_sym_GT_LPAREN] = ACTIONS(1222), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1222), - [sym_file_descriptor] = ACTIONS(1222), - [sym__concat] = ACTIONS(1222), - [sym__bare_dollar] = ACTIONS(1222), - [sym__brace_start] = ACTIONS(1222), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_SEMI] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_SEMI_SEMI] = ACTIONS(1147), + [anon_sym_PIPE_AMP] = ACTIONS(1147), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1147), + [anon_sym_LT_AMP] = ACTIONS(1147), + [anon_sym_GT_AMP] = ACTIONS(1147), + [anon_sym_GT_PIPE] = ACTIONS(1147), + [anon_sym_LT_LT_DASH] = ACTIONS(1147), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1147), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1147), + [sym_raw_string] = ACTIONS(1147), + [sym_ansi_c_string] = ACTIONS(1147), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1147), + [anon_sym_LT_LPAREN] = ACTIONS(1147), + [anon_sym_GT_LPAREN] = ACTIONS(1147), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1156), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [388] = { - [sym_word] = ACTIONS(1246), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_PIPE_AMP] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(1246), - [anon_sym_AMP_GT] = ACTIONS(1246), - [anon_sym_AMP_GT_GT] = ACTIONS(1248), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_GT_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(1248), - [anon_sym_LT_LT_LT] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1246), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1248), - [aux_sym_concatenation_token1] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1246), - [sym__special_character] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_raw_string] = ACTIONS(1248), - [sym_ansi_c_string] = ACTIONS(1248), - [aux_sym_number_token1] = ACTIONS(1246), - [aux_sym_number_token2] = ACTIONS(1246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1246), - [anon_sym_BQUOTE] = ACTIONS(1246), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1248), - [anon_sym_LT_LPAREN] = ACTIONS(1248), - [anon_sym_GT_LPAREN] = ACTIONS(1248), + [aux_sym_concatenation_repeat1] = STATE(388), + [sym_word] = ACTIONS(1183), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1185), + [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_LT_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_GT_EQ] = ACTIONS(1185), + [anon_sym_AMP_EQ] = ACTIONS(1185), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1185), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_STAR_STAR] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = ACTIONS(1185), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1183), + [anon_sym_AMP_GT] = ACTIONS(1183), + [anon_sym_AMP_GT_GT] = ACTIONS(1185), + [anon_sym_LT_AMP] = ACTIONS(1185), + [anon_sym_GT_AMP] = ACTIONS(1185), + [anon_sym_GT_PIPE] = ACTIONS(1185), + [anon_sym_LT_LT_DASH] = ACTIONS(1185), + [anon_sym_LT_LT_LT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1185), + [aux_sym_concatenation_token1] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1183), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_raw_string] = ACTIONS(1185), + [sym_ansi_c_string] = ACTIONS(1185), + [aux_sym_number_token1] = ACTIONS(1183), + [aux_sym_number_token2] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), + [anon_sym_BQUOTE] = ACTIONS(1183), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1185), + [anon_sym_LT_LPAREN] = ACTIONS(1185), + [anon_sym_GT_LPAREN] = ACTIONS(1185), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1248), - [sym_file_descriptor] = ACTIONS(1248), - [sym__concat] = ACTIONS(1248), - [sym__bare_dollar] = ACTIONS(1248), - [sym__brace_start] = ACTIONS(1248), + [sym_file_descriptor] = ACTIONS(1185), + [sym__concat] = ACTIONS(1289), + [sym_test_operator] = ACTIONS(1185), + [sym__bare_dollar] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1185), }, [389] = { - [sym_word] = ACTIONS(1212), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1214), - [anon_sym_EQ] = ACTIONS(1212), - [anon_sym_PLUS_PLUS] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1212), - [anon_sym_PLUS_EQ] = ACTIONS(1212), - [anon_sym_DASH_EQ] = ACTIONS(1212), - [anon_sym_STAR_EQ] = ACTIONS(1212), - [anon_sym_SLASH_EQ] = ACTIONS(1212), - [anon_sym_PERCENT_EQ] = ACTIONS(1212), - [anon_sym_LT_LT_EQ] = ACTIONS(1214), - [anon_sym_GT_GT_EQ] = ACTIONS(1214), - [anon_sym_AMP_EQ] = ACTIONS(1214), - [anon_sym_CARET_EQ] = ACTIONS(1212), - [anon_sym_PIPE_EQ] = ACTIONS(1214), - [anon_sym_EQ_EQ] = ACTIONS(1212), - [anon_sym_BANG_EQ] = ACTIONS(1212), - [anon_sym_LT_EQ] = ACTIONS(1214), - [anon_sym_GT_EQ] = ACTIONS(1214), - [anon_sym_AMP_AMP] = ACTIONS(1214), - [anon_sym_PIPE_PIPE] = ACTIONS(1214), - [anon_sym_LT_LT] = ACTIONS(1212), - [anon_sym_GT_GT] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1212), - [anon_sym_SLASH] = ACTIONS(1212), - [anon_sym_PERCENT] = ACTIONS(1212), - [anon_sym_STAR_STAR] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_PIPE_AMP] = ACTIONS(1214), - [anon_sym_RBRACK] = ACTIONS(1214), - [anon_sym_EQ_TILDE] = ACTIONS(1212), - [anon_sym_AMP_GT] = ACTIONS(1212), - [anon_sym_AMP_GT_GT] = ACTIONS(1214), - [anon_sym_LT_AMP] = ACTIONS(1214), - [anon_sym_GT_AMP] = ACTIONS(1214), - [anon_sym_GT_PIPE] = ACTIONS(1214), - [anon_sym_LT_LT_DASH] = ACTIONS(1214), - [anon_sym_LT_LT_LT] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_CARET] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1214), - [aux_sym_concatenation_token1] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1212), - [sym__special_character] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_raw_string] = ACTIONS(1214), - [sym_ansi_c_string] = ACTIONS(1214), - [aux_sym_number_token1] = ACTIONS(1212), - [aux_sym_number_token2] = ACTIONS(1212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1212), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1214), - [anon_sym_LT_LPAREN] = ACTIONS(1214), - [anon_sym_GT_LPAREN] = ACTIONS(1214), + [aux_sym_concatenation_repeat1] = STATE(388), + [sym_word] = ACTIONS(1177), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1177), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [anon_sym_PLUS_EQ] = ACTIONS(1177), + [anon_sym_DASH_EQ] = ACTIONS(1177), + [anon_sym_STAR_EQ] = ACTIONS(1177), + [anon_sym_SLASH_EQ] = ACTIONS(1177), + [anon_sym_PERCENT_EQ] = ACTIONS(1177), + [anon_sym_LT_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_GT_EQ] = ACTIONS(1179), + [anon_sym_AMP_EQ] = ACTIONS(1179), + [anon_sym_CARET_EQ] = ACTIONS(1177), + [anon_sym_PIPE_EQ] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1179), + [anon_sym_PIPE_PIPE] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1177), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_PERCENT] = ACTIONS(1177), + [anon_sym_STAR_STAR] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_PIPE_AMP] = ACTIONS(1179), + [anon_sym_RBRACK] = ACTIONS(1179), + [anon_sym_EQ_TILDE] = ACTIONS(1177), + [anon_sym_AMP_GT] = ACTIONS(1177), + [anon_sym_AMP_GT_GT] = ACTIONS(1179), + [anon_sym_LT_AMP] = ACTIONS(1179), + [anon_sym_GT_AMP] = ACTIONS(1179), + [anon_sym_GT_PIPE] = ACTIONS(1179), + [anon_sym_LT_LT_DASH] = ACTIONS(1179), + [anon_sym_LT_LT_LT] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_CARET] = ACTIONS(1177), + [anon_sym_QMARK] = ACTIONS(1177), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1179), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1177), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_raw_string] = ACTIONS(1179), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(1177), + [aux_sym_number_token2] = ACTIONS(1177), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1179), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1177), + [anon_sym_BQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1179), + [anon_sym_LT_LPAREN] = ACTIONS(1179), + [anon_sym_GT_LPAREN] = ACTIONS(1179), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1214), - [sym_file_descriptor] = ACTIONS(1214), - [sym__concat] = ACTIONS(1214), - [sym__bare_dollar] = ACTIONS(1214), - [sym__brace_start] = ACTIONS(1214), + [sym_file_descriptor] = ACTIONS(1179), + [sym__concat] = ACTIONS(1292), + [sym_test_operator] = ACTIONS(1179), + [sym__bare_dollar] = ACTIONS(1179), + [sym__brace_start] = ACTIONS(1179), }, [390] = { - [sym_word] = ACTIONS(1238), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1238), - [anon_sym_DASH_EQ] = ACTIONS(1238), - [anon_sym_STAR_EQ] = ACTIONS(1238), - [anon_sym_SLASH_EQ] = ACTIONS(1238), - [anon_sym_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1238), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_EQ_EQ] = ACTIONS(1238), - [anon_sym_BANG_EQ] = ACTIONS(1238), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_STAR_STAR] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_PIPE_AMP] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1238), - [anon_sym_AMP_GT] = ACTIONS(1238), - [anon_sym_AMP_GT_GT] = ACTIONS(1240), - [anon_sym_LT_AMP] = ACTIONS(1240), - [anon_sym_GT_AMP] = ACTIONS(1240), - [anon_sym_GT_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT_DASH] = ACTIONS(1240), - [anon_sym_LT_LT_LT] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1238), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1240), - [aux_sym_concatenation_token1] = ACTIONS(1240), - [anon_sym_DOLLAR] = ACTIONS(1238), - [sym__special_character] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_raw_string] = ACTIONS(1240), - [sym_ansi_c_string] = ACTIONS(1240), - [aux_sym_number_token1] = ACTIONS(1238), - [aux_sym_number_token2] = ACTIONS(1238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1238), - [anon_sym_BQUOTE] = ACTIONS(1238), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1240), - [anon_sym_LT_LPAREN] = ACTIONS(1240), - [anon_sym_GT_LPAREN] = ACTIONS(1240), + [aux_sym_concatenation_repeat1] = STATE(389), + [sym_word] = ACTIONS(1147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1156), + [anon_sym_EQ] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_PERCENT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_GT_EQ] = ACTIONS(1283), + [anon_sym_AMP_EQ] = ACTIONS(1283), + [anon_sym_CARET_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1151), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1158), + [anon_sym_PIPE_PIPE] = ACTIONS(1158), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_STAR_STAR] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_PIPE_AMP] = ACTIONS(1156), + [anon_sym_RBRACK] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1151), + [anon_sym_AMP_GT] = ACTIONS(1147), + [anon_sym_AMP_GT_GT] = ACTIONS(1156), + [anon_sym_LT_AMP] = ACTIONS(1156), + [anon_sym_GT_AMP] = ACTIONS(1156), + [anon_sym_GT_PIPE] = ACTIONS(1156), + [anon_sym_LT_LT_DASH] = ACTIONS(1156), + [anon_sym_LT_LT_LT] = ACTIONS(1156), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1156), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1147), + [sym__special_character] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1156), + [sym_raw_string] = ACTIONS(1156), + [sym_ansi_c_string] = ACTIONS(1156), + [aux_sym_number_token1] = ACTIONS(1147), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1147), + [anon_sym_BQUOTE] = ACTIONS(1147), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1156), + [anon_sym_LT_LPAREN] = ACTIONS(1156), + [anon_sym_GT_LPAREN] = ACTIONS(1156), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1240), - [sym_file_descriptor] = ACTIONS(1240), - [sym__concat] = ACTIONS(1240), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1156), + [sym__concat] = ACTIONS(359), + [sym_test_operator] = ACTIONS(1158), + [sym__bare_dollar] = ACTIONS(1156), + [sym__brace_start] = ACTIONS(1156), }, [391] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1244), - [anon_sym_LT_AMP] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1244), - [anon_sym_GT_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT_DASH] = ACTIONS(1244), - [anon_sym_LT_LT_LT] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1244), - [aux_sym_concatenation_token1] = ACTIONS(1244), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_raw_string] = ACTIONS(1244), - [sym_ansi_c_string] = ACTIONS(1244), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1244), - [anon_sym_LT_LPAREN] = ACTIONS(1244), - [anon_sym_GT_LPAREN] = ACTIONS(1244), + [aux_sym_concatenation_repeat1] = STATE(388), + [sym_word] = ACTIONS(1171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1173), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1171), + [anon_sym_DASH_DASH] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1171), + [anon_sym_DASH_EQ] = ACTIONS(1171), + [anon_sym_STAR_EQ] = ACTIONS(1171), + [anon_sym_SLASH_EQ] = ACTIONS(1171), + [anon_sym_PERCENT_EQ] = ACTIONS(1171), + [anon_sym_LT_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_GT_EQ] = ACTIONS(1173), + [anon_sym_AMP_EQ] = ACTIONS(1173), + [anon_sym_CARET_EQ] = ACTIONS(1171), + [anon_sym_PIPE_EQ] = ACTIONS(1173), + [anon_sym_EQ_EQ] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_AMP_AMP] = ACTIONS(1173), + [anon_sym_PIPE_PIPE] = ACTIONS(1173), + [anon_sym_LT_LT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_PERCENT] = ACTIONS(1171), + [anon_sym_STAR_STAR] = ACTIONS(1171), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_PIPE_AMP] = ACTIONS(1173), + [anon_sym_RBRACK] = ACTIONS(1173), + [anon_sym_EQ_TILDE] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1171), + [anon_sym_AMP_GT_GT] = ACTIONS(1173), + [anon_sym_LT_AMP] = ACTIONS(1173), + [anon_sym_GT_AMP] = ACTIONS(1173), + [anon_sym_GT_PIPE] = ACTIONS(1173), + [anon_sym_LT_LT_DASH] = ACTIONS(1173), + [anon_sym_LT_LT_LT] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_QMARK] = ACTIONS(1171), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1173), + [aux_sym_concatenation_token1] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1171), + [sym__special_character] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_raw_string] = ACTIONS(1173), + [sym_ansi_c_string] = ACTIONS(1173), + [aux_sym_number_token1] = ACTIONS(1171), + [aux_sym_number_token2] = ACTIONS(1171), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1171), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1173), + [anon_sym_LT_LPAREN] = ACTIONS(1173), + [anon_sym_GT_LPAREN] = ACTIONS(1173), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1244), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1173), + [sym__concat] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1173), + [sym__bare_dollar] = ACTIONS(1173), + [sym__brace_start] = ACTIONS(1173), }, [392] = { - [sym_word] = ACTIONS(1224), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1224), - [anon_sym_PLUS_EQ] = ACTIONS(1224), - [anon_sym_DASH_EQ] = ACTIONS(1224), - [anon_sym_STAR_EQ] = ACTIONS(1224), - [anon_sym_SLASH_EQ] = ACTIONS(1224), - [anon_sym_PERCENT_EQ] = ACTIONS(1224), - [anon_sym_LT_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP_EQ] = ACTIONS(1226), - [anon_sym_CARET_EQ] = ACTIONS(1224), - [anon_sym_PIPE_EQ] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1224), - [anon_sym_BANG_EQ] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PERCENT] = ACTIONS(1224), - [anon_sym_STAR_STAR] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1226), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_EQ_TILDE] = ACTIONS(1224), - [anon_sym_AMP_GT] = ACTIONS(1224), - [anon_sym_AMP_GT_GT] = ACTIONS(1226), - [anon_sym_LT_AMP] = ACTIONS(1226), - [anon_sym_GT_AMP] = ACTIONS(1226), - [anon_sym_GT_PIPE] = ACTIONS(1226), - [anon_sym_LT_LT_DASH] = ACTIONS(1226), - [anon_sym_LT_LT_LT] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1226), - [aux_sym_concatenation_token1] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(1224), - [sym__special_character] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_raw_string] = ACTIONS(1226), - [sym_ansi_c_string] = ACTIONS(1226), - [aux_sym_number_token1] = ACTIONS(1224), - [aux_sym_number_token2] = ACTIONS(1224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1224), - [anon_sym_BQUOTE] = ACTIONS(1224), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1226), - [anon_sym_LT_LPAREN] = ACTIONS(1226), - [anon_sym_GT_LPAREN] = ACTIONS(1226), - [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1226), - [sym_file_descriptor] = ACTIONS(1226), - [sym__concat] = ACTIONS(1226), - [sym__bare_dollar] = ACTIONS(1226), - [sym__brace_start] = ACTIONS(1226), + [sym_word] = ACTIONS(1167), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_STAR_EQ] = ACTIONS(1167), + [anon_sym_SLASH_EQ] = ACTIONS(1167), + [anon_sym_PERCENT_EQ] = ACTIONS(1167), + [anon_sym_LT_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_EQ] = ACTIONS(1167), + [anon_sym_CARET_EQ] = ACTIONS(1167), + [anon_sym_PIPE_EQ] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1167), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT] = ACTIONS(1167), + [anon_sym_GT_GT] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_PERCENT] = ACTIONS(1167), + [anon_sym_STAR_STAR] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_GT] = ACTIONS(1167), + [anon_sym_RPAREN] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1167), + [anon_sym_SEMI_SEMI] = ACTIONS(1167), + [anon_sym_PIPE_AMP] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1167), + [anon_sym_AMP_GT] = ACTIONS(1167), + [anon_sym_AMP_GT_GT] = ACTIONS(1167), + [anon_sym_LT_AMP] = ACTIONS(1167), + [anon_sym_GT_AMP] = ACTIONS(1167), + [anon_sym_GT_PIPE] = ACTIONS(1167), + [anon_sym_LT_LT_DASH] = ACTIONS(1167), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1169), + [anon_sym_LT_LT_LT] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_QMARK] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1167), + [sym__special_character] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_raw_string] = ACTIONS(1167), + [sym_ansi_c_string] = ACTIONS(1167), + [aux_sym_number_token1] = ACTIONS(1167), + [aux_sym_number_token2] = ACTIONS(1167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1167), + [anon_sym_BQUOTE] = ACTIONS(1167), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1167), + [anon_sym_LT_LPAREN] = ACTIONS(1167), + [anon_sym_GT_LPAREN] = ACTIONS(1167), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1169), + [sym_test_operator] = ACTIONS(1169), + [sym__bare_dollar] = ACTIONS(1169), + [sym__brace_start] = ACTIONS(1169), }, [393] = { - [sym_word] = ACTIONS(1250), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1250), - [anon_sym_DASH_EQ] = ACTIONS(1250), - [anon_sym_STAR_EQ] = ACTIONS(1250), - [anon_sym_SLASH_EQ] = ACTIONS(1250), - [anon_sym_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_LT_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_EQ] = ACTIONS(1252), - [anon_sym_CARET_EQ] = ACTIONS(1250), - [anon_sym_PIPE_EQ] = ACTIONS(1252), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_STAR_STAR] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_PIPE_AMP] = ACTIONS(1252), - [anon_sym_RBRACK] = ACTIONS(1252), - [anon_sym_EQ_TILDE] = ACTIONS(1250), - [anon_sym_AMP_GT] = ACTIONS(1250), - [anon_sym_AMP_GT_GT] = ACTIONS(1252), - [anon_sym_LT_AMP] = ACTIONS(1252), - [anon_sym_GT_AMP] = ACTIONS(1252), - [anon_sym_GT_PIPE] = ACTIONS(1252), - [anon_sym_LT_LT_DASH] = ACTIONS(1252), - [anon_sym_LT_LT_LT] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1250), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1252), - [aux_sym_concatenation_token1] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1250), - [sym__special_character] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_raw_string] = ACTIONS(1252), - [sym_ansi_c_string] = ACTIONS(1252), - [aux_sym_number_token1] = ACTIONS(1250), - [aux_sym_number_token2] = ACTIONS(1250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1250), - [anon_sym_BQUOTE] = ACTIONS(1250), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1252), - [anon_sym_LT_LPAREN] = ACTIONS(1252), - [anon_sym_GT_LPAREN] = ACTIONS(1252), + [sym_word] = ACTIONS(1223), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1225), + [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_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_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(1223), + [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(1225), + [anon_sym_GT_AMP] = ACTIONS(1225), + [anon_sym_GT_PIPE] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1225), + [anon_sym_LT_LT_LT] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1225), + [aux_sym_concatenation_token1] = 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(1223), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1225), + [anon_sym_LT_LPAREN] = ACTIONS(1225), + [anon_sym_GT_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1252), - [sym_file_descriptor] = ACTIONS(1252), - [sym__concat] = ACTIONS(1252), - [sym__bare_dollar] = ACTIONS(1252), - [sym__brace_start] = ACTIONS(1252), + [sym_file_descriptor] = ACTIONS(1225), + [sym__concat] = ACTIONS(1225), + [sym_test_operator] = ACTIONS(1225), + [sym__bare_dollar] = ACTIONS(1225), + [sym__brace_start] = ACTIONS(1225), }, [394] = { - [sym_word] = ACTIONS(1254), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_STAR_EQ] = ACTIONS(1254), - [anon_sym_SLASH_EQ] = ACTIONS(1254), - [anon_sym_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_EQ] = ACTIONS(1256), - [anon_sym_GT_GT_EQ] = ACTIONS(1256), - [anon_sym_AMP_EQ] = ACTIONS(1256), - [anon_sym_CARET_EQ] = ACTIONS(1254), - [anon_sym_PIPE_EQ] = ACTIONS(1256), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1256), - [anon_sym_GT_EQ] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1254), - [anon_sym_PIPE_AMP] = ACTIONS(1256), - [anon_sym_RBRACK] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1254), - [anon_sym_AMP_GT] = ACTIONS(1254), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_GT_PIPE] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1254), - [anon_sym_QMARK] = ACTIONS(1254), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [aux_sym_concatenation_token1] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1254), - [sym__special_character] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [sym_ansi_c_string] = ACTIONS(1256), - [aux_sym_number_token1] = ACTIONS(1254), - [aux_sym_number_token2] = ACTIONS(1254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1254), - [anon_sym_BQUOTE] = ACTIONS(1254), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), + [sym_word] = ACTIONS(1201), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1203), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [anon_sym_PLUS_EQ] = ACTIONS(1201), + [anon_sym_DASH_EQ] = ACTIONS(1201), + [anon_sym_STAR_EQ] = ACTIONS(1201), + [anon_sym_SLASH_EQ] = ACTIONS(1201), + [anon_sym_PERCENT_EQ] = ACTIONS(1201), + [anon_sym_LT_LT_EQ] = ACTIONS(1203), + [anon_sym_GT_GT_EQ] = ACTIONS(1203), + [anon_sym_AMP_EQ] = ACTIONS(1203), + [anon_sym_CARET_EQ] = ACTIONS(1201), + [anon_sym_PIPE_EQ] = ACTIONS(1203), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1203), + [anon_sym_AMP_AMP] = ACTIONS(1203), + [anon_sym_PIPE_PIPE] = ACTIONS(1203), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1201), + [anon_sym_STAR_STAR] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1201), + [anon_sym_GT] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_PIPE_AMP] = ACTIONS(1203), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_GT] = ACTIONS(1201), + [anon_sym_AMP_GT_GT] = ACTIONS(1203), + [anon_sym_LT_AMP] = ACTIONS(1203), + [anon_sym_GT_AMP] = ACTIONS(1203), + [anon_sym_GT_PIPE] = ACTIONS(1203), + [anon_sym_LT_LT_DASH] = ACTIONS(1203), + [anon_sym_LT_LT_LT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1203), + [aux_sym_concatenation_token1] = ACTIONS(1203), + [anon_sym_DOLLAR] = ACTIONS(1201), + [sym__special_character] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1203), + [sym_raw_string] = ACTIONS(1203), + [sym_ansi_c_string] = ACTIONS(1203), + [aux_sym_number_token1] = ACTIONS(1201), + [aux_sym_number_token2] = ACTIONS(1201), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1203), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1201), + [anon_sym_BQUOTE] = ACTIONS(1201), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1203), + [anon_sym_LT_LPAREN] = ACTIONS(1203), + [anon_sym_GT_LPAREN] = ACTIONS(1203), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1256), - [sym_file_descriptor] = ACTIONS(1256), - [sym__concat] = ACTIONS(1256), - [sym__bare_dollar] = ACTIONS(1256), - [sym__brace_start] = ACTIONS(1256), + [sym_file_descriptor] = ACTIONS(1203), + [sym__concat] = ACTIONS(1203), + [sym_test_operator] = ACTIONS(1203), + [sym__bare_dollar] = ACTIONS(1203), + [sym__brace_start] = ACTIONS(1203), }, [395] = { - [sym_word] = ACTIONS(1228), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1228), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_PERCENT_EQ] = ACTIONS(1228), - [anon_sym_LT_LT_EQ] = ACTIONS(1230), - [anon_sym_GT_GT_EQ] = ACTIONS(1230), - [anon_sym_AMP_EQ] = ACTIONS(1230), - [anon_sym_CARET_EQ] = ACTIONS(1228), - [anon_sym_PIPE_EQ] = ACTIONS(1230), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1230), - [anon_sym_AMP_AMP] = ACTIONS(1230), - [anon_sym_PIPE_PIPE] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1230), - [anon_sym_RBRACK] = ACTIONS(1230), - [anon_sym_EQ_TILDE] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1230), - [anon_sym_LT_AMP] = ACTIONS(1230), - [anon_sym_GT_AMP] = ACTIONS(1230), - [anon_sym_GT_PIPE] = ACTIONS(1230), - [anon_sym_LT_LT_DASH] = ACTIONS(1230), - [anon_sym_LT_LT_LT] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1230), - [aux_sym_concatenation_token1] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(1228), - [sym__special_character] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_raw_string] = ACTIONS(1230), - [sym_ansi_c_string] = ACTIONS(1230), - [aux_sym_number_token1] = ACTIONS(1228), - [aux_sym_number_token2] = ACTIONS(1228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1230), - [anon_sym_LT_LPAREN] = ACTIONS(1230), - [anon_sym_GT_LPAREN] = ACTIONS(1230), + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [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(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1207), + [anon_sym_AMP_AMP] = ACTIONS(1207), + [anon_sym_PIPE_PIPE] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1207), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1207), + [anon_sym_LT_AMP] = ACTIONS(1207), + [anon_sym_GT_AMP] = ACTIONS(1207), + [anon_sym_GT_PIPE] = ACTIONS(1207), + [anon_sym_LT_LT_DASH] = ACTIONS(1207), + [anon_sym_LT_LT_LT] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1207), + [aux_sym_concatenation_token1] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1205), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1207), + [sym_raw_string] = ACTIONS(1207), + [sym_ansi_c_string] = ACTIONS(1207), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1207), + [anon_sym_LT_LPAREN] = ACTIONS(1207), + [anon_sym_GT_LPAREN] = ACTIONS(1207), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1230), - [sym_file_descriptor] = ACTIONS(1230), - [sym__concat] = ACTIONS(1230), - [sym__bare_dollar] = ACTIONS(1230), - [sym__brace_start] = ACTIONS(1230), + [sym_file_descriptor] = ACTIONS(1207), + [sym__concat] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1207), + [sym__bare_dollar] = ACTIONS(1207), + [sym__brace_start] = ACTIONS(1207), }, [396] = { - [sym_word] = ACTIONS(1262), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [anon_sym_DASH_EQ] = ACTIONS(1262), - [anon_sym_STAR_EQ] = ACTIONS(1262), - [anon_sym_SLASH_EQ] = ACTIONS(1262), - [anon_sym_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_EQ] = ACTIONS(1264), - [anon_sym_CARET_EQ] = ACTIONS(1262), - [anon_sym_PIPE_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1262), - [anon_sym_GT_GT] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1262), - [anon_sym_STAR_STAR] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_PIPE_AMP] = ACTIONS(1264), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_EQ_TILDE] = ACTIONS(1262), - [anon_sym_AMP_GT] = ACTIONS(1262), - [anon_sym_AMP_GT_GT] = ACTIONS(1264), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_GT_PIPE] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(1264), - [anon_sym_LT_LT_LT] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1262), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1264), - [aux_sym_concatenation_token1] = ACTIONS(1264), - [anon_sym_DOLLAR] = ACTIONS(1262), - [sym__special_character] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_raw_string] = ACTIONS(1264), - [sym_ansi_c_string] = ACTIONS(1264), - [aux_sym_number_token1] = ACTIONS(1262), - [aux_sym_number_token2] = ACTIONS(1262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1262), - [anon_sym_BQUOTE] = ACTIONS(1262), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1264), - [anon_sym_LT_LPAREN] = ACTIONS(1264), - [anon_sym_GT_LPAREN] = ACTIONS(1264), + [sym_word] = ACTIONS(1183), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1185), + [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_LT_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_GT_EQ] = ACTIONS(1185), + [anon_sym_AMP_EQ] = ACTIONS(1185), + [anon_sym_CARET_EQ] = ACTIONS(1183), + [anon_sym_PIPE_EQ] = ACTIONS(1185), + [anon_sym_EQ_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_AMP_AMP] = ACTIONS(1185), + [anon_sym_PIPE_PIPE] = ACTIONS(1185), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_STAR_STAR] = ACTIONS(1183), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_PIPE_AMP] = ACTIONS(1185), + [anon_sym_RBRACK] = ACTIONS(1185), + [anon_sym_EQ_TILDE] = ACTIONS(1183), + [anon_sym_AMP_GT] = ACTIONS(1183), + [anon_sym_AMP_GT_GT] = ACTIONS(1185), + [anon_sym_LT_AMP] = ACTIONS(1185), + [anon_sym_GT_AMP] = ACTIONS(1185), + [anon_sym_GT_PIPE] = ACTIONS(1185), + [anon_sym_LT_LT_DASH] = ACTIONS(1185), + [anon_sym_LT_LT_LT] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1185), + [aux_sym_concatenation_token1] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1183), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_raw_string] = ACTIONS(1185), + [sym_ansi_c_string] = ACTIONS(1185), + [aux_sym_number_token1] = ACTIONS(1183), + [aux_sym_number_token2] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1183), + [anon_sym_BQUOTE] = ACTIONS(1183), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1185), + [anon_sym_LT_LPAREN] = ACTIONS(1185), + [anon_sym_GT_LPAREN] = ACTIONS(1185), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1264), - [sym_file_descriptor] = ACTIONS(1264), - [sym__concat] = ACTIONS(1264), - [sym__bare_dollar] = ACTIONS(1264), - [sym__brace_start] = ACTIONS(1264), + [sym_file_descriptor] = ACTIONS(1185), + [sym__concat] = ACTIONS(1185), + [sym_test_operator] = ACTIONS(1185), + [sym__bare_dollar] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1185), }, [397] = { - [sym_word] = ACTIONS(1266), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_EQ] = ACTIONS(1266), - [anon_sym_DASH_EQ] = ACTIONS(1266), - [anon_sym_STAR_EQ] = ACTIONS(1266), - [anon_sym_SLASH_EQ] = ACTIONS(1266), - [anon_sym_PERCENT_EQ] = ACTIONS(1266), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1266), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1266), - [anon_sym_BANG_EQ] = ACTIONS(1266), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1266), - [anon_sym_STAR_STAR] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1266), - [anon_sym_AMP_GT] = ACTIONS(1266), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1266), - [sym__special_character] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1266), - [aux_sym_number_token2] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), - [anon_sym_BQUOTE] = ACTIONS(1266), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), + [sym_word] = ACTIONS(1239), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_EQ] = ACTIONS(1239), + [anon_sym_DASH_EQ] = ACTIONS(1239), + [anon_sym_STAR_EQ] = ACTIONS(1239), + [anon_sym_SLASH_EQ] = ACTIONS(1239), + [anon_sym_PERCENT_EQ] = ACTIONS(1239), + [anon_sym_LT_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP_EQ] = ACTIONS(1241), + [anon_sym_CARET_EQ] = ACTIONS(1239), + [anon_sym_PIPE_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_STAR] = ACTIONS(1239), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_GT] = ACTIONS(1239), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [anon_sym_GT_PIPE] = ACTIONS(1241), + [anon_sym_LT_LT_DASH] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1241), + [aux_sym_concatenation_token1] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1239), + [sym__special_character] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1241), + [sym_ansi_c_string] = ACTIONS(1241), + [aux_sym_number_token1] = ACTIONS(1239), + [aux_sym_number_token2] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), + [anon_sym_BQUOTE] = ACTIONS(1239), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1268), - [sym_file_descriptor] = ACTIONS(1268), - [sym__concat] = ACTIONS(1268), - [sym__bare_dollar] = ACTIONS(1268), - [sym__brace_start] = ACTIONS(1268), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_test_operator] = ACTIONS(1241), + [sym__bare_dollar] = ACTIONS(1241), + [sym__brace_start] = ACTIONS(1241), }, [398] = { - [sym_word] = ACTIONS(1242), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_PIPE_AMP] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_AMP_GT] = ACTIONS(1242), - [anon_sym_AMP_GT_GT] = ACTIONS(1244), - [anon_sym_LT_AMP] = ACTIONS(1244), - [anon_sym_GT_AMP] = ACTIONS(1244), - [anon_sym_GT_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT_DASH] = ACTIONS(1244), - [anon_sym_LT_LT_LT] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1244), - [aux_sym_concatenation_token1] = ACTIONS(1244), - [anon_sym_DOLLAR] = ACTIONS(1242), - [sym__special_character] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_raw_string] = ACTIONS(1244), - [sym_ansi_c_string] = ACTIONS(1244), - [aux_sym_number_token1] = ACTIONS(1242), - [aux_sym_number_token2] = ACTIONS(1242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1242), - [anon_sym_BQUOTE] = ACTIONS(1242), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1244), - [anon_sym_LT_LPAREN] = ACTIONS(1244), - [anon_sym_GT_LPAREN] = ACTIONS(1244), + [sym_word] = ACTIONS(1255), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1255), + [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1255), + [anon_sym_AMP_GT_GT] = ACTIONS(1257), + [anon_sym_LT_AMP] = ACTIONS(1257), + [anon_sym_GT_AMP] = ACTIONS(1257), + [anon_sym_GT_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT_DASH] = ACTIONS(1257), + [anon_sym_LT_LT_LT] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1257), + [aux_sym_concatenation_token1] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1255), + [sym__special_character] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_raw_string] = ACTIONS(1257), + [sym_ansi_c_string] = ACTIONS(1257), + [aux_sym_number_token1] = ACTIONS(1255), + [aux_sym_number_token2] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1257), + [anon_sym_LT_LPAREN] = ACTIONS(1257), + [anon_sym_GT_LPAREN] = ACTIONS(1257), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1244), - [sym_file_descriptor] = ACTIONS(1244), - [sym__concat] = ACTIONS(1244), - [sym__bare_dollar] = ACTIONS(1244), - [sym__brace_start] = ACTIONS(1244), + [sym_file_descriptor] = ACTIONS(1257), + [sym__concat] = ACTIONS(1257), + [sym_test_operator] = ACTIONS(1257), + [sym__bare_dollar] = ACTIONS(1257), + [sym__brace_start] = ACTIONS(1257), }, [399] = { - [sym_word] = ACTIONS(1270), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1270), - [anon_sym_DASH_EQ] = ACTIONS(1270), - [anon_sym_STAR_EQ] = ACTIONS(1270), - [anon_sym_SLASH_EQ] = ACTIONS(1270), - [anon_sym_PERCENT_EQ] = ACTIONS(1270), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1270), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_RBRACK] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1270), - [anon_sym_AMP_GT] = ACTIONS(1270), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1270), - [sym__special_character] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1270), - [aux_sym_number_token2] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), - [anon_sym_BQUOTE] = ACTIONS(1270), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1253), + [anon_sym_LT_AMP] = ACTIONS(1253), + [anon_sym_GT_AMP] = ACTIONS(1253), + [anon_sym_GT_PIPE] = ACTIONS(1253), + [anon_sym_LT_LT_DASH] = ACTIONS(1253), + [anon_sym_LT_LT_LT] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1253), + [aux_sym_concatenation_token1] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_raw_string] = ACTIONS(1253), + [sym_ansi_c_string] = ACTIONS(1253), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1253), + [anon_sym_LT_LPAREN] = ACTIONS(1253), + [anon_sym_GT_LPAREN] = ACTIONS(1253), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1272), - [sym_file_descriptor] = ACTIONS(1272), - [sym__concat] = ACTIONS(1272), - [sym__bare_dollar] = ACTIONS(1272), - [sym__brace_start] = ACTIONS(1272), + [sym_file_descriptor] = ACTIONS(1253), + [sym__concat] = ACTIONS(1253), + [sym_test_operator] = ACTIONS(1253), + [sym__bare_dollar] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1253), }, [400] = { - [sym_word] = ACTIONS(1204), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1204), - [anon_sym_PLUS_EQ] = ACTIONS(1204), - [anon_sym_DASH_EQ] = ACTIONS(1204), - [anon_sym_STAR_EQ] = ACTIONS(1204), - [anon_sym_SLASH_EQ] = ACTIONS(1204), - [anon_sym_PERCENT_EQ] = ACTIONS(1204), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1204), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_EQ_EQ] = ACTIONS(1204), - [anon_sym_BANG_EQ] = ACTIONS(1204), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1204), - [anon_sym_GT_GT] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_SLASH] = ACTIONS(1204), - [anon_sym_PERCENT] = ACTIONS(1204), - [anon_sym_STAR_STAR] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1204), - [anon_sym_GT] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_PIPE_AMP] = ACTIONS(1206), - [anon_sym_RBRACK] = ACTIONS(1206), - [anon_sym_EQ_TILDE] = ACTIONS(1204), - [anon_sym_AMP_GT] = ACTIONS(1204), - [anon_sym_AMP_GT_GT] = ACTIONS(1206), - [anon_sym_LT_AMP] = ACTIONS(1206), - [anon_sym_GT_AMP] = ACTIONS(1206), - [anon_sym_GT_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT_DASH] = ACTIONS(1206), - [anon_sym_LT_LT_LT] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_CARET] = ACTIONS(1204), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1206), - [aux_sym_concatenation_token1] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(1204), - [sym__special_character] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_raw_string] = ACTIONS(1206), - [sym_ansi_c_string] = ACTIONS(1206), - [aux_sym_number_token1] = ACTIONS(1204), - [aux_sym_number_token2] = ACTIONS(1204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1204), - [anon_sym_BQUOTE] = ACTIONS(1204), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1206), - [anon_sym_LT_LPAREN] = ACTIONS(1206), - [anon_sym_GT_LPAREN] = ACTIONS(1206), + [sym_word] = ACTIONS(1243), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1245), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_EQ] = ACTIONS(1243), + [anon_sym_DASH_EQ] = ACTIONS(1243), + [anon_sym_STAR_EQ] = ACTIONS(1243), + [anon_sym_SLASH_EQ] = ACTIONS(1243), + [anon_sym_PERCENT_EQ] = ACTIONS(1243), + [anon_sym_LT_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_AMP_EQ] = ACTIONS(1245), + [anon_sym_CARET_EQ] = ACTIONS(1243), + [anon_sym_PIPE_EQ] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1243), + [anon_sym_BANG_EQ] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1243), + [anon_sym_STAR_STAR] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1245), + [anon_sym_LT_AMP] = ACTIONS(1245), + [anon_sym_GT_AMP] = ACTIONS(1245), + [anon_sym_GT_PIPE] = ACTIONS(1245), + [anon_sym_LT_LT_DASH] = ACTIONS(1245), + [anon_sym_LT_LT_LT] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1245), + [aux_sym_concatenation_token1] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1243), + [sym__special_character] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_raw_string] = ACTIONS(1245), + [sym_ansi_c_string] = ACTIONS(1245), + [aux_sym_number_token1] = ACTIONS(1243), + [aux_sym_number_token2] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1245), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1245), + [anon_sym_LT_LPAREN] = ACTIONS(1245), + [anon_sym_GT_LPAREN] = ACTIONS(1245), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1206), - [sym_file_descriptor] = ACTIONS(1206), - [sym__concat] = ACTIONS(1206), - [sym__bare_dollar] = ACTIONS(1206), - [sym__brace_start] = ACTIONS(1206), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(1245), + [sym_test_operator] = ACTIONS(1245), + [sym__bare_dollar] = ACTIONS(1245), + [sym__brace_start] = ACTIONS(1245), }, [401] = { - [sym_word] = ACTIONS(1208), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_EQ] = ACTIONS(1210), - [anon_sym_GT_GT_EQ] = ACTIONS(1210), - [anon_sym_AMP_EQ] = ACTIONS(1210), - [anon_sym_CARET_EQ] = ACTIONS(1208), - [anon_sym_PIPE_EQ] = ACTIONS(1210), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT_EQ] = ACTIONS(1210), - [anon_sym_GT_EQ] = ACTIONS(1210), - [anon_sym_AMP_AMP] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1210), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_STAR_STAR] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_PIPE_AMP] = ACTIONS(1210), - [anon_sym_RBRACK] = ACTIONS(1210), - [anon_sym_EQ_TILDE] = ACTIONS(1208), - [anon_sym_AMP_GT] = ACTIONS(1208), - [anon_sym_AMP_GT_GT] = ACTIONS(1210), - [anon_sym_LT_AMP] = ACTIONS(1210), - [anon_sym_GT_AMP] = ACTIONS(1210), - [anon_sym_GT_PIPE] = ACTIONS(1210), - [anon_sym_LT_LT_DASH] = ACTIONS(1210), - [anon_sym_LT_LT_LT] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1210), - [aux_sym_concatenation_token1] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(1208), - [sym__special_character] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_raw_string] = ACTIONS(1210), - [sym_ansi_c_string] = ACTIONS(1210), - [aux_sym_number_token1] = ACTIONS(1208), - [aux_sym_number_token2] = ACTIONS(1208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1210), - [anon_sym_LT_LPAREN] = ACTIONS(1210), - [anon_sym_GT_LPAREN] = ACTIONS(1210), + [sym_word] = ACTIONS(1231), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1233), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP_EQ] = ACTIONS(1233), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1231), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1231), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1233), + [anon_sym_LT_AMP] = ACTIONS(1233), + [anon_sym_GT_AMP] = ACTIONS(1233), + [anon_sym_GT_PIPE] = ACTIONS(1233), + [anon_sym_LT_LT_DASH] = ACTIONS(1233), + [anon_sym_LT_LT_LT] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1233), + [aux_sym_concatenation_token1] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_raw_string] = ACTIONS(1233), + [sym_ansi_c_string] = ACTIONS(1233), + [aux_sym_number_token1] = ACTIONS(1231), + [aux_sym_number_token2] = ACTIONS(1231), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1233), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1231), + [anon_sym_BQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1233), + [anon_sym_LT_LPAREN] = ACTIONS(1233), + [anon_sym_GT_LPAREN] = ACTIONS(1233), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1210), - [sym_file_descriptor] = ACTIONS(1210), - [sym__concat] = ACTIONS(1210), - [sym__bare_dollar] = ACTIONS(1210), - [sym__brace_start] = ACTIONS(1210), + [sym_file_descriptor] = ACTIONS(1233), + [sym__concat] = ACTIONS(1233), + [sym_test_operator] = ACTIONS(1233), + [sym__bare_dollar] = ACTIONS(1233), + [sym__brace_start] = ACTIONS(1233), }, [402] = { - [sym_word] = ACTIONS(1196), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_GT_EQ] = ACTIONS(1198), - [anon_sym_AMP_EQ] = ACTIONS(1198), - [anon_sym_CARET_EQ] = ACTIONS(1196), - [anon_sym_PIPE_EQ] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1198), - [anon_sym_LT_LT] = ACTIONS(1196), - [anon_sym_GT_GT] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1196), - [anon_sym_PERCENT] = ACTIONS(1196), - [anon_sym_STAR_STAR] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_PIPE_AMP] = ACTIONS(1198), - [anon_sym_RBRACK] = ACTIONS(1198), - [anon_sym_EQ_TILDE] = ACTIONS(1196), - [anon_sym_AMP_GT] = ACTIONS(1196), - [anon_sym_AMP_GT_GT] = ACTIONS(1198), - [anon_sym_LT_AMP] = ACTIONS(1198), - [anon_sym_GT_AMP] = ACTIONS(1198), - [anon_sym_GT_PIPE] = ACTIONS(1198), - [anon_sym_LT_LT_DASH] = ACTIONS(1198), - [anon_sym_LT_LT_LT] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1198), - [aux_sym_concatenation_token1] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1196), - [sym__special_character] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_raw_string] = ACTIONS(1198), - [sym_ansi_c_string] = ACTIONS(1198), - [aux_sym_number_token1] = ACTIONS(1196), - [aux_sym_number_token2] = ACTIONS(1196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), - [anon_sym_BQUOTE] = ACTIONS(1196), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1198), - [anon_sym_LT_LPAREN] = ACTIONS(1198), - [anon_sym_GT_LPAREN] = ACTIONS(1198), + [sym_word] = ACTIONS(1267), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1267), + [anon_sym_DASH_EQ] = ACTIONS(1267), + [anon_sym_STAR_EQ] = ACTIONS(1267), + [anon_sym_SLASH_EQ] = ACTIONS(1267), + [anon_sym_PERCENT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1267), + [anon_sym_AMP_GT] = ACTIONS(1267), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_GT_PIPE] = ACTIONS(1269), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1269), + [aux_sym_concatenation_token1] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(1267), + [sym__special_character] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_raw_string] = ACTIONS(1269), + [sym_ansi_c_string] = ACTIONS(1269), + [aux_sym_number_token1] = ACTIONS(1267), + [aux_sym_number_token2] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1198), - [sym_file_descriptor] = ACTIONS(1198), - [sym__concat] = ACTIONS(1198), - [sym__bare_dollar] = ACTIONS(1198), - [sym__brace_start] = ACTIONS(1198), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_test_operator] = ACTIONS(1269), + [sym__bare_dollar] = ACTIONS(1269), + [sym__brace_start] = ACTIONS(1269), }, [403] = { - [sym_word] = ACTIONS(1170), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1175), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1170), - [anon_sym_DASH_DASH] = ACTIONS(1170), - [anon_sym_PLUS_EQ] = ACTIONS(1170), - [anon_sym_DASH_EQ] = ACTIONS(1170), - [anon_sym_STAR_EQ] = ACTIONS(1170), - [anon_sym_SLASH_EQ] = ACTIONS(1170), - [anon_sym_PERCENT_EQ] = ACTIONS(1170), - [anon_sym_LT_LT_EQ] = ACTIONS(1175), - [anon_sym_GT_GT_EQ] = ACTIONS(1175), - [anon_sym_AMP_EQ] = ACTIONS(1175), - [anon_sym_CARET_EQ] = ACTIONS(1170), - [anon_sym_PIPE_EQ] = ACTIONS(1175), - [anon_sym_EQ_EQ] = ACTIONS(1170), - [anon_sym_BANG_EQ] = ACTIONS(1170), - [anon_sym_LT_EQ] = ACTIONS(1175), - [anon_sym_GT_EQ] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [anon_sym_LT_LT] = ACTIONS(1170), - [anon_sym_GT_GT] = ACTIONS(1170), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1170), - [anon_sym_STAR_STAR] = ACTIONS(1170), - [anon_sym_LT] = ACTIONS(1170), - [anon_sym_GT] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1170), - [anon_sym_PIPE_AMP] = ACTIONS(1175), - [anon_sym_RBRACK] = ACTIONS(1175), - [anon_sym_EQ_TILDE] = ACTIONS(1170), - [anon_sym_AMP_GT] = ACTIONS(1170), - [anon_sym_AMP_GT_GT] = ACTIONS(1175), - [anon_sym_LT_AMP] = ACTIONS(1175), - [anon_sym_GT_AMP] = ACTIONS(1175), - [anon_sym_GT_PIPE] = ACTIONS(1175), - [anon_sym_LT_LT_DASH] = ACTIONS(1175), - [anon_sym_LT_LT_LT] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_CARET] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1170), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1175), - [aux_sym_concatenation_token1] = ACTIONS(1175), - [anon_sym_DOLLAR] = ACTIONS(1170), - [sym__special_character] = ACTIONS(1170), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_raw_string] = ACTIONS(1175), - [sym_ansi_c_string] = ACTIONS(1175), - [aux_sym_number_token1] = ACTIONS(1170), - [aux_sym_number_token2] = ACTIONS(1170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1170), - [anon_sym_BQUOTE] = ACTIONS(1170), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1175), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), + [sym_word] = ACTIONS(1227), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1229), + [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_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_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1229), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [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(1229), + [anon_sym_GT_AMP] = ACTIONS(1229), + [anon_sym_GT_PIPE] = ACTIONS(1229), + [anon_sym_LT_LT_DASH] = ACTIONS(1229), + [anon_sym_LT_LT_LT] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1229), + [aux_sym_concatenation_token1] = ACTIONS(1229), + [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(63), - [sym_test_operator] = ACTIONS(1175), - [sym_file_descriptor] = ACTIONS(1175), - [sym__concat] = ACTIONS(1175), - [sym__bare_dollar] = ACTIONS(1175), - [sym__brace_start] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(1229), + [sym__concat] = ACTIONS(1229), + [sym_test_operator] = ACTIONS(1229), + [sym__bare_dollar] = ACTIONS(1229), + [sym__brace_start] = ACTIONS(1229), }, [404] = { - [sym_word] = ACTIONS(1216), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1216), - [anon_sym_PLUS_PLUS] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1216), - [anon_sym_PLUS_EQ] = ACTIONS(1216), - [anon_sym_DASH_EQ] = ACTIONS(1216), - [anon_sym_STAR_EQ] = ACTIONS(1216), - [anon_sym_SLASH_EQ] = ACTIONS(1216), - [anon_sym_PERCENT_EQ] = ACTIONS(1216), - [anon_sym_LT_LT_EQ] = ACTIONS(1218), - [anon_sym_GT_GT_EQ] = ACTIONS(1218), - [anon_sym_AMP_EQ] = ACTIONS(1218), - [anon_sym_CARET_EQ] = ACTIONS(1216), - [anon_sym_PIPE_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ] = ACTIONS(1216), - [anon_sym_BANG_EQ] = ACTIONS(1216), - [anon_sym_LT_EQ] = ACTIONS(1218), - [anon_sym_GT_EQ] = ACTIONS(1218), - [anon_sym_AMP_AMP] = ACTIONS(1218), - [anon_sym_PIPE_PIPE] = ACTIONS(1218), - [anon_sym_LT_LT] = ACTIONS(1216), - [anon_sym_GT_GT] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_SLASH] = ACTIONS(1216), - [anon_sym_PERCENT] = ACTIONS(1216), - [anon_sym_STAR_STAR] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_GT] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_PIPE_AMP] = ACTIONS(1218), - [anon_sym_RBRACK] = ACTIONS(1218), - [anon_sym_EQ_TILDE] = ACTIONS(1216), - [anon_sym_AMP_GT] = ACTIONS(1216), - [anon_sym_AMP_GT_GT] = ACTIONS(1218), - [anon_sym_LT_AMP] = ACTIONS(1218), - [anon_sym_GT_AMP] = ACTIONS(1218), - [anon_sym_GT_PIPE] = ACTIONS(1218), - [anon_sym_LT_LT_DASH] = ACTIONS(1218), - [anon_sym_LT_LT_LT] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_CARET] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1216), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1218), - [aux_sym_concatenation_token1] = ACTIONS(1218), - [anon_sym_DOLLAR] = ACTIONS(1216), - [sym__special_character] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_raw_string] = ACTIONS(1218), - [sym_ansi_c_string] = ACTIONS(1218), - [aux_sym_number_token1] = ACTIONS(1216), - [aux_sym_number_token2] = ACTIONS(1216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1218), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1216), - [anon_sym_BQUOTE] = ACTIONS(1216), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1218), - [anon_sym_LT_LPAREN] = ACTIONS(1218), - [anon_sym_GT_LPAREN] = ACTIONS(1218), + [sym_word] = ACTIONS(1211), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1211), + [anon_sym_DASH_EQ] = ACTIONS(1211), + [anon_sym_STAR_EQ] = ACTIONS(1211), + [anon_sym_SLASH_EQ] = ACTIONS(1211), + [anon_sym_PERCENT_EQ] = ACTIONS(1211), + [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(1211), + [anon_sym_PIPE_EQ] = ACTIONS(1213), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1213), + [anon_sym_PIPE_PIPE] = ACTIONS(1213), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1211), + [anon_sym_STAR_STAR] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_PIPE_AMP] = ACTIONS(1213), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_GT] = ACTIONS(1211), + [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_LT_DASH] = ACTIONS(1213), + [anon_sym_LT_LT_LT] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1213), + [aux_sym_concatenation_token1] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1211), + [sym__special_character] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_raw_string] = ACTIONS(1213), + [sym_ansi_c_string] = ACTIONS(1213), + [aux_sym_number_token1] = ACTIONS(1211), + [aux_sym_number_token2] = ACTIONS(1211), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1213), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1213), + [anon_sym_LT_LPAREN] = ACTIONS(1213), + [anon_sym_GT_LPAREN] = ACTIONS(1213), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1218), - [sym_file_descriptor] = ACTIONS(1218), - [sym__concat] = ACTIONS(1218), - [sym__bare_dollar] = ACTIONS(1218), - [sym__brace_start] = ACTIONS(1218), + [sym_file_descriptor] = ACTIONS(1213), + [sym__concat] = ACTIONS(1213), + [sym_test_operator] = ACTIONS(1213), + [sym__bare_dollar] = ACTIONS(1213), + [sym__brace_start] = ACTIONS(1213), }, [405] = { - [sym_word] = ACTIONS(1200), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1202), - [anon_sym_EQ] = ACTIONS(1200), - [anon_sym_PLUS_PLUS] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1200), - [anon_sym_PLUS_EQ] = ACTIONS(1200), - [anon_sym_DASH_EQ] = ACTIONS(1200), - [anon_sym_STAR_EQ] = ACTIONS(1200), - [anon_sym_SLASH_EQ] = ACTIONS(1200), - [anon_sym_PERCENT_EQ] = ACTIONS(1200), - [anon_sym_LT_LT_EQ] = ACTIONS(1202), - [anon_sym_GT_GT_EQ] = ACTIONS(1202), - [anon_sym_AMP_EQ] = ACTIONS(1202), - [anon_sym_CARET_EQ] = ACTIONS(1200), - [anon_sym_PIPE_EQ] = ACTIONS(1202), - [anon_sym_EQ_EQ] = ACTIONS(1200), - [anon_sym_BANG_EQ] = ACTIONS(1200), - [anon_sym_LT_EQ] = ACTIONS(1202), - [anon_sym_GT_EQ] = ACTIONS(1202), - [anon_sym_AMP_AMP] = ACTIONS(1202), - [anon_sym_PIPE_PIPE] = ACTIONS(1202), - [anon_sym_LT_LT] = ACTIONS(1200), - [anon_sym_GT_GT] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1200), - [anon_sym_SLASH] = ACTIONS(1200), - [anon_sym_PERCENT] = ACTIONS(1200), - [anon_sym_STAR_STAR] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1200), - [anon_sym_GT] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_PIPE_AMP] = ACTIONS(1202), - [anon_sym_RBRACK] = ACTIONS(1202), - [anon_sym_EQ_TILDE] = ACTIONS(1200), - [anon_sym_AMP_GT] = ACTIONS(1200), - [anon_sym_AMP_GT_GT] = ACTIONS(1202), - [anon_sym_LT_AMP] = ACTIONS(1202), - [anon_sym_GT_AMP] = ACTIONS(1202), - [anon_sym_GT_PIPE] = ACTIONS(1202), - [anon_sym_LT_LT_DASH] = ACTIONS(1202), - [anon_sym_LT_LT_LT] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_CARET] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1200), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1202), - [aux_sym_concatenation_token1] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym__special_character] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_raw_string] = ACTIONS(1202), - [sym_ansi_c_string] = ACTIONS(1202), - [aux_sym_number_token1] = ACTIONS(1200), - [aux_sym_number_token2] = ACTIONS(1200), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1200), - [anon_sym_BQUOTE] = ACTIONS(1200), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1202), - [anon_sym_LT_LPAREN] = ACTIONS(1202), - [anon_sym_GT_LPAREN] = ACTIONS(1202), + [sym_word] = ACTIONS(1247), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1247), + [anon_sym_DASH_EQ] = ACTIONS(1247), + [anon_sym_STAR_EQ] = ACTIONS(1247), + [anon_sym_SLASH_EQ] = ACTIONS(1247), + [anon_sym_PERCENT_EQ] = ACTIONS(1247), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1247), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1247), + [anon_sym_STAR_STAR] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1247), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1249), + [anon_sym_LT_AMP] = ACTIONS(1249), + [anon_sym_GT_AMP] = ACTIONS(1249), + [anon_sym_GT_PIPE] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1249), + [anon_sym_LT_LT_LT] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1249), + [aux_sym_concatenation_token1] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1247), + [sym__special_character] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_raw_string] = ACTIONS(1249), + [sym_ansi_c_string] = ACTIONS(1249), + [aux_sym_number_token1] = ACTIONS(1247), + [aux_sym_number_token2] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1247), + [anon_sym_BQUOTE] = ACTIONS(1247), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1249), + [anon_sym_LT_LPAREN] = ACTIONS(1249), + [anon_sym_GT_LPAREN] = ACTIONS(1249), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1202), - [sym_file_descriptor] = ACTIONS(1202), - [sym__concat] = ACTIONS(1202), - [sym__bare_dollar] = ACTIONS(1202), - [sym__brace_start] = ACTIONS(1202), + [sym_file_descriptor] = ACTIONS(1249), + [sym__concat] = ACTIONS(1249), + [sym_test_operator] = ACTIONS(1249), + [sym__bare_dollar] = ACTIONS(1249), + [sym__brace_start] = ACTIONS(1249), }, [406] = { - [aux_sym__literal_repeat1] = STATE(406), - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1281), - [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_LT_LT_EQ] = ACTIONS(1281), - [anon_sym_GT_GT_EQ] = ACTIONS(1281), - [anon_sym_AMP_EQ] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1281), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1281), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [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_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_RBRACK] = ACTIONS(1281), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1281), - [anon_sym_GT_AMP] = ACTIONS(1281), - [anon_sym_GT_PIPE] = ACTIONS(1281), - [anon_sym_LT_LT_DASH] = ACTIONS(1281), - [anon_sym_LT_LT_LT] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [sym_ansi_c_string] = ACTIONS(1281), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_word] = ACTIONS(1263), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_PLUS_EQ] = ACTIONS(1263), + [anon_sym_DASH_EQ] = ACTIONS(1263), + [anon_sym_STAR_EQ] = ACTIONS(1263), + [anon_sym_SLASH_EQ] = ACTIONS(1263), + [anon_sym_PERCENT_EQ] = ACTIONS(1263), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1263), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_STAR_STAR] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1265), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_EQ_TILDE] = ACTIONS(1263), + [anon_sym_AMP_GT] = ACTIONS(1263), + [anon_sym_AMP_GT_GT] = ACTIONS(1265), + [anon_sym_LT_AMP] = ACTIONS(1265), + [anon_sym_GT_AMP] = ACTIONS(1265), + [anon_sym_GT_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT_DASH] = ACTIONS(1265), + [anon_sym_LT_LT_LT] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1265), + [aux_sym_concatenation_token1] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1263), + [sym__special_character] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1265), + [sym_ansi_c_string] = ACTIONS(1265), + [aux_sym_number_token1] = ACTIONS(1263), + [aux_sym_number_token2] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1265), + [anon_sym_LT_LPAREN] = ACTIONS(1265), + [anon_sym_GT_LPAREN] = ACTIONS(1265), [sym_comment] = ACTIONS(63), - [sym_test_operator] = ACTIONS(1281), - [sym_file_descriptor] = ACTIONS(1281), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), + [sym_file_descriptor] = ACTIONS(1265), + [sym__concat] = ACTIONS(1265), + [sym_test_operator] = ACTIONS(1265), + [sym__bare_dollar] = ACTIONS(1265), + [sym__brace_start] = ACTIONS(1265), }, [407] = { - [aux_sym__literal_repeat1] = STATE(406), - [sym_word] = ACTIONS(189), - [anon_sym_LPAREN_LPAREN] = ACTIONS(222), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_PLUS_PLUS] = ACTIONS(187), - [anon_sym_DASH_DASH] = ACTIONS(187), - [anon_sym_PLUS_EQ] = ACTIONS(187), - [anon_sym_DASH_EQ] = ACTIONS(187), - [anon_sym_STAR_EQ] = ACTIONS(187), - [anon_sym_SLASH_EQ] = ACTIONS(187), - [anon_sym_PERCENT_EQ] = ACTIONS(187), + [sym_word] = ACTIONS(1215), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1217), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_EQ] = ACTIONS(1215), + [anon_sym_DASH_EQ] = ACTIONS(1215), + [anon_sym_STAR_EQ] = ACTIONS(1215), + [anon_sym_SLASH_EQ] = ACTIONS(1215), + [anon_sym_PERCENT_EQ] = ACTIONS(1215), + [anon_sym_LT_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_GT_EQ] = ACTIONS(1217), + [anon_sym_AMP_EQ] = ACTIONS(1217), + [anon_sym_CARET_EQ] = ACTIONS(1215), + [anon_sym_PIPE_EQ] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1215), + [anon_sym_STAR_STAR] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_PIPE_AMP] = ACTIONS(1217), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_GT] = ACTIONS(1215), + [anon_sym_AMP_GT_GT] = ACTIONS(1217), + [anon_sym_LT_AMP] = ACTIONS(1217), + [anon_sym_GT_AMP] = ACTIONS(1217), + [anon_sym_GT_PIPE] = ACTIONS(1217), + [anon_sym_LT_LT_DASH] = ACTIONS(1217), + [anon_sym_LT_LT_LT] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1217), + [aux_sym_concatenation_token1] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1215), + [sym__special_character] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_raw_string] = ACTIONS(1217), + [sym_ansi_c_string] = ACTIONS(1217), + [aux_sym_number_token1] = ACTIONS(1215), + [aux_sym_number_token2] = ACTIONS(1215), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1217), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [anon_sym_BQUOTE] = ACTIONS(1215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1217), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(1217), + [sym__concat] = ACTIONS(1217), + [sym_test_operator] = ACTIONS(1217), + [sym__bare_dollar] = ACTIONS(1217), + [sym__brace_start] = ACTIONS(1217), + }, + [408] = { + [sym_word] = ACTIONS(1219), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1221), + [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_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_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1221), + [anon_sym_PIPE_PIPE] = 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_LT] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_PIPE] = ACTIONS(1219), + [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(1221), + [anon_sym_GT_AMP] = ACTIONS(1221), + [anon_sym_GT_PIPE] = ACTIONS(1221), + [anon_sym_LT_LT_DASH] = ACTIONS(1221), + [anon_sym_LT_LT_LT] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN_LPAREN] = 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(63), + [sym_file_descriptor] = ACTIONS(1221), + [sym__concat] = ACTIONS(1221), + [sym_test_operator] = ACTIONS(1221), + [sym__bare_dollar] = ACTIONS(1221), + [sym__brace_start] = ACTIONS(1221), + }, + [409] = { + [sym_word] = ACTIONS(1259), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1259), + [anon_sym_DASH_EQ] = ACTIONS(1259), + [anon_sym_STAR_EQ] = ACTIONS(1259), + [anon_sym_SLASH_EQ] = ACTIONS(1259), + [anon_sym_PERCENT_EQ] = ACTIONS(1259), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_STAR_STAR] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_PIPE_AMP] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1259), + [anon_sym_AMP_GT] = ACTIONS(1259), + [anon_sym_AMP_GT_GT] = ACTIONS(1261), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1261), + [anon_sym_LT_LT_DASH] = ACTIONS(1261), + [anon_sym_LT_LT_LT] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1261), + [aux_sym_concatenation_token1] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1259), + [sym__special_character] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_raw_string] = ACTIONS(1261), + [sym_ansi_c_string] = ACTIONS(1261), + [aux_sym_number_token1] = ACTIONS(1259), + [aux_sym_number_token2] = ACTIONS(1259), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), + [anon_sym_BQUOTE] = ACTIONS(1259), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1261), + [anon_sym_LT_LPAREN] = ACTIONS(1261), + [anon_sym_GT_LPAREN] = ACTIONS(1261), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(1261), + [sym__concat] = ACTIONS(1261), + [sym_test_operator] = ACTIONS(1261), + [sym__bare_dollar] = ACTIONS(1261), + [sym__brace_start] = ACTIONS(1261), + }, + [410] = { + [sym_word] = ACTIONS(1205), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_PERCENT_EQ] = ACTIONS(1205), + [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(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1207), + [anon_sym_AMP_AMP] = ACTIONS(1207), + [anon_sym_PIPE_PIPE] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_STAR_STAR] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_PIPE_AMP] = ACTIONS(1207), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_GT] = ACTIONS(1205), + [anon_sym_AMP_GT_GT] = ACTIONS(1207), + [anon_sym_LT_AMP] = ACTIONS(1207), + [anon_sym_GT_AMP] = ACTIONS(1207), + [anon_sym_GT_PIPE] = ACTIONS(1207), + [anon_sym_LT_LT_DASH] = ACTIONS(1207), + [anon_sym_LT_LT_LT] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1207), + [aux_sym_concatenation_token1] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1205), + [sym__special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1207), + [sym_raw_string] = ACTIONS(1207), + [sym_ansi_c_string] = ACTIONS(1207), + [aux_sym_number_token1] = ACTIONS(1205), + [aux_sym_number_token2] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1207), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1205), + [anon_sym_BQUOTE] = ACTIONS(1205), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1207), + [anon_sym_LT_LPAREN] = ACTIONS(1207), + [anon_sym_GT_LPAREN] = ACTIONS(1207), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(1207), + [sym__concat] = ACTIONS(1207), + [sym_test_operator] = ACTIONS(1207), + [sym__bare_dollar] = ACTIONS(1207), + [sym__brace_start] = ACTIONS(1207), + }, + [411] = { + [sym_word] = ACTIONS(1235), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1237), + [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_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1235), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP_AMP] = ACTIONS(1237), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_PIPE_AMP] = ACTIONS(1237), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_EQ_TILDE] = ACTIONS(1235), + [anon_sym_AMP_GT] = ACTIONS(1235), + [anon_sym_AMP_GT_GT] = ACTIONS(1237), + [anon_sym_LT_AMP] = ACTIONS(1237), + [anon_sym_GT_AMP] = ACTIONS(1237), + [anon_sym_GT_PIPE] = ACTIONS(1237), + [anon_sym_LT_LT_DASH] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1235), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1237), + [aux_sym_concatenation_token1] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1235), + [sym__special_character] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_raw_string] = ACTIONS(1237), + [sym_ansi_c_string] = ACTIONS(1237), + [aux_sym_number_token1] = ACTIONS(1235), + [aux_sym_number_token2] = ACTIONS(1235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), + [anon_sym_BQUOTE] = ACTIONS(1235), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(1237), + [sym__concat] = ACTIONS(1237), + [sym_test_operator] = ACTIONS(1237), + [sym__bare_dollar] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1237), + }, + [412] = { + [aux_sym__literal_repeat1] = STATE(413), + [sym_word] = ACTIONS(187), + [anon_sym_LPAREN_LPAREN] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [anon_sym_PLUS_EQ] = ACTIONS(185), + [anon_sym_DASH_EQ] = ACTIONS(185), + [anon_sym_STAR_EQ] = ACTIONS(185), + [anon_sym_SLASH_EQ] = ACTIONS(185), + [anon_sym_PERCENT_EQ] = ACTIONS(185), [anon_sym_LT_LT_EQ] = ACTIONS(350), [anon_sym_GT_GT_EQ] = ACTIONS(350), [anon_sym_AMP_EQ] = ACTIONS(350), - [anon_sym_CARET_EQ] = ACTIONS(187), + [anon_sym_CARET_EQ] = ACTIONS(185), [anon_sym_PIPE_EQ] = ACTIONS(350), - [anon_sym_EQ_EQ] = ACTIONS(191), - [anon_sym_BANG_EQ] = ACTIONS(187), + [anon_sym_EQ_EQ] = ACTIONS(189), + [anon_sym_BANG_EQ] = ACTIONS(185), [anon_sym_LT_EQ] = ACTIONS(350), [anon_sym_GT_EQ] = ACTIONS(350), [anon_sym_AMP_AMP] = ACTIONS(352), [anon_sym_PIPE_PIPE] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_STAR] = ACTIONS(187), - [anon_sym_SLASH] = ACTIONS(187), - [anon_sym_PERCENT] = ACTIONS(187), - [anon_sym_STAR_STAR] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_PIPE] = ACTIONS(191), - [anon_sym_PIPE_AMP] = ACTIONS(222), + [anon_sym_LT_LT] = ACTIONS(189), + [anon_sym_GT_GT] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_STAR] = ACTIONS(185), + [anon_sym_SLASH] = ACTIONS(185), + [anon_sym_PERCENT] = ACTIONS(185), + [anon_sym_STAR_STAR] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(189), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(218), [anon_sym_RBRACK] = ACTIONS(350), - [anon_sym_EQ_TILDE] = ACTIONS(191), - [anon_sym_AMP_GT] = ACTIONS(189), - [anon_sym_AMP_GT_GT] = ACTIONS(222), - [anon_sym_LT_AMP] = ACTIONS(222), - [anon_sym_GT_AMP] = ACTIONS(222), - [anon_sym_GT_PIPE] = ACTIONS(222), - [anon_sym_LT_LT_DASH] = ACTIONS(222), - [anon_sym_LT_LT_LT] = ACTIONS(222), - [anon_sym_AMP] = ACTIONS(187), - [anon_sym_CARET] = ACTIONS(187), - [anon_sym_QMARK] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(222), - [anon_sym_DOLLAR] = ACTIONS(189), - [sym__special_character] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(222), - [sym_raw_string] = ACTIONS(222), - [sym_ansi_c_string] = ACTIONS(222), - [aux_sym_number_token1] = ACTIONS(189), - [aux_sym_number_token2] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(222), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(222), - [anon_sym_LT_LPAREN] = ACTIONS(222), - [anon_sym_GT_LPAREN] = ACTIONS(222), + [anon_sym_EQ_TILDE] = ACTIONS(189), + [anon_sym_AMP_GT] = ACTIONS(187), + [anon_sym_AMP_GT_GT] = ACTIONS(218), + [anon_sym_LT_AMP] = ACTIONS(218), + [anon_sym_GT_AMP] = ACTIONS(218), + [anon_sym_GT_PIPE] = ACTIONS(218), + [anon_sym_LT_LT_DASH] = ACTIONS(218), + [anon_sym_LT_LT_LT] = ACTIONS(218), + [anon_sym_AMP] = ACTIONS(185), + [anon_sym_CARET] = ACTIONS(185), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(218), + [anon_sym_DOLLAR] = ACTIONS(187), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(218), + [sym_raw_string] = ACTIONS(218), + [sym_ansi_c_string] = ACTIONS(218), + [aux_sym_number_token1] = ACTIONS(187), + [aux_sym_number_token2] = ACTIONS(187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(218), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(187), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(218), + [anon_sym_GT_LPAREN] = ACTIONS(218), [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(218), [sym_test_operator] = ACTIONS(352), - [sym_file_descriptor] = ACTIONS(222), - [sym__bare_dollar] = ACTIONS(222), - [sym__brace_start] = ACTIONS(222), + [sym__bare_dollar] = ACTIONS(218), + [sym__brace_start] = ACTIONS(218), + }, + [413] = { + [aux_sym__literal_repeat1] = STATE(413), + [sym_word] = ACTIONS(1273), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_EQ] = ACTIONS(1273), + [anon_sym_DASH_EQ] = ACTIONS(1273), + [anon_sym_STAR_EQ] = ACTIONS(1273), + [anon_sym_SLASH_EQ] = ACTIONS(1273), + [anon_sym_PERCENT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_GT_EQ] = ACTIONS(1275), + [anon_sym_AMP_EQ] = ACTIONS(1275), + [anon_sym_CARET_EQ] = ACTIONS(1273), + [anon_sym_PIPE_EQ] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1273), + [anon_sym_BANG_EQ] = ACTIONS(1273), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1275), + [anon_sym_LT_LT] = ACTIONS(1273), + [anon_sym_GT_GT] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_SLASH] = ACTIONS(1273), + [anon_sym_PERCENT] = ACTIONS(1273), + [anon_sym_STAR_STAR] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_GT] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(1275), + [anon_sym_RBRACK] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1273), + [anon_sym_AMP_GT] = ACTIONS(1273), + [anon_sym_AMP_GT_GT] = ACTIONS(1275), + [anon_sym_LT_AMP] = ACTIONS(1275), + [anon_sym_GT_AMP] = ACTIONS(1275), + [anon_sym_GT_PIPE] = ACTIONS(1275), + [anon_sym_LT_LT_DASH] = ACTIONS(1275), + [anon_sym_LT_LT_LT] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1273), + [sym__special_character] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym_raw_string] = ACTIONS(1275), + [sym_ansi_c_string] = ACTIONS(1275), + [aux_sym_number_token1] = ACTIONS(1273), + [aux_sym_number_token2] = ACTIONS(1273), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1273), + [anon_sym_BQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1275), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(63), + [sym_file_descriptor] = ACTIONS(1275), + [sym_test_operator] = ACTIONS(1275), + [sym__bare_dollar] = ACTIONS(1275), + [sym__brace_start] = ACTIONS(1275), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1182), 30, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_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(1158), 3, sym_test_operator, - ACTIONS(1180), 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_CARET_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_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, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [71] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1290), 3, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - sym_test_operator, - ACTIONS(1159), 7, + ACTIONS(1147), 7, anon_sym_AMP_GT, anon_sym_DOLLAR, sym__special_character, @@ -54323,7 +54732,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1163), 7, + ACTIONS(1151), 7, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -54331,7 +54740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_EQ_TILDE, - ACTIONS(1288), 7, + ACTIONS(1283), 7, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -54339,7 +54748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RBRACK, - ACTIONS(1161), 19, + ACTIONS(1149), 19, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -54359,12 +54768,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_QMARK, - ACTIONS(1168), 20, + ACTIONS(1156), 20, + sym_file_descriptor, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [79] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1169), 30, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -54380,6 +54823,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1167), 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_CARET_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, [150] = 38, ACTIONS(33), 1, anon_sym_LBRACK, @@ -54405,74 +54882,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(123), 1, + ACTIONS(121), 1, sym_variable_name, + ACTIONS(123), 1, + sym_test_operator, ACTIONS(125), 1, sym__brace_start, - ACTIONS(139), 1, - sym_test_operator, - ACTIONS(230), 1, + ACTIONS(194), 1, anon_sym_BANG, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_word, - ACTIONS(1313), 1, + ACTIONS(1307), 1, anon_sym_LPAREN, - ACTIONS(1315), 1, + ACTIONS(1309), 1, sym_file_descriptor, - STATE(357), 1, + STATE(364), 1, aux_sym__literal_repeat1, - STATE(377), 1, + STATE(383), 1, sym_concatenation, - STATE(450), 1, + STATE(456), 1, sym_command_name, - STATE(843), 1, + STATE(808), 1, aux_sym_command_repeat1, - STATE(1334), 1, + STATE(1391), 1, sym_variable_assignment, - STATE(1689), 1, + STATE(1636), 1, sym__expression, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(2849), 1, + STATE(2768), 1, sym_command, - STATE(3943), 1, + STATE(3939), 1, sym_subscript, ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(117), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(133), 2, + ACTIONS(93), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(137), 2, + ACTIONS(103), 2, sym_raw_string, sym_ansi_c_string, - STATE(2861), 2, + ACTIONS(117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2770), 2, sym_subshell, sym_test_command, - ACTIONS(135), 3, + ACTIONS(95), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1418), 5, + STATE(1520), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(326), 9, + STATE(328), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -54483,98 +54960,98 @@ static const uint16_t ts_small_parse_table[] = { sym_command_substitution, sym_process_substitution, [290] = 38, - ACTIONS(63), 1, - sym_comment, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(262), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(266), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(276), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(97), 1, anon_sym_DOLLAR, - ACTIONS(278), 1, + ACTIONS(99), 1, sym__special_character, - ACTIONS(280), 1, + ACTIONS(101), 1, anon_sym_DQUOTE, - ACTIONS(284), 1, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(290), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(292), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(294), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(298), 1, - sym_test_operator, - ACTIONS(302), 1, + ACTIONS(121), 1, sym_variable_name, - ACTIONS(304), 1, + ACTIONS(125), 1, sym__brace_start, - ACTIONS(357), 1, + ACTIONS(139), 1, + sym_test_operator, + ACTIONS(230), 1, anon_sym_BANG, - ACTIONS(1315), 1, + ACTIONS(1307), 1, + anon_sym_LPAREN, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(1317), 1, + ACTIONS(1311), 1, sym_word, - STATE(407), 1, + STATE(371), 1, aux_sym__literal_repeat1, - STATE(409), 1, + STATE(384), 1, sym_concatenation, - STATE(549), 1, + STATE(456), 1, sym_command_name, - STATE(885), 1, + STATE(808), 1, aux_sym_command_repeat1, - STATE(1794), 1, - sym__expression, - STATE(1861), 1, + STATE(1391), 1, sym_variable_assignment, - STATE(2256), 1, + STATE(1783), 1, + sym__expression, + STATE(2409), 1, sym_file_redirect, - STATE(3195), 1, + STATE(2768), 1, sym_command, - STATE(3947), 1, + STATE(3939), 1, sym_subscript, - ACTIONS(242), 2, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(272), 2, + ACTIONS(117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(282), 2, + ACTIONS(137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(296), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3170), 2, + STATE(2770), 2, sym_subshell, sym_test_command, - ACTIONS(274), 3, + ACTIONS(135), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1755), 5, + STATE(1520), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(386), 9, + STATE(327), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -54591,7 +55068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(123), 1, + ACTIONS(121), 1, sym_variable_name, ACTIONS(155), 1, anon_sym_DOLLAR, @@ -54617,29 +55094,29 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ACTIONS(314), 1, anon_sym_BANG, - ACTIONS(1315), 1, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(1319), 1, + ACTIONS(1313), 1, sym_word, - ACTIONS(1321), 1, + ACTIONS(1315), 1, anon_sym_LPAREN, - STATE(375), 1, + STATE(382), 1, aux_sym__literal_repeat1, - STATE(380), 1, + STATE(387), 1, sym_concatenation, - STATE(450), 1, + STATE(456), 1, sym_command_name, - STATE(843), 1, + STATE(808), 1, aux_sym_command_repeat1, - STATE(1334), 1, + STATE(1391), 1, sym_variable_assignment, - STATE(1776), 1, + STATE(1813), 1, sym__expression, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(2849), 1, + STATE(2768), 1, sym_command, - STATE(3943), 1, + STATE(3939), 1, sym_subscript, ACTIONS(145), 2, anon_sym_LPAREN_LPAREN, @@ -54653,30 +55130,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2861), 2, + STATE(2770), 2, sym_subshell, sym_test_command, ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1795), 5, + STATE(1763), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(333), 9, + STATE(341), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -54687,98 +55164,98 @@ static const uint16_t ts_small_parse_table[] = { sym_command_substitution, sym_process_substitution, [570] = 38, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(262), 1, + anon_sym_LBRACK, + ACTIONS(266), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(276), 1, anon_sym_DOLLAR, - ACTIONS(99), 1, + ACTIONS(278), 1, sym__special_character, - ACTIONS(101), 1, + ACTIONS(280), 1, anon_sym_DQUOTE, - ACTIONS(105), 1, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(107), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(109), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(111), 1, + ACTIONS(290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(113), 1, + ACTIONS(292), 1, anon_sym_BQUOTE, - ACTIONS(115), 1, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(119), 1, - sym_test_operator, - ACTIONS(123), 1, + ACTIONS(300), 1, sym_variable_name, - ACTIONS(125), 1, + ACTIONS(302), 1, + sym_test_operator, + ACTIONS(304), 1, sym__brace_start, - ACTIONS(196), 1, + ACTIONS(357), 1, anon_sym_BANG, - ACTIONS(1313), 1, - anon_sym_LPAREN, - ACTIONS(1315), 1, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(1323), 1, + ACTIONS(1317), 1, sym_word, - STATE(368), 1, + STATE(412), 1, aux_sym__literal_repeat1, - STATE(376), 1, + STATE(414), 1, sym_concatenation, - STATE(450), 1, + STATE(546), 1, sym_command_name, - STATE(843), 1, + STATE(897), 1, aux_sym_command_repeat1, - STATE(1334), 1, - sym_variable_assignment, - STATE(1762), 1, + STATE(1819), 1, sym__expression, - STATE(2256), 1, + STATE(1870), 1, + sym_variable_assignment, + STATE(2409), 1, sym_file_redirect, - STATE(2849), 1, + STATE(3199), 1, sym_command, - STATE(3943), 1, + STATE(3974), 1, sym_subscript, - ACTIONS(75), 2, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(93), 2, + ACTIONS(272), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(103), 2, + ACTIONS(282), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(117), 2, + ACTIONS(296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2861), 2, + STATE(3188), 2, sym_subshell, sym_test_command, - ACTIONS(95), 3, + ACTIONS(274), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1418), 5, + STATE(1773), 5, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, - STATE(323), 9, + STATE(390), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -54791,53 +55268,54 @@ static const uint16_t ts_small_parse_table[] = { [710] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1333), 1, + ACTIONS(1327), 1, anon_sym_DOLLAR, - ACTIONS(1336), 1, + ACTIONS(1329), 1, sym__special_character, - ACTIONS(1339), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1342), 1, + ACTIONS(1333), 1, aux_sym_number_token1, - ACTIONS(1345), 1, + ACTIONS(1335), 1, aux_sym_number_token2, - ACTIONS(1348), 1, + ACTIONS(1337), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1351), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1354), 1, + ACTIONS(1341), 1, anon_sym_BQUOTE, - ACTIONS(1357), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1363), 1, + ACTIONS(1347), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1366), 1, - sym_test_operator, - ACTIONS(1369), 1, - sym_file_descriptor, - ACTIONS(1371), 1, + ACTIONS(1349), 1, sym_variable_name, - ACTIONS(1374), 1, + ACTIONS(1351), 1, + sym_test_operator, + ACTIONS(1353), 1, sym__brace_start, - STATE(893), 1, + STATE(852), 1, aux_sym__literal_repeat1, - STATE(3961), 1, + STATE(3966), 1, sym_subscript, - ACTIONS(1328), 2, + ACTIONS(1321), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1360), 2, + ACTIONS(1325), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1345), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1325), 3, + ACTIONS(1319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(414), 3, + STATE(422), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(604), 9, + STATE(660), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -54847,7 +55325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1331), 22, + ACTIONS(1323), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54867,59 +55345,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [815] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1327), 1, anon_sym_DOLLAR, - ACTIONS(1385), 1, + ACTIONS(1329), 1, sym__special_character, - ACTIONS(1387), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(1389), 1, + ACTIONS(1333), 1, aux_sym_number_token1, - ACTIONS(1391), 1, + ACTIONS(1335), 1, aux_sym_number_token2, - ACTIONS(1393), 1, + ACTIONS(1337), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1395), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1341), 1, anon_sym_BQUOTE, - ACTIONS(1399), 1, + ACTIONS(1343), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1403), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1405), 1, - sym_test_operator, - ACTIONS(1407), 1, - sym_file_descriptor, - ACTIONS(1409), 1, + ACTIONS(1349), 1, sym_variable_name, - ACTIONS(1411), 1, + ACTIONS(1351), 1, + sym_test_operator, + ACTIONS(1353), 1, sym__brace_start, - STATE(893), 1, + ACTIONS(1359), 1, + aux_sym__simple_variable_name_token1, + STATE(852), 1, aux_sym__literal_repeat1, - STATE(3961), 1, + STATE(3966), 1, sym_subscript, - ACTIONS(1379), 2, + ACTIONS(1321), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1401), 2, + ACTIONS(1345), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1377), 3, + ACTIONS(1357), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(416), 3, + STATE(420), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(604), 9, + STATE(660), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -54929,7 +55407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1381), 22, + ACTIONS(1355), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -54949,59 +55427,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [920] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(1371), 1, anon_sym_DOLLAR, - ACTIONS(1385), 1, + ACTIONS(1374), 1, sym__special_character, - ACTIONS(1387), 1, + ACTIONS(1377), 1, anon_sym_DQUOTE, - ACTIONS(1389), 1, + ACTIONS(1380), 1, aux_sym_number_token1, - ACTIONS(1391), 1, + ACTIONS(1383), 1, aux_sym_number_token2, - ACTIONS(1393), 1, + ACTIONS(1386), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1395), 1, + ACTIONS(1389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1392), 1, anon_sym_BQUOTE, - ACTIONS(1399), 1, + ACTIONS(1395), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1405), 1, - sym_test_operator, - ACTIONS(1409), 1, + ACTIONS(1401), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1404), 1, sym_variable_name, - ACTIONS(1411), 1, + ACTIONS(1407), 1, + sym_test_operator, + ACTIONS(1410), 1, sym__brace_start, - ACTIONS(1415), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1417), 1, - sym_file_descriptor, - STATE(893), 1, + STATE(852), 1, aux_sym__literal_repeat1, - STATE(3961), 1, + STATE(3966), 1, sym_subscript, - ACTIONS(1379), 2, + ACTIONS(1364), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1401), 2, + ACTIONS(1369), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1377), 3, + ACTIONS(1361), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(414), 3, + STATE(422), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(604), 9, + STATE(660), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55011,7 +55489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1413), 22, + ACTIONS(1367), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55031,58 +55509,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [1025] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR, - ACTIONS(493), 1, + ACTIONS(1429), 1, sym__special_character, - ACTIONS(499), 1, + ACTIONS(1432), 1, + anon_sym_DQUOTE, + ACTIONS(1435), 1, aux_sym_number_token1, - ACTIONS(501), 1, + ACTIONS(1438), 1, aux_sym_number_token2, - ACTIONS(505), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(519), 1, - sym__brace_start, - ACTIONS(1427), 1, - anon_sym_DQUOTE, - ACTIONS(1429), 1, + ACTIONS(1441), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1431), 1, + ACTIONS(1444), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1447), 1, anon_sym_BQUOTE, - ACTIONS(1433), 1, + ACTIONS(1450), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1437), 1, + ACTIONS(1456), 1, sym_test_operator, - ACTIONS(1439), 1, - sym_file_descriptor, - ACTIONS(1441), 1, + ACTIONS(1459), 1, sym__bare_dollar, - STATE(418), 1, + ACTIONS(1462), 1, + sym__brace_start, + STATE(423), 1, aux_sym_command_repeat2, - STATE(678), 1, + STATE(697), 1, aux_sym__literal_repeat1, - STATE(904), 1, + STATE(876), 1, sym_concatenation, - ACTIONS(1421), 2, + ACTIONS(1416), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1425), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1435), 2, + ACTIONS(1424), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1453), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1419), 3, + ACTIONS(1413), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(589), 9, + STATE(587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55092,7 +55570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 22, + ACTIONS(1419), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55112,58 +55590,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [1129] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(1469), 1, anon_sym_DOLLAR, - ACTIONS(1457), 1, + ACTIONS(1471), 1, sym__special_character, - ACTIONS(1460), 1, + ACTIONS(1473), 1, anon_sym_DQUOTE, - ACTIONS(1463), 1, + ACTIONS(1475), 1, aux_sym_number_token1, - ACTIONS(1466), 1, + ACTIONS(1477), 1, aux_sym_number_token2, - ACTIONS(1469), 1, + ACTIONS(1479), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1472), 1, + ACTIONS(1481), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1475), 1, + ACTIONS(1483), 1, anon_sym_BQUOTE, - ACTIONS(1478), 1, + ACTIONS(1485), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1484), 1, - sym_test_operator, - ACTIONS(1487), 1, - sym_file_descriptor, ACTIONS(1489), 1, - sym__bare_dollar, - ACTIONS(1492), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1491), 1, + sym_variable_name, + ACTIONS(1493), 1, + sym_test_operator, + ACTIONS(1495), 1, sym__brace_start, - STATE(418), 1, - aux_sym_command_repeat2, - STATE(678), 1, + STATE(991), 1, aux_sym__literal_repeat1, - STATE(904), 1, - sym_concatenation, - ACTIONS(1446), 2, + STATE(3949), 1, + sym_subscript, + ACTIONS(1325), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1467), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1451), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1481), 2, + ACTIONS(1487), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1443), 3, + ACTIONS(1465), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(589), 9, + STATE(426), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(675), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55173,7 +55652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1449), 22, + ACTIONS(1323), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55181,7 +55660,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -55193,59 +55671,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [1233] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - sym_file_descriptor, - ACTIONS(1499), 1, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(1501), 1, + ACTIONS(493), 1, sym__special_character, - ACTIONS(1503), 1, - anon_sym_DQUOTE, - ACTIONS(1505), 1, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(1507), 1, + ACTIONS(501), 1, aux_sym_number_token2, + ACTIONS(505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(519), 1, + sym__brace_start, + ACTIONS(1507), 1, + anon_sym_DQUOTE, ACTIONS(1509), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(1511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1513), 1, anon_sym_BQUOTE, - ACTIONS(1515), 1, + ACTIONS(1513), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1519), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1521), 1, + ACTIONS(1517), 1, sym_test_operator, - ACTIONS(1523), 1, - sym_variable_name, - ACTIONS(1525), 1, - sym__brace_start, - STATE(1038), 1, + ACTIONS(1519), 1, + sym__bare_dollar, + STATE(430), 1, + aux_sym_command_repeat2, + STATE(697), 1, aux_sym__literal_repeat1, - STATE(3936), 1, - sym_subscript, - ACTIONS(1497), 2, + STATE(876), 1, + sym_concatenation, + ACTIONS(1499), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1517), 2, + ACTIONS(1503), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1505), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1515), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1495), 3, + ACTIONS(1497), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(420), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(715), 9, + STATE(587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55255,7 +55732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1381), 21, + ACTIONS(1501), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55263,6 +55740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -55274,59 +55752,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [1337] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 1, - sym_file_descriptor, - ACTIONS(1499), 1, + ACTIONS(1527), 1, anon_sym_DOLLAR, - ACTIONS(1501), 1, + ACTIONS(1530), 1, sym__special_character, - ACTIONS(1503), 1, + ACTIONS(1533), 1, anon_sym_DQUOTE, - ACTIONS(1505), 1, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(1507), 1, + ACTIONS(1539), 1, aux_sym_number_token2, - ACTIONS(1509), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1511), 1, + ACTIONS(1545), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1513), 1, + ACTIONS(1548), 1, anon_sym_BQUOTE, - ACTIONS(1515), 1, + ACTIONS(1551), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1521), 1, - sym_test_operator, - ACTIONS(1523), 1, + ACTIONS(1557), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1560), 1, sym_variable_name, - ACTIONS(1525), 1, + ACTIONS(1563), 1, + sym_test_operator, + ACTIONS(1566), 1, sym__brace_start, - ACTIONS(1527), 1, - aux_sym__simple_variable_name_token1, - STATE(1038), 1, + STATE(991), 1, aux_sym__literal_repeat1, - STATE(3936), 1, + STATE(3949), 1, sym_subscript, - ACTIONS(1497), 2, + ACTIONS(1369), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1524), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1517), 2, + ACTIONS(1554), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1495), 3, + ACTIONS(1521), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(424), 3, + STATE(426), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(715), 9, + STATE(675), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55336,7 +55814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1413), 21, + ACTIONS(1367), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55355,7 +55833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [1441] = 23, @@ -55373,40 +55850,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(519), 1, sym__brace_start, - ACTIONS(1427), 1, + ACTIONS(1507), 1, anon_sym_DQUOTE, - ACTIONS(1429), 1, + ACTIONS(1509), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1431), 1, + ACTIONS(1511), 1, anon_sym_BQUOTE, - ACTIONS(1433), 1, + ACTIONS(1513), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1437), 1, + ACTIONS(1517), 1, sym_test_operator, - ACTIONS(1441), 1, + ACTIONS(1519), 1, sym__bare_dollar, - ACTIONS(1531), 1, - sym_file_descriptor, - STATE(422), 1, + STATE(423), 1, aux_sym_command_repeat2, - STATE(678), 1, + STATE(697), 1, aux_sym__literal_repeat1, - STATE(904), 1, + STATE(876), 1, sym_concatenation, - ACTIONS(1421), 2, + ACTIONS(1499), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1425), 2, + ACTIONS(1503), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1435), 2, + ACTIONS(1515), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1419), 3, + ACTIONS(1571), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1497), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(589), 9, + STATE(587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55416,7 +55894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1529), 22, + ACTIONS(1569), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55436,10 +55914,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, [1545] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_DOLLAR, + ACTIONS(1471), 1, + sym__special_character, + ACTIONS(1473), 1, + anon_sym_DQUOTE, + ACTIONS(1475), 1, + aux_sym_number_token1, + ACTIONS(1477), 1, + aux_sym_number_token2, + ACTIONS(1479), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1481), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1483), 1, + anon_sym_BQUOTE, + ACTIONS(1485), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1491), 1, + sym_variable_name, + ACTIONS(1493), 1, + sym_test_operator, + ACTIONS(1495), 1, + sym__brace_start, + ACTIONS(1573), 1, + aux_sym__simple_variable_name_token1, + STATE(991), 1, + aux_sym__literal_repeat1, + STATE(3949), 1, + sym_subscript, + ACTIONS(1357), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1467), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1487), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1465), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(424), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(675), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1355), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1649] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(491), 1, @@ -55454,40 +56012,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(519), 1, sym__brace_start, - ACTIONS(1427), 1, + ACTIONS(1507), 1, anon_sym_DQUOTE, - ACTIONS(1429), 1, + ACTIONS(1509), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1431), 1, + ACTIONS(1511), 1, anon_sym_BQUOTE, - ACTIONS(1433), 1, + ACTIONS(1513), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1437), 1, + ACTIONS(1517), 1, sym_test_operator, - ACTIONS(1441), 1, + ACTIONS(1519), 1, sym__bare_dollar, - ACTIONS(1535), 1, - sym_file_descriptor, - STATE(418), 1, + STATE(427), 1, aux_sym_command_repeat2, - STATE(678), 1, + STATE(697), 1, aux_sym__literal_repeat1, - STATE(904), 1, + STATE(876), 1, sym_concatenation, - ACTIONS(1421), 2, + ACTIONS(1499), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1425), 2, + ACTIONS(1503), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1435), 2, + ACTIONS(1515), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1419), 3, + ACTIONS(1577), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1497), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(589), 9, + STATE(587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55497,7 +56056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1533), 22, + ACTIONS(1575), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55517,10 +56076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [1649] = 23, + [1753] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(491), 1, @@ -55535,40 +56093,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(519), 1, sym__brace_start, - ACTIONS(1427), 1, + ACTIONS(1507), 1, anon_sym_DQUOTE, - ACTIONS(1429), 1, + ACTIONS(1509), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1431), 1, + ACTIONS(1511), 1, anon_sym_BQUOTE, - ACTIONS(1433), 1, + ACTIONS(1513), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1437), 1, + ACTIONS(1517), 1, sym_test_operator, - ACTIONS(1441), 1, + ACTIONS(1519), 1, sym__bare_dollar, - ACTIONS(1539), 1, - sym_file_descriptor, - STATE(417), 1, + STATE(423), 1, aux_sym_command_repeat2, - STATE(678), 1, + STATE(697), 1, aux_sym__literal_repeat1, - STATE(904), 1, + STATE(876), 1, sym_concatenation, - ACTIONS(1421), 2, + ACTIONS(1499), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1425), 2, + ACTIONS(1503), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1435), 2, + ACTIONS(1515), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1419), 3, + ACTIONS(1581), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1497), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(589), 9, + STATE(587), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55578,7 +56137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1537), 22, + ACTIONS(1579), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55598,59 +56157,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [1753] = 23, + [1857] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, - sym_file_descriptor, - ACTIONS(1547), 1, + ACTIONS(709), 1, anon_sym_DOLLAR, - ACTIONS(1550), 1, + ACTIONS(711), 1, sym__special_character, - ACTIONS(1553), 1, - anon_sym_DQUOTE, - ACTIONS(1556), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(1562), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1565), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1568), 1, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1593), 1, anon_sym_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1577), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1580), 1, + ACTIONS(1599), 1, sym_test_operator, - ACTIONS(1583), 1, - sym_variable_name, - ACTIONS(1586), 1, - sym__brace_start, - STATE(1038), 1, + ACTIONS(1601), 1, + sym__bare_dollar, + STATE(441), 1, + aux_sym_command_repeat2, + STATE(810), 1, aux_sym__literal_repeat1, - STATE(3936), 1, - sym_subscript, - ACTIONS(1544), 2, + STATE(987), 1, + sym_concatenation, + ACTIONS(1577), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1585), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1574), 2, + ACTIONS(1587), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1583), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(424), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(715), 9, + STATE(635), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55660,7 +56218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1331), 21, + ACTIONS(1575), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55679,59 +56237,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [1857] = 23, + [1960] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - sym_file_descriptor, - ACTIONS(1593), 1, + ACTIONS(1612), 1, anon_sym_DOLLAR, - ACTIONS(1595), 1, + ACTIONS(1615), 1, sym__special_character, - ACTIONS(1597), 1, + ACTIONS(1618), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1621), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1624), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(1627), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1630), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1607), 1, + ACTIONS(1633), 1, anon_sym_BQUOTE, - ACTIONS(1609), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1613), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1615), 1, + ACTIONS(1642), 1, sym_test_operator, - ACTIONS(1617), 1, - sym_variable_name, - ACTIONS(1619), 1, + ACTIONS(1645), 1, + sym__bare_dollar, + ACTIONS(1648), 1, sym__brace_start, - STATE(1184), 1, + STATE(432), 1, + aux_sym_command_repeat2, + STATE(810), 1, aux_sym__literal_repeat1, - STATE(3981), 1, - sym_subscript, - ACTIONS(1591), 2, + STATE(987), 1, + sym_concatenation, + ACTIONS(1424), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1606), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, + ACTIONS(1609), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1639), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1589), 3, + ACTIONS(1603), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(435), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(762), 9, + STATE(635), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55741,7 +56298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1381), 20, + ACTIONS(1419), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55749,9 +56306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -55759,59 +56317,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [1960] = 23, + [2063] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, - sym_file_descriptor, - ACTIONS(1627), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1630), 1, + ACTIONS(1660), 1, sym__special_character, - ACTIONS(1633), 1, + ACTIONS(1663), 1, anon_sym_DQUOTE, - ACTIONS(1636), 1, + ACTIONS(1666), 1, aux_sym_number_token1, - ACTIONS(1639), 1, + ACTIONS(1669), 1, aux_sym_number_token2, - ACTIONS(1642), 1, + ACTIONS(1672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1645), 1, + ACTIONS(1675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1648), 1, + ACTIONS(1678), 1, anon_sym_BQUOTE, - ACTIONS(1651), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1657), 1, + ACTIONS(1687), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1660), 1, - sym_test_operator, - ACTIONS(1663), 1, + ACTIONS(1690), 1, sym_variable_name, - ACTIONS(1666), 1, + ACTIONS(1693), 1, + sym_test_operator, + ACTIONS(1696), 1, sym__brace_start, - STATE(1184), 1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(3981), 1, + STATE(3989), 1, sym_subscript, - ACTIONS(1624), 2, + ACTIONS(1369), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1654), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1654), 2, + ACTIONS(1684), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1621), 3, + ACTIONS(1651), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(426), 3, + STATE(433), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(762), 9, + STATE(774), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55821,7 +56379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1331), 20, + ACTIONS(1367), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55839,10 +56397,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2063] = 23, + [2166] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, @@ -55857,40 +56414,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(737), 1, sym__brace_start, - ACTIONS(1531), 1, - sym_file_descriptor, - ACTIONS(1675), 1, + ACTIONS(1589), 1, anon_sym_DQUOTE, - ACTIONS(1677), 1, + ACTIONS(1591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1593), 1, anon_sym_BQUOTE, - ACTIONS(1681), 1, + ACTIONS(1595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1685), 1, + ACTIONS(1599), 1, sym_test_operator, - ACTIONS(1687), 1, + ACTIONS(1601), 1, sym__bare_dollar, - STATE(436), 1, + STATE(443), 1, aux_sym_command_repeat2, - STATE(906), 1, + STATE(810), 1, aux_sym__literal_repeat1, - STATE(939), 1, + STATE(987), 1, sym_concatenation, - ACTIONS(1671), 2, + ACTIONS(1505), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1585), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1673), 2, + ACTIONS(1587), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1683), 2, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1669), 3, + ACTIONS(1583), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(648), 9, + STATE(635), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55900,7 +56458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1529), 21, + ACTIONS(1501), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55919,60 +56477,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2166] = 23, + [2269] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1698), 1, + ACTIONS(1705), 1, sym__special_character, - ACTIONS(1701), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - ACTIONS(1704), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(1707), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(1710), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(1713), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1716), 1, + ACTIONS(1717), 1, anon_sym_BQUOTE, ACTIONS(1719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1725), 1, + ACTIONS(1723), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1728), 1, - sym_test_operator, - ACTIONS(1731), 1, + ACTIONS(1725), 1, sym_variable_name, - ACTIONS(1734), 1, + ACTIONS(1727), 1, + sym_test_operator, + ACTIONS(1729), 1, sym__brace_start, - STATE(1070), 1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(3919), 1, + STATE(3989), 1, sym_subscript, - ACTIONS(1369), 2, + ACTIONS(1325), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1692), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1722), 2, + ACTIONS(1721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1689), 3, + ACTIONS(1699), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(428), 3, + STATE(433), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(797), 9, + STATE(774), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -55982,7 +56539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1331), 19, + ACTIONS(1323), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -55990,6 +56547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -55999,60 +56557,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2269] = 23, + [2372] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1737), 1, anon_sym_DOLLAR, - ACTIONS(1743), 1, + ACTIONS(1740), 1, sym__special_character, - ACTIONS(1745), 1, + ACTIONS(1743), 1, anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(1746), 1, aux_sym_number_token1, ACTIONS(1749), 1, aux_sym_number_token2, - ACTIONS(1751), 1, + ACTIONS(1752), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(1755), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1758), 1, anon_sym_BQUOTE, - ACTIONS(1757), 1, - anon_sym_DOLLAR_BQUOTE, ACTIONS(1761), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1767), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1763), 1, - sym_test_operator, - ACTIONS(1765), 1, + ACTIONS(1770), 1, sym_variable_name, - ACTIONS(1767), 1, + ACTIONS(1773), 1, + sym_test_operator, + ACTIONS(1776), 1, sym__brace_start, - STATE(1070), 1, + STATE(1080), 1, aux_sym__literal_repeat1, - STATE(3919), 1, + STATE(3933), 1, sym_subscript, - ACTIONS(1417), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1739), 2, + ACTIONS(1734), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1759), 2, + ACTIONS(1764), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1737), 3, + ACTIONS(1369), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1731), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(428), 3, + STATE(436), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(797), 9, + STATE(771), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56062,7 +56620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1413), 19, + ACTIONS(1367), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56079,58 +56637,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2372] = 23, + [2475] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(1507), 1, + anon_sym_DQUOTE, + STATE(620), 1, + sym_string, + ACTIONS(1781), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, sym_file_descriptor, - ACTIONS(1778), 1, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1781), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(1784), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2546] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + anon_sym_DOLLAR, + ACTIONS(1705), 1, + sym__special_character, + ACTIONS(1707), 1, anon_sym_DQUOTE, - ACTIONS(1787), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(1790), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(1793), 1, + ACTIONS(1713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1796), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1799), 1, + ACTIONS(1717), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1808), 1, + ACTIONS(1725), 1, + sym_variable_name, + ACTIONS(1727), 1, sym_test_operator, - ACTIONS(1811), 1, - sym__bare_dollar, - ACTIONS(1814), 1, + ACTIONS(1729), 1, sym__brace_start, - STATE(430), 1, - aux_sym_command_repeat2, - STATE(906), 1, + ACTIONS(1783), 1, + aux_sym__simple_variable_name_token1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(939), 1, - sym_concatenation, - ACTIONS(1772), 2, + STATE(3989), 1, + sym_subscript, + ACTIONS(1357), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1805), 2, + ACTIONS(1721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1769), 3, + ACTIONS(1699), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(648), 9, + STATE(435), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(774), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56140,7 +56763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1449), 21, + ACTIONS(1355), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56148,10 +56771,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -56159,24 +56781,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2649] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + anon_sym_DOLLAR, + ACTIONS(1791), 1, + sym__special_character, + ACTIONS(1793), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, + aux_sym_number_token1, + ACTIONS(1797), 1, + aux_sym_number_token2, + ACTIONS(1799), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1803), 1, + anon_sym_BQUOTE, + ACTIONS(1805), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1809), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1811), 1, + sym_variable_name, + ACTIONS(1813), 1, + sym_test_operator, + ACTIONS(1815), 1, + sym__brace_start, + STATE(1080), 1, + aux_sym__literal_repeat1, + STATE(3933), 1, + sym_subscript, + ACTIONS(1787), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1807), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1325), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, + ACTIONS(1785), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(436), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(771), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1323), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [2475] = 7, + [2752] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 1, + ACTIONS(1507), 1, anon_sym_DQUOTE, - STATE(626), 1, + STATE(620), 1, sym_string, - ACTIONS(1819), 2, + ACTIONS(1781), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1139), 4, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1817), 9, + ACTIONS(1779), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -56186,7 +56888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 39, + ACTIONS(1137), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -56225,8 +56927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [2546] = 23, + [2823] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(709), 1, @@ -56241,40 +56942,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(737), 1, sym__brace_start, - ACTIONS(1539), 1, - sym_file_descriptor, - ACTIONS(1675), 1, + ACTIONS(1589), 1, anon_sym_DQUOTE, - ACTIONS(1677), 1, + ACTIONS(1591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1593), 1, anon_sym_BQUOTE, - ACTIONS(1681), 1, + ACTIONS(1595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1685), 1, + ACTIONS(1599), 1, sym_test_operator, - ACTIONS(1687), 1, + ACTIONS(1601), 1, sym__bare_dollar, - STATE(433), 1, + STATE(432), 1, aux_sym_command_repeat2, - STATE(906), 1, + STATE(810), 1, aux_sym__literal_repeat1, - STATE(939), 1, + STATE(987), 1, sym_concatenation, - ACTIONS(1671), 2, + ACTIONS(1571), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1585), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1673), 2, + ACTIONS(1587), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1683), 2, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1669), 3, + ACTIONS(1583), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(648), 9, + STATE(635), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56284,7 +56986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1537), 21, + ACTIONS(1569), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56303,58 +57005,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2649] = 23, + [2926] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR, - ACTIONS(711), 1, + ACTIONS(1791), 1, sym__special_character, - ACTIONS(717), 1, + ACTIONS(1793), 1, + anon_sym_DQUOTE, + ACTIONS(1795), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(1797), 1, aux_sym_number_token2, - ACTIONS(723), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(737), 1, - sym__brace_start, - ACTIONS(1439), 1, - sym_file_descriptor, - ACTIONS(1675), 1, - anon_sym_DQUOTE, - ACTIONS(1677), 1, + ACTIONS(1799), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1803), 1, anon_sym_BQUOTE, - ACTIONS(1681), 1, + ACTIONS(1805), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1685), 1, + ACTIONS(1811), 1, + sym_variable_name, + ACTIONS(1813), 1, sym_test_operator, - ACTIONS(1687), 1, - sym__bare_dollar, - STATE(430), 1, - aux_sym_command_repeat2, - STATE(906), 1, + ACTIONS(1815), 1, + sym__brace_start, + ACTIONS(1817), 1, + aux_sym__simple_variable_name_token1, + STATE(1080), 1, aux_sym__literal_repeat1, - STATE(939), 1, - sym_concatenation, - ACTIONS(1671), 2, + STATE(3933), 1, + sym_subscript, + ACTIONS(1787), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1673), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1683), 2, + ACTIONS(1807), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1669), 3, + ACTIONS(1357), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1785), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(648), 9, + STATE(439), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(771), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56364,7 +57068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 21, + ACTIONS(1355), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56374,8 +57078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -56383,60 +57085,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2752] = 23, + [3029] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(709), 1, anon_sym_DOLLAR, - ACTIONS(1743), 1, + ACTIONS(711), 1, sym__special_character, - ACTIONS(1745), 1, - anon_sym_DQUOTE, - ACTIONS(1747), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(1749), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(1751), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1753), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1755), 1, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(1589), 1, + anon_sym_DQUOTE, + ACTIONS(1591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1593), 1, anon_sym_BQUOTE, - ACTIONS(1757), 1, + ACTIONS(1595), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1763), 1, + ACTIONS(1599), 1, sym_test_operator, - ACTIONS(1765), 1, - sym_variable_name, - ACTIONS(1767), 1, - sym__brace_start, - ACTIONS(1821), 1, - aux_sym__simple_variable_name_token1, - STATE(1070), 1, + ACTIONS(1601), 1, + sym__bare_dollar, + STATE(432), 1, + aux_sym_command_repeat2, + STATE(810), 1, aux_sym__literal_repeat1, - STATE(3919), 1, - sym_subscript, - ACTIONS(1407), 2, + STATE(987), 1, + sym_concatenation, + ACTIONS(1581), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1739), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1585), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1759), 2, + ACTIONS(1587), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1737), 3, + ACTIONS(1583), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(429), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(797), 9, + STATE(635), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56446,7 +57146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1381), 19, + ACTIONS(1579), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56456,6 +57156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -56463,59 +57165,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2855] = 23, + [3132] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 1, - sym_file_descriptor, - ACTIONS(1593), 1, + ACTIONS(1827), 1, anon_sym_DOLLAR, - ACTIONS(1595), 1, + ACTIONS(1829), 1, sym__special_character, - ACTIONS(1597), 1, + ACTIONS(1831), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1833), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1835), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(1837), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1839), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1607), 1, + ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1609), 1, + ACTIONS(1843), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1615), 1, + ACTIONS(1847), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1849), 1, sym_test_operator, - ACTIONS(1617), 1, - sym_variable_name, - ACTIONS(1619), 1, + ACTIONS(1851), 1, sym__brace_start, - ACTIONS(1823), 1, - aux_sym__simple_variable_name_token1, - STATE(1184), 1, + STATE(1038), 1, aux_sym__literal_repeat1, - STATE(3981), 1, - sym_subscript, - ACTIONS(1591), 2, + ACTIONS(1821), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, + ACTIONS(1825), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1845), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1589), 3, + STATE(453), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1819), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(426), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(762), 9, + STATE(681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56525,7 +57222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1413), 20, + ACTIONS(1823), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56533,9 +57230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -56543,58 +57242,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [2958] = 23, + [3230] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 1, + ACTIONS(1827), 1, anon_sym_DOLLAR, - ACTIONS(711), 1, + ACTIONS(1829), 1, sym__special_character, - ACTIONS(717), 1, + ACTIONS(1831), 1, + anon_sym_DQUOTE, + ACTIONS(1833), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(1835), 1, aux_sym_number_token2, - ACTIONS(723), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(737), 1, - sym__brace_start, - ACTIONS(1535), 1, - sym_file_descriptor, - ACTIONS(1675), 1, - anon_sym_DQUOTE, - ACTIONS(1677), 1, + ACTIONS(1837), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, + ACTIONS(1839), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1841), 1, anon_sym_BQUOTE, - ACTIONS(1681), 1, + ACTIONS(1843), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1685), 1, + ACTIONS(1849), 1, sym_test_operator, - ACTIONS(1687), 1, - sym__bare_dollar, - STATE(430), 1, - aux_sym_command_repeat2, - STATE(906), 1, + ACTIONS(1851), 1, + sym__brace_start, + ACTIONS(1857), 1, + aux_sym__simple_variable_name_token1, + STATE(1038), 1, aux_sym__literal_repeat1, - STATE(939), 1, - sym_concatenation, - ACTIONS(1671), 2, + ACTIONS(1821), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1673), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1683), 2, + ACTIONS(1845), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1669), 3, + ACTIONS(1855), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(444), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1819), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(648), 9, + STATE(681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56604,7 +57299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1533), 21, + ACTIONS(1853), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56612,6 +57307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -56623,24 +57319,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [3061] = 7, + [3328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 1, + ACTIONS(1589), 1, anon_sym_DQUOTE, - STATE(626), 1, + STATE(762), 1, sym_string, - ACTIONS(1819), 2, + ACTIONS(1861), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1135), 4, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1817), 9, + ACTIONS(1859), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -56650,7 +57346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 39, + ACTIONS(1127), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -56660,7 +57356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -56689,8 +57384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [3132] = 23, + [3398] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -56705,115 +57399,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(71), 1, sym__brace_start, - ACTIONS(1831), 1, + ACTIONS(1869), 1, anon_sym_DQUOTE, - ACTIONS(1833), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1835), 1, + ACTIONS(1873), 1, anon_sym_BQUOTE, - ACTIONS(1837), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1841), 1, + ACTIONS(1879), 1, sym_test_operator, - ACTIONS(1843), 1, + ACTIONS(1881), 1, sym__bare_dollar, - STATE(453), 1, + STATE(451), 1, aux_sym_command_repeat2, - STATE(1061), 1, + STATE(965), 1, aux_sym__literal_repeat1, - STATE(1236), 1, + STATE(1127), 1, sym_concatenation, - ACTIONS(1531), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1827), 2, + ACTIONS(1865), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1829), 2, + ACTIONS(1867), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1839), 2, + ACTIONS(1877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1825), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(709), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1529), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3234] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym__special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - aux_sym_number_token1, - ACTIONS(1859), 1, - aux_sym_number_token2, - ACTIONS(1861), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1863), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1865), 1, - anon_sym_BQUOTE, - ACTIONS(1867), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1871), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1873), 1, - sym_test_operator, - ACTIONS(1875), 1, + ACTIONS(1505), 3, sym_file_descriptor, - ACTIONS(1877), 1, - sym__brace_start, - STATE(929), 1, - aux_sym__literal_repeat1, - ACTIONS(1847), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1869), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(444), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1845), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1863), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(684), 9, + STATE(700), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56823,7 +57444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1849), 22, + ACTIONS(1501), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56831,11 +57452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -56843,10 +57461,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [3332] = 23, + [3500] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, @@ -56861,41 +57478,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(71), 1, sym__brace_start, - ACTIONS(1831), 1, + ACTIONS(1869), 1, anon_sym_DQUOTE, - ACTIONS(1833), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1835), 1, + ACTIONS(1873), 1, anon_sym_BQUOTE, - ACTIONS(1837), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1841), 1, + ACTIONS(1879), 1, sym_test_operator, - ACTIONS(1843), 1, + ACTIONS(1881), 1, sym__bare_dollar, - STATE(442), 1, + STATE(455), 1, aux_sym_command_repeat2, - STATE(1061), 1, + STATE(965), 1, aux_sym__literal_repeat1, - STATE(1236), 1, + STATE(1127), 1, sym_concatenation, - ACTIONS(1439), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1827), 2, + ACTIONS(1865), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1829), 2, + ACTIONS(1867), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1839), 2, + ACTIONS(1877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1825), 3, + ACTIONS(1571), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1863), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(709), 9, + STATE(700), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -56905,7 +57523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 19, + ACTIONS(1569), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -56922,24 +57540,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [3434] = 7, + [3602] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1675), 1, + ACTIONS(1589), 1, anon_sym_DQUOTE, - STATE(731), 1, + STATE(762), 1, sym_string, - ACTIONS(1881), 2, + ACTIONS(1861), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1139), 4, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1879), 9, + ACTIONS(1859), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -56949,7 +57567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 38, + ACTIONS(1137), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -56987,57 +57605,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [3504] = 23, + [3672] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1892), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1895), 1, - sym__special_character, - ACTIONS(1898), 1, + ACTIONS(1663), 1, anon_sym_DQUOTE, - ACTIONS(1901), 1, + ACTIONS(1666), 1, aux_sym_number_token1, - ACTIONS(1904), 1, + ACTIONS(1669), 1, aux_sym_number_token2, - ACTIONS(1907), 1, + ACTIONS(1672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1910), 1, + ACTIONS(1675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1913), 1, + ACTIONS(1678), 1, anon_sym_BQUOTE, - ACTIONS(1916), 1, + ACTIONS(1681), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1922), 1, - sym_test_operator, - ACTIONS(1925), 1, - sym__bare_dollar, - ACTIONS(1928), 1, + ACTIONS(1696), 1, sym__brace_start, - STATE(442), 1, - aux_sym_command_repeat2, - STATE(1061), 1, + ACTIONS(1886), 1, + sym__special_character, + ACTIONS(1889), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1892), 1, + sym_variable_name, + ACTIONS(1895), 1, + sym_test_operator, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(1236), 1, - sym_concatenation, - ACTIONS(1487), 2, + STATE(3998), 1, + sym_subscript, + ACTIONS(1369), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1886), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1654), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1889), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1919), 2, + ACTIONS(1684), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1883), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(709), 9, + STATE(450), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1034), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57047,7 +57665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1449), 19, + ACTIONS(1367), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57064,117 +57682,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [3606] = 7, + [3774] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1675), 1, - anon_sym_DQUOTE, - STATE(731), 1, - sym_string, - ACTIONS(1881), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1879), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(41), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(43), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(49), 1, aux_sym_number_token1, + ACTIONS(51), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [3676] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym__special_character, - ACTIONS(1855), 1, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(1869), 1, anon_sym_DQUOTE, - ACTIONS(1857), 1, - aux_sym_number_token1, - ACTIONS(1859), 1, - aux_sym_number_token2, - ACTIONS(1861), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1863), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1865), 1, + ACTIONS(1873), 1, anon_sym_BQUOTE, - ACTIONS(1867), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1873), 1, + ACTIONS(1879), 1, sym_test_operator, - ACTIONS(1877), 1, - sym__brace_start, - ACTIONS(1933), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1935), 1, - sym_file_descriptor, - STATE(929), 1, + ACTIONS(1881), 1, + sym__bare_dollar, + STATE(455), 1, + aux_sym_command_repeat2, + STATE(965), 1, aux_sym__literal_repeat1, - ACTIONS(1847), 2, + STATE(1127), 1, + sym_concatenation, + ACTIONS(1865), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1869), 2, + ACTIONS(1867), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(446), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1845), 3, + ACTIONS(1581), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1863), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(684), 9, + STATE(700), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57184,7 +57744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1931), 22, + ACTIONS(1579), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57192,11 +57752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -57204,59 +57761,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [3774] = 23, + [3876] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1907), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, + ACTIONS(1910), 1, sym__special_character, - ACTIONS(49), 1, + ACTIONS(1913), 1, + anon_sym_DQUOTE, + ACTIONS(1916), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(1919), 1, aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1831), 1, - anon_sym_DQUOTE, - ACTIONS(1833), 1, + ACTIONS(1922), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1835), 1, + ACTIONS(1925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1928), 1, anon_sym_BQUOTE, - ACTIONS(1837), 1, + ACTIONS(1931), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1841), 1, + ACTIONS(1937), 1, sym_test_operator, - ACTIONS(1843), 1, + ACTIONS(1940), 1, sym__bare_dollar, - STATE(440), 1, + ACTIONS(1943), 1, + sym__brace_start, + STATE(452), 1, aux_sym_command_repeat2, - STATE(1061), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1236), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1539), 2, + ACTIONS(1424), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1827), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1901), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1829), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1839), 2, + ACTIONS(1934), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1825), 3, + ACTIONS(1898), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(709), 9, + STATE(759), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57266,7 +57822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1537), 19, + ACTIONS(1419), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57274,6 +57830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -57283,54 +57840,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [3876] = 21, + [3978] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1945), 1, + ACTIONS(1956), 1, anon_sym_DOLLAR, - ACTIONS(1948), 1, + ACTIONS(1959), 1, sym__special_character, - ACTIONS(1951), 1, + ACTIONS(1962), 1, anon_sym_DQUOTE, - ACTIONS(1954), 1, + ACTIONS(1965), 1, aux_sym_number_token1, - ACTIONS(1957), 1, + ACTIONS(1968), 1, aux_sym_number_token2, - ACTIONS(1960), 1, + ACTIONS(1971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1966), 1, + ACTIONS(1977), 1, anon_sym_BQUOTE, - ACTIONS(1969), 1, + ACTIONS(1980), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1975), 1, + ACTIONS(1986), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1978), 1, + ACTIONS(1989), 1, sym_test_operator, - ACTIONS(1981), 1, - sym_file_descriptor, - ACTIONS(1983), 1, + ACTIONS(1992), 1, sym__brace_start, - STATE(929), 1, + STATE(1038), 1, aux_sym__literal_repeat1, - ACTIONS(1940), 2, + ACTIONS(1949), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1972), 2, + ACTIONS(1954), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(446), 2, + STATE(453), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1937), 3, + ACTIONS(1946), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(684), 9, + STATE(681), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57340,7 +57897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1943), 22, + ACTIONS(1952), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57360,59 +57917,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [3974] = 23, + [4076] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - sym_file_descriptor, - ACTIONS(1593), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, - anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(1603), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1607), 1, - anon_sym_BQUOTE, - ACTIONS(1609), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1619), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1988), 1, + ACTIONS(775), 1, sym__special_character, - ACTIONS(1990), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1992), 1, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2005), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2011), 1, sym_test_operator, - ACTIONS(1994), 1, - sym_variable_name, - STATE(1184), 1, + ACTIONS(2013), 1, + sym__bare_dollar, + STATE(452), 1, + aux_sym_command_repeat2, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(3999), 1, - sym_subscript, - ACTIONS(1591), 2, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1581), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, + ACTIONS(1999), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1986), 3, + ACTIONS(1995), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(451), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(991), 9, + STATE(759), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57422,7 +57978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1381), 19, + ACTIONS(1579), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57430,6 +57986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -57439,58 +57996,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4076] = 23, + [4178] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(2024), 1, anon_sym_DOLLAR, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(773), 1, + ACTIONS(2027), 1, sym__special_character, - ACTIONS(1535), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2030), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2033), 1, + aux_sym_number_token1, + ACTIONS(2036), 1, + aux_sym_number_token2, + ACTIONS(2039), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(2042), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2045), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2012), 1, + ACTIONS(2054), 1, sym_test_operator, - ACTIONS(2014), 1, + ACTIONS(2057), 1, sym__bare_dollar, + ACTIONS(2060), 1, + sym__brace_start, STATE(455), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(965), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1127), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(2018), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2000), 2, + ACTIONS(2021), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2010), 2, + ACTIONS(2051), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1996), 3, + ACTIONS(1424), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2015), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(751), 9, + STATE(700), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57500,7 +58058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1533), 20, + ACTIONS(1419), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57508,7 +58066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -57518,10 +58075,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4178] = 23, + [4280] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(409), 1, @@ -57534,42 +58090,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(437), 1, sym__brace_start, - ACTIONS(773), 1, + ACTIONS(775), 1, sym__special_character, - ACTIONS(1539), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(2005), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2012), 1, + ACTIONS(2011), 1, sym_test_operator, - ACTIONS(2014), 1, + ACTIONS(2013), 1, sym__bare_dollar, - STATE(457), 1, + STATE(461), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1577), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2000), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2010), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1996), 3, + ACTIONS(1995), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(751), 9, + STATE(759), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57579,7 +58136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1537), 20, + ACTIONS(1575), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57597,10 +58154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4280] = 23, + [4382] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(409), 1, @@ -57613,42 +58169,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(437), 1, sym__brace_start, - ACTIONS(773), 1, + ACTIONS(775), 1, sym__special_character, - ACTIONS(1531), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(2005), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2012), 1, + ACTIONS(2011), 1, sym_test_operator, - ACTIONS(2014), 1, + ACTIONS(2013), 1, sym__bare_dollar, - STATE(448), 1, + STATE(454), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1505), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2000), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2010), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1996), 3, + ACTIONS(1995), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(751), 9, + STATE(759), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57658,7 +58215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1529), 20, + ACTIONS(1501), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57676,59 +58233,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4382] = 23, + [4484] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 1, - sym_file_descriptor, - ACTIONS(1593), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(1713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1607), 1, + ACTIONS(1717), 1, anon_sym_BQUOTE, - ACTIONS(1609), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1619), 1, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(1988), 1, + ACTIONS(2065), 1, sym__special_character, - ACTIONS(1992), 1, - sym_test_operator, - ACTIONS(1994), 1, - sym_variable_name, - ACTIONS(2016), 1, + ACTIONS(2067), 1, aux_sym__simple_variable_name_token1, - STATE(1184), 1, + ACTIONS(2069), 1, + sym_variable_name, + ACTIONS(2071), 1, + sym_test_operator, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(3999), 1, + STATE(3998), 1, sym_subscript, - ACTIONS(1591), 2, + ACTIONS(1357), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, + ACTIONS(1721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1986), 3, + ACTIONS(2063), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(454), 3, + STATE(460), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(991), 9, + STATE(1034), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57738,7 +58295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1413), 19, + ACTIONS(1355), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57755,57 +58312,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4484] = 22, + [4586] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 1, - sym_file_descriptor, - ACTIONS(1593), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(1713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1609), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1619), 1, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(1988), 1, + ACTIONS(2065), 1, sym__special_character, - ACTIONS(1992), 1, - sym_test_operator, - ACTIONS(1994), 1, + ACTIONS(2069), 1, sym_variable_name, - ACTIONS(2016), 1, + ACTIONS(2071), 1, + sym_test_operator, + ACTIONS(2073), 1, aux_sym__simple_variable_name_token1, - STATE(1184), 1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(3999), 1, + STATE(3998), 1, sym_subscript, - ACTIONS(1591), 2, + ACTIONS(1357), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, + ACTIONS(1721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1986), 3, + ACTIONS(2063), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(454), 3, + STATE(463), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(991), 9, + STATE(1034), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57815,7 +58372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1413), 20, + ACTIONS(1355), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57832,60 +58389,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [4584] = 23, + [4686] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, - sym__special_character, - ACTIONS(49), 1, + ACTIONS(1707), 1, + anon_sym_DQUOTE, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1831), 1, - anon_sym_DQUOTE, - ACTIONS(1833), 1, + ACTIONS(1713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1835), 1, + ACTIONS(1715), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1717), 1, anon_sym_BQUOTE, - ACTIONS(1837), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1841), 1, + ACTIONS(1729), 1, + sym__brace_start, + ACTIONS(2065), 1, + sym__special_character, + ACTIONS(2069), 1, + sym_variable_name, + ACTIONS(2071), 1, sym_test_operator, - ACTIONS(1843), 1, - sym__bare_dollar, - STATE(442), 1, - aux_sym_command_repeat2, - STATE(1061), 1, + ACTIONS(2075), 1, + aux_sym__simple_variable_name_token1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(1236), 1, - sym_concatenation, - ACTIONS(1535), 2, + STATE(3998), 1, + sym_subscript, + ACTIONS(1325), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1827), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1829), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1839), 2, + ACTIONS(1721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1825), 3, + ACTIONS(2063), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(709), 9, + STATE(450), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1034), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57895,7 +58452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1533), 19, + ACTIONS(1323), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57912,59 +58469,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4686] = 23, + [4788] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, - sym_file_descriptor, - ACTIONS(1627), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(1633), 1, - anon_sym_DQUOTE, - ACTIONS(1636), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(1639), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(1642), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1645), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1648), 1, - anon_sym_BQUOTE, - ACTIONS(1651), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1666), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(2021), 1, + ACTIONS(775), 1, sym__special_character, - ACTIONS(2024), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2027), 1, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2005), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2011), 1, sym_test_operator, - ACTIONS(2030), 1, - sym_variable_name, - STATE(1184), 1, + ACTIONS(2013), 1, + sym__bare_dollar, + STATE(452), 1, + aux_sym_command_repeat2, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(3999), 1, - sym_subscript, - ACTIONS(1624), 2, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1571), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1654), 2, + ACTIONS(1999), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2018), 3, + ACTIONS(1995), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(454), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(991), 9, + STATE(759), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -57974,7 +58530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1331), 19, + ACTIONS(1569), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -57982,6 +58538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -57991,58 +58548,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4788] = 23, + [4890] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_file_descriptor, - ACTIONS(2042), 1, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(2045), 1, + ACTIONS(43), 1, sym__special_character, - ACTIONS(2048), 1, - anon_sym_DQUOTE, - ACTIONS(2051), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(2054), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(2057), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2060), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2063), 1, + ACTIONS(71), 1, + sym__brace_start, + ACTIONS(1869), 1, + anon_sym_DQUOTE, + ACTIONS(1871), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1873), 1, anon_sym_BQUOTE, - ACTIONS(2066), 1, + ACTIONS(1875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2072), 1, + ACTIONS(1879), 1, sym_test_operator, - ACTIONS(2075), 1, + ACTIONS(1881), 1, sym__bare_dollar, - ACTIONS(2078), 1, - sym__brace_start, - STATE(455), 1, + STATE(448), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(965), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1127), 1, sym_concatenation, - ACTIONS(2036), 2, + ACTIONS(1865), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2039), 2, + ACTIONS(1867), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2069), 2, + ACTIONS(1877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2033), 3, + ACTIONS(1577), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1863), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(751), 9, + STATE(700), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58052,7 +58610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1449), 20, + ACTIONS(1575), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58060,7 +58618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -58070,57 +58627,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [4890] = 22, + [4992] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - sym_file_descriptor, - ACTIONS(1593), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(1713), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1609), 1, + ACTIONS(1719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1619), 1, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(1988), 1, + ACTIONS(2065), 1, sym__special_character, - ACTIONS(1992), 1, - sym_test_operator, - ACTIONS(1994), 1, + ACTIONS(2069), 1, sym_variable_name, - ACTIONS(2081), 1, + ACTIONS(2071), 1, + sym_test_operator, + ACTIONS(2075), 1, aux_sym__simple_variable_name_token1, - STATE(1184), 1, + STATE(1096), 1, aux_sym__literal_repeat1, - STATE(3999), 1, + STATE(3998), 1, sym_subscript, - ACTIONS(1591), 2, + ACTIONS(1325), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, + ACTIONS(1721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1986), 3, + ACTIONS(2063), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(452), 3, + STATE(450), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(991), 9, + STATE(1034), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58130,7 +58687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1381), 20, + ACTIONS(1323), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58147,15 +58704,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [4990] = 23, + [5092] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(409), 1, anon_sym_DOLLAR, + ACTIONS(411), 1, + sym__special_character, ACTIONS(417), 1, aux_sym_number_token1, ACTIONS(419), 1, @@ -58164,42 +58722,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(437), 1, sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(1439), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(2005), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2012), 1, - sym_test_operator, - ACTIONS(2014), 1, + ACTIONS(2013), 1, sym__bare_dollar, - STATE(455), 1, + ACTIONS(2081), 1, + sym_test_operator, + STATE(479), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1571), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2000), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2010), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1996), 3, + ACTIONS(2079), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(751), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58209,7 +58766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 20, + ACTIONS(1569), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58217,7 +58774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -58227,87 +58783,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [5092] = 7, + [5193] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(411), 1, + sym__special_character, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(2001), 1, anon_sym_DQUOTE, - STATE(842), 1, - sym_string, - ACTIONS(2085), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, - sym_file_descriptor, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2005), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2013), 1, sym__bare_dollar, - sym__brace_start, - ACTIONS(2083), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 37, + ACTIONS(2081), 1, + sym_test_operator, + STATE(479), 1, + aux_sym_command_repeat2, + STATE(1056), 1, + aux_sym__literal_repeat1, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1581), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2009), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2079), 2, anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2077), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + 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, + ACTIONS(1579), 18, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [5161] = 7, + [5294] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2085), 1, anon_sym_DQUOTE, - STATE(824), 1, + STATE(812), 1, sym_string, - ACTIONS(2089), 2, + ACTIONS(2087), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 4, + ACTIONS(1139), 4, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2087), 9, + ACTIONS(2083), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -58317,20 +58888,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 36, + ACTIONS(1137), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -58353,8 +58925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [5230] = 23, + [5363] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(409), 1, @@ -58369,40 +58940,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(437), 1, sym__brace_start, - ACTIONS(1539), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, - anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, + ACTIONS(2013), 1, sym__bare_dollar, - ACTIONS(2095), 1, + ACTIONS(2081), 1, sym_test_operator, - STATE(467), 1, + STATE(479), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1571), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2093), 2, + ACTIONS(2079), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2091), 3, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(798), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58412,7 +58982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1537), 19, + ACTIONS(1569), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58429,68 +58999,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [5331] = 23, + anon_sym_BQUOTE, + [5462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + STATE(872), 1, + sym_string, + ACTIONS(2091), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2089), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(411), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + 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_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(417), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1535), 1, - sym_file_descriptor, - ACTIONS(2002), 1, - anon_sym_DQUOTE, - ACTIONS(2004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(2008), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2095), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [5531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1331), 1, + anon_sym_DQUOTE, + STATE(719), 1, + sym_string, + ACTIONS(2095), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - STATE(466), 1, - aux_sym_command_repeat2, - STATE(1021), 1, - aux_sym__literal_repeat1, - STATE(1224), 1, - sym_concatenation, - ACTIONS(1998), 2, + sym__brace_start, + ACTIONS(2093), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2093), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2091), 3, + 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, - STATE(798), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [5600] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + anon_sym_DQUOTE, + STATE(812), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1533), 19, + ACTIONS(2087), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2083), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58498,8 +59160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58510,51 +59175,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [5432] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [5669] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, - sym_file_descriptor, - ACTIONS(2103), 1, + ACTIONS(2101), 1, anon_sym_DOLLAR, - ACTIONS(2106), 1, + ACTIONS(2103), 1, sym__special_character, - ACTIONS(2109), 1, + ACTIONS(2105), 1, anon_sym_DQUOTE, - ACTIONS(2112), 1, + ACTIONS(2107), 1, aux_sym_number_token1, - ACTIONS(2115), 1, + ACTIONS(2109), 1, aux_sym_number_token2, - ACTIONS(2118), 1, + ACTIONS(2111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2121), 1, + ACTIONS(2113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2124), 1, + ACTIONS(2115), 1, anon_sym_BQUOTE, - ACTIONS(2127), 1, + ACTIONS(2117), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2133), 1, + ACTIONS(2121), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2136), 1, + ACTIONS(2123), 1, sym_test_operator, - ACTIONS(2139), 1, + ACTIONS(2125), 1, sym__brace_start, - STATE(1068), 1, + STATE(1082), 1, aux_sym__literal_repeat1, - ACTIONS(2100), 2, + ACTIONS(1855), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2130), 2, + ACTIONS(2119), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(462), 2, + STATE(474), 2, sym_concatenation, aux_sym_unset_command_repeat1, ACTIONS(2097), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(804), 9, + STATE(890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58564,7 +59243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1943), 21, + ACTIONS(1853), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58583,54 +59262,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [5529] = 21, + [5766] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(1331), 1, + anon_sym_DQUOTE, + STATE(719), 1, + sym_string, + ACTIONS(2095), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, sym_file_descriptor, - ACTIONS(2146), 1, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2093), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2148), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(2150), 1, - anon_sym_DQUOTE, - ACTIONS(2152), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2154), 1, aux_sym_number_token2, - ACTIONS(2156), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2158), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2160), 1, anon_sym_BQUOTE, - ACTIONS(2162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2166), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2168), 1, - sym_test_operator, - ACTIONS(2170), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [5835] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(411), 1, + sym__special_character, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, sym__brace_start, - STATE(1068), 1, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2013), 1, + sym__bare_dollar, + ACTIONS(2081), 1, + sym_test_operator, + STATE(482), 1, + aux_sym_command_repeat2, + STATE(1056), 1, aux_sym__literal_repeat1, - ACTIONS(2144), 2, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1505), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2164), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(474), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2142), 3, + ACTIONS(2079), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(804), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58640,7 +59383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1849), 21, + ACTIONS(1501), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58650,8 +59393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -58659,56 +59400,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [5626] = 22, + anon_sym_BQUOTE, + [5934] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(2101), 1, anon_sym_DOLLAR, - ACTIONS(411), 1, + ACTIONS(2103), 1, sym__special_character, - ACTIONS(417), 1, + ACTIONS(2105), 1, + anon_sym_DQUOTE, + ACTIONS(2107), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(2109), 1, aux_sym_number_token2, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1531), 1, - sym_file_descriptor, - ACTIONS(2002), 1, - anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2008), 1, + ACTIONS(2113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2115), 1, + anon_sym_BQUOTE, + ACTIONS(2117), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2095), 1, + ACTIONS(2123), 1, sym_test_operator, - STATE(468), 1, - aux_sym_command_repeat2, - STATE(1021), 1, + ACTIONS(2125), 1, + sym__brace_start, + ACTIONS(2127), 1, + aux_sym__simple_variable_name_token1, + STATE(1082), 1, aux_sym__literal_repeat1, - STATE(1224), 1, - sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1825), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, + ACTIONS(2119), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2093), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2091), 3, + STATE(478), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2097), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(798), 9, + STATE(890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58718,17 +59458,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1529), 20, + ACTIONS(1823), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6031] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + STATE(872), 1, + sym_string, + ACTIONS(2091), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2089), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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, @@ -58738,22 +59528,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - [5725] = 7, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6100] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, + ACTIONS(1869), 1, anon_sym_DQUOTE, - STATE(877), 1, + STATE(767), 1, sym_string, - ACTIONS(2176), 2, + ACTIONS(2131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1139), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2172), 9, + ts_builtin_sym_end, + ACTIONS(2129), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -58763,21 +59567,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 37, + ACTIONS(1137), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -58800,46 +59603,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [6169] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(411), 1, + sym__special_character, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2013), 1, + sym__bare_dollar, + ACTIONS(2081), 1, sym_test_operator, - [5794] = 23, + STATE(467), 1, + aux_sym_command_repeat2, + STATE(1056), 1, + aux_sym__literal_repeat1, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1577), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2009), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2079), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2077), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + 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, + ACTIONS(1575), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [6268] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(2139), 1, + anon_sym_DOLLAR, + ACTIONS(2142), 1, + sym__special_character, + ACTIONS(2145), 1, + anon_sym_DQUOTE, + ACTIONS(2148), 1, + aux_sym_number_token1, + ACTIONS(2151), 1, + aux_sym_number_token2, + ACTIONS(2154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2157), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2160), 1, + anon_sym_BQUOTE, + ACTIONS(2163), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2169), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2172), 1, + sym_test_operator, + ACTIONS(2175), 1, + sym__brace_start, + STATE(1082), 1, + aux_sym__literal_repeat1, + ACTIONS(1954), 2, sym_file_descriptor, - ACTIONS(2042), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2136), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2166), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(478), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2133), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1952), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6365] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, anon_sym_DOLLAR, - ACTIONS(2048), 1, + ACTIONS(1913), 1, anon_sym_DQUOTE, - ACTIONS(2051), 1, + ACTIONS(1916), 1, aux_sym_number_token1, - ACTIONS(2054), 1, + ACTIONS(1919), 1, aux_sym_number_token2, - ACTIONS(2057), 1, + ACTIONS(1922), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2060), 1, + ACTIONS(1925), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2063), 1, + ACTIONS(1928), 1, anon_sym_BQUOTE, - ACTIONS(2066), 1, + ACTIONS(1931), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2075), 1, + ACTIONS(1940), 1, sym__bare_dollar, - ACTIONS(2078), 1, + ACTIONS(1943), 1, sym__brace_start, ACTIONS(2184), 1, sym__special_character, ACTIONS(2187), 1, sym_test_operator, - STATE(466), 1, + STATE(479), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(2036), 2, + ACTIONS(1424), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1901), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2069), 2, + ACTIONS(1934), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(2181), 2, @@ -58849,7 +59805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(798), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58859,7 +59815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1449), 19, + ACTIONS(1419), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58876,10 +59832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [5895] = 23, + [6466] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(409), 1, @@ -58894,40 +59849,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(437), 1, sym__brace_start, - ACTIONS(1439), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(2005), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, + ACTIONS(2013), 1, sym__bare_dollar, - ACTIONS(2095), 1, + ACTIONS(2081), 1, sym_test_operator, - STATE(466), 1, + STATE(465), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1505), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2093), 2, + ACTIONS(2079), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2091), 3, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(798), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -58937,7 +59893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 19, + ACTIONS(1501), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58954,10 +59910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [5996] = 22, + [6567] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(409), 1, @@ -58972,38 +59927,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(437), 1, sym__brace_start, - ACTIONS(1535), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2008), 1, + ACTIONS(2005), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, + ACTIONS(2013), 1, sym__bare_dollar, - ACTIONS(2095), 1, + ACTIONS(2081), 1, sym_test_operator, - STATE(466), 1, + STATE(464), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1577), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2093), 2, + ACTIONS(2079), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2091), 3, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(798), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59013,7 +59971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1533), 20, + ACTIONS(1575), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59030,11 +59988,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [6095] = 22, + [6668] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(409), 1, @@ -59049,38 +60005,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(437), 1, sym__brace_start, - ACTIONS(1539), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2008), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, + ACTIONS(2013), 1, sym__bare_dollar, - ACTIONS(2095), 1, + ACTIONS(2081), 1, sym_test_operator, - STATE(472), 1, + STATE(479), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1087), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1581), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2093), 2, + ACTIONS(2079), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2091), 3, + ACTIONS(2077), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(798), 9, + STATE(820), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59090,7 +60047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1537), 20, + ACTIONS(1579), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59107,25 +60064,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [6194] = 7, + [6767] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2174), 1, + ACTIONS(1869), 1, anon_sym_DQUOTE, - STATE(877), 1, + STATE(767), 1, sym_string, - ACTIONS(2176), 2, + ACTIONS(2131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2172), 9, + ts_builtin_sym_end, + ACTIONS(2129), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -59135,21 +60093,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 37, + ACTIONS(1127), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -59172,20 +60129,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [6836] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(813), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [6263] = 7, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_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(585), 31, + 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_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [6896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, + ACTIONS(1473), 1, anon_sym_DQUOTE, - STATE(676), 1, + STATE(900), 1, sym_string, ACTIONS(2192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1139), 4, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ACTIONS(2190), 9, anon_sym_DASH, @@ -59197,7 +60211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 37, + ACTIONS(1137), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -59206,7 +60220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -59234,64 +60247,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [6332] = 22, + [6964] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, - anon_sym_DOLLAR, - ACTIONS(411), 1, - sym__special_character, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1439), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(1473), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2008), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2095), 1, + STATE(900), 1, + sym_string, + ACTIONS(2192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - STATE(466), 1, - aux_sym_command_repeat2, - STATE(1021), 1, - aux_sym__literal_repeat1, - STATE(1224), 1, - sym_concatenation, - ACTIONS(1998), 2, + sym__brace_start, + ACTIONS(2190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 35, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2093), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2091), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(798), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1423), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59301,6 +60283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59311,22 +60295,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - [6431] = 7, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7032] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 1, + ACTIONS(2196), 1, anon_sym_DQUOTE, - STATE(676), 1, + STATE(950), 1, sym_string, - ACTIONS(2192), 2, + ACTIONS(2198), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1139), 4, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2190), 9, + ACTIONS(2194), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -59336,7 +60333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 37, + ACTIONS(1137), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -59345,7 +60342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -59373,52 +60369,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [6500] = 21, + [7100] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 1, - sym_file_descriptor, - ACTIONS(2146), 1, + ACTIONS(2204), 1, anon_sym_DOLLAR, - ACTIONS(2148), 1, + ACTIONS(2206), 1, sym__special_character, - ACTIONS(2150), 1, + ACTIONS(2208), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2210), 1, aux_sym_number_token1, - ACTIONS(2154), 1, + ACTIONS(2212), 1, aux_sym_number_token2, - ACTIONS(2156), 1, + ACTIONS(2214), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2158), 1, + ACTIONS(2216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2160), 1, + ACTIONS(2218), 1, anon_sym_BQUOTE, - ACTIONS(2162), 1, + ACTIONS(2220), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2168), 1, + ACTIONS(2224), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2226), 1, sym_test_operator, - ACTIONS(2170), 1, + ACTIONS(2228), 1, sym__brace_start, - ACTIONS(2194), 1, - aux_sym__simple_variable_name_token1, - STATE(1068), 1, + STATE(1284), 1, aux_sym__literal_repeat1, - ACTIONS(2144), 2, + ACTIONS(2202), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2164), 2, + ACTIONS(2222), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(462), 2, + STATE(496), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2142), 3, + ACTIONS(1855), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2200), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(804), 9, + STATE(964), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59428,7 +60425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1931), 21, + ACTIONS(1853), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59438,8 +60435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59447,24 +60442,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [6597] = 7, + [7196] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2196), 1, anon_sym_DQUOTE, - STATE(842), 1, + STATE(950), 1, sym_string, - ACTIONS(2085), 2, + ACTIONS(2198), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 4, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2083), 9, + ACTIONS(2194), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -59474,21 +60469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 37, + ACTIONS(1127), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -59511,118 +60505,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [6666] = 7, + [7264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(2239), 1, + sym__special_character, + ACTIONS(2242), 1, anon_sym_DQUOTE, - STATE(824), 1, - sym_string, - ACTIONS(2089), 2, + ACTIONS(2245), 1, + aux_sym_number_token1, + ACTIONS(2248), 1, + aux_sym_number_token2, + ACTIONS(2251), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2257), 1, + anon_sym_BQUOTE, + ACTIONS(2260), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2266), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 4, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(2269), 1, + sym_test_operator, + ACTIONS(2272), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2087), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 36, + STATE(1285), 1, + aux_sym__literal_repeat1, + ACTIONS(1954), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2233), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2263), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(490), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2230), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1060), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1952), 19, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [6735] = 23, + [7360] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR, - ACTIONS(411), 1, + ACTIONS(2281), 1, sym__special_character, - ACTIONS(417), 1, + ACTIONS(2283), 1, + anon_sym_DQUOTE, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1531), 1, - sym_file_descriptor, - ACTIONS(2002), 1, - anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(2291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2293), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(2295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2095), 1, + ACTIONS(2299), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2301), 1, sym_test_operator, - STATE(461), 1, - aux_sym_command_repeat2, - STATE(1021), 1, + ACTIONS(2303), 1, + sym__brace_start, + STATE(1285), 1, aux_sym__literal_repeat1, - STATE(1224), 1, - sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(1825), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, + ACTIONS(2297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2093), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2091), 3, + STATE(490), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2275), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(798), 9, + STATE(1060), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -59632,7 +60635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1529), 19, + ACTIONS(1823), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59640,6 +60643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -59649,35 +60653,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [6836] = 7, + [7456] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(2279), 1, + anon_sym_DOLLAR, + ACTIONS(2281), 1, + sym__special_character, + ACTIONS(2283), 1, anon_sym_DQUOTE, - STATE(828), 1, - sym_string, - ACTIONS(2198), 2, + ACTIONS(2285), 1, + aux_sym_number_token1, + ACTIONS(2287), 1, + aux_sym_number_token2, + ACTIONS(2289), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2293), 1, + anon_sym_BQUOTE, + ACTIONS(2295), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2301), 1, + sym_test_operator, + ACTIONS(2303), 1, + sym__brace_start, + ACTIONS(2305), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + STATE(1285), 1, + aux_sym__literal_repeat1, + ACTIONS(1855), 2, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2196), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2297), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(491), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2275), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1060), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1853), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59685,10 +60718,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -59696,38 +60728,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [6904] = 7, + [7552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - STATE(828), 1, + STATE(872), 1, sym_string, - ACTIONS(2198), 2, + ACTIONS(2091), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2196), 9, + ACTIONS(2089), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -59737,9 +60755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 36, + ACTIONS(1127), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -59748,9 +60767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -59773,22 +60791,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [6972] = 7, + [7620] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(1831), 1, anon_sym_DQUOTE, - STATE(930), 1, + STATE(873), 1, sym_string, - ACTIONS(2204), 2, + ACTIONS(2309), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1139), 3, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2200), 9, + ACTIONS(2307), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -59798,7 +60815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 36, + ACTIONS(1137), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -59807,6 +60824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -59834,22 +60852,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [7040] = 7, + [7688] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(1831), 1, anon_sym_DQUOTE, - STATE(930), 1, + STATE(873), 1, sym_string, - ACTIONS(2204), 2, + ACTIONS(2309), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1135), 3, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2200), 9, + ACTIONS(2307), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -59859,7 +60876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 36, + ACTIONS(1127), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -59868,6 +60885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -59895,127 +60913,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [7108] = 21, + [7756] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, + ACTIONS(2204), 1, anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(2206), 1, sym__special_character, - ACTIONS(2214), 1, + ACTIONS(2208), 1, anon_sym_DQUOTE, - ACTIONS(2216), 1, + ACTIONS(2210), 1, aux_sym_number_token1, - ACTIONS(2218), 1, + ACTIONS(2212), 1, aux_sym_number_token2, - ACTIONS(2220), 1, + ACTIONS(2214), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2222), 1, + ACTIONS(2216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2224), 1, + ACTIONS(2218), 1, anon_sym_BQUOTE, - ACTIONS(2226), 1, + ACTIONS(2220), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2230), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2232), 1, + ACTIONS(2226), 1, sym_test_operator, - ACTIONS(2234), 1, + ACTIONS(2228), 1, sym__brace_start, - STATE(1265), 1, - aux_sym__literal_repeat1, - ACTIONS(1935), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2208), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2228), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(491), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2206), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1037), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1931), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7204] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1875), 1, - sym_file_descriptor, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(2242), 1, - sym__special_character, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - ACTIONS(2246), 1, - aux_sym_number_token1, - ACTIONS(2248), 1, - aux_sym_number_token2, - ACTIONS(2250), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2254), 1, - anon_sym_BQUOTE, - ACTIONS(2256), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2260), 1, + ACTIONS(2311), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2262), 1, - sym_test_operator, - ACTIONS(2264), 1, - sym__brace_start, - STATE(1250), 1, + STATE(1284), 1, aux_sym__literal_repeat1, - ACTIONS(2238), 2, + ACTIONS(2202), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, + ACTIONS(2222), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(490), 2, + STATE(498), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2236), 3, + ACTIONS(1825), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2200), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1031), 9, + STATE(964), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60025,7 +60969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1849), 20, + ACTIONS(1823), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60033,7 +60977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -60043,23 +60986,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [7300] = 7, + [7852] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, STATE(872), 1, sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2268), 2, + ACTIONS(2091), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2266), 9, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2089), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60069,21 +61013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 37, + ACTIONS(1137), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -60106,53 +61049,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [7368] = 21, + [7920] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, + ACTIONS(2319), 1, anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(2322), 1, sym__special_character, - ACTIONS(2214), 1, + ACTIONS(2325), 1, anon_sym_DQUOTE, - ACTIONS(2216), 1, + ACTIONS(2328), 1, aux_sym_number_token1, - ACTIONS(2218), 1, + ACTIONS(2331), 1, aux_sym_number_token2, - ACTIONS(2220), 1, + ACTIONS(2334), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2222), 1, + ACTIONS(2337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2224), 1, + ACTIONS(2340), 1, anon_sym_BQUOTE, - ACTIONS(2226), 1, + ACTIONS(2343), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2232), 1, + ACTIONS(2349), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2352), 1, sym_test_operator, - ACTIONS(2234), 1, + ACTIONS(2355), 1, sym__brace_start, - ACTIONS(2270), 1, - aux_sym__simple_variable_name_token1, - STATE(1265), 1, + STATE(1284), 1, aux_sym__literal_repeat1, - ACTIONS(1875), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2208), 2, + ACTIONS(2316), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2228), 2, + ACTIONS(2346), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(482), 2, + STATE(498), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2206), 3, + ACTIONS(1954), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2313), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1037), 9, + STATE(964), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60162,7 +61105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1849), 19, + ACTIONS(1952), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60179,24 +61122,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [7464] = 7, + [8016] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2360), 1, anon_sym_DQUOTE, - STATE(842), 1, + STATE(1196), 1, sym_string, - ACTIONS(2085), 2, + ACTIONS(2362), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 4, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2083), 9, + ACTIONS(2358), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60206,20 +61149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 36, + ACTIONS(1127), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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, @@ -60242,21 +61184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [7532] = 7, + [8083] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2360), 1, anon_sym_DQUOTE, - STATE(872), 1, + STATE(1196), 1, sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2268), 2, + ACTIONS(2362), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2266), 9, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2358), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60266,7 +61209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 37, + ACTIONS(1137), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -60275,11 +61218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60303,170 +61244,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [7600] = 7, + [8150] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(2242), 1, anon_sym_DQUOTE, - STATE(842), 1, - sym_string, - ACTIONS(2085), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2083), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [7668] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(845), 21, - sym_file_descriptor, - sym_variable_name, - 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_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(591), 31, - 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_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [7728] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1935), 1, - sym_file_descriptor, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(2242), 1, - sym__special_character, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - ACTIONS(2246), 1, + ACTIONS(2245), 1, aux_sym_number_token1, ACTIONS(2248), 1, aux_sym_number_token2, - ACTIONS(2250), 1, + ACTIONS(2251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(2254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2257), 1, anon_sym_BQUOTE, - ACTIONS(2256), 1, + ACTIONS(2260), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2262), 1, - sym_test_operator, - ACTIONS(2264), 1, - sym__brace_start, ACTIONS(2272), 1, + sym__brace_start, + ACTIONS(2367), 1, + sym__special_character, + ACTIONS(2370), 1, aux_sym__simple_variable_name_token1, - STATE(1250), 1, + ACTIONS(2373), 1, + sym_test_operator, + STATE(1285), 1, aux_sym__literal_repeat1, - ACTIONS(2238), 2, + ACTIONS(1954), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2233), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, + ACTIONS(2263), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(492), 2, + STATE(501), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2236), 3, + ACTIONS(2364), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1031), 9, + STATE(1177), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -60476,7 +61299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1931), 20, + ACTIONS(1952), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60484,7 +61307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -60494,65 +61316,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [7824] = 21, + [8245] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_DOLLAR, - ACTIONS(2283), 1, - sym__special_character, - ACTIONS(2286), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - ACTIONS(2289), 1, - aux_sym_number_token1, - ACTIONS(2292), 1, - aux_sym_number_token2, - ACTIONS(2295), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2301), 1, - anon_sym_BQUOTE, - ACTIONS(2304), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2310), 1, + STATE(985), 1, + sym_string, + ACTIONS(2378), 2, aux_sym__simple_variable_name_token1, - ACTIONS(2313), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(2316), 1, sym__brace_start, - STATE(1265), 1, - aux_sym__literal_repeat1, - ACTIONS(1981), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2277), 2, + ACTIONS(2376), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 34, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2307), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(491), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2274), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1037), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1943), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -60560,6 +61352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -60572,93 +61365,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [7920] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1981), 1, - sym_file_descriptor, - ACTIONS(2325), 1, - anon_sym_DOLLAR, - ACTIONS(2328), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(2331), 1, - anon_sym_DQUOTE, - ACTIONS(2334), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2337), 1, aux_sym_number_token2, - ACTIONS(2340), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2343), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2346), 1, anon_sym_BQUOTE, - ACTIONS(2349), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2355), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2358), 1, - sym_test_operator, - ACTIONS(2361), 1, - sym__brace_start, - STATE(1250), 1, - aux_sym__literal_repeat1, - ACTIONS(2322), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2352), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(492), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2319), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1031), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1943), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8016] = 5, + [8312] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2368), 2, + ACTIONS(2384), 2, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(2370), 2, + ACTIONS(2386), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2366), 21, + ACTIONS(2382), 21, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -60677,8 +61409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2364), 26, + ACTIONS(2380), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -60705,20 +61436,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [8079] = 7, + [8375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - STATE(934), 1, + STATE(985), 1, sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2374), 2, + ACTIONS(2378), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2372), 9, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2376), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60728,7 +61461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 36, + ACTIONS(1127), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -60737,10 +61470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60764,103 +61496,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [8146] = 7, + [8442] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_DQUOTE, - STATE(1100), 1, - sym_string, - ACTIONS(2380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(1703), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1707), 1, + anon_sym_DQUOTE, + ACTIONS(1709), 1, aux_sym_number_token1, + ACTIONS(1711), 1, aux_sym_number_token2, + ACTIONS(1713), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1717), 1, anon_sym_BQUOTE, + ACTIONS(1719), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1729), 1, + sym__brace_start, + ACTIONS(2390), 1, + sym__special_character, + ACTIONS(2392), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2394), 1, + sym_variable_name, + ACTIONS(2396), 1, + sym_test_operator, + STATE(1096), 1, + aux_sym__literal_repeat1, + STATE(3950), 1, + sym_subscript, + ACTIONS(1357), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2388), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [8213] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_DQUOTE, - STATE(1100), 1, + STATE(509), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1326), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1355), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -60868,38 +61571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [8280] = 7, + [8541] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1793), 1, anon_sym_DQUOTE, - STATE(1033), 1, + STATE(957), 1, sym_string, - ACTIONS(2384), 2, + ACTIONS(2400), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1139), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2382), 9, + ts_builtin_sym_end, + ACTIONS(2398), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60909,7 +61598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 35, + ACTIONS(1137), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -60918,7 +61607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -60944,23 +61632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [8347] = 7, + [8608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 1, + ACTIONS(2105), 1, anon_sym_DQUOTE, - STATE(1227), 1, + STATE(972), 1, sym_string, - ACTIONS(2390), 2, + ACTIONS(2404), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 4, + ACTIONS(1135), 3, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2386), 9, + ACTIONS(2402), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -60970,7 +61656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 34, + ACTIONS(1127), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -60981,6 +61667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61004,23 +61692,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [8414] = 7, + [8675] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 1, + ACTIONS(1793), 1, anon_sym_DQUOTE, - STATE(1227), 1, + STATE(957), 1, sym_string, - ACTIONS(2390), 2, + ACTIONS(2400), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 4, + ACTIONS(1135), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2386), 9, + ACTIONS(2398), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -61030,7 +61718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 34, + ACTIONS(1127), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -61064,43 +61752,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [8481] = 7, + [8742] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1703), 1, + anon_sym_DOLLAR, + ACTIONS(1707), 1, anon_sym_DQUOTE, - STATE(1033), 1, - sym_string, - ACTIONS(2384), 2, + ACTIONS(1709), 1, + aux_sym_number_token1, + ACTIONS(1711), 1, + aux_sym_number_token2, + ACTIONS(1713), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1715), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1717), 1, + anon_sym_BQUOTE, + ACTIONS(1719), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1729), 1, + sym__brace_start, + ACTIONS(2390), 1, + sym__special_character, + ACTIONS(2394), 1, + sym_variable_name, + ACTIONS(2396), 1, + sym_test_operator, + ACTIONS(2406), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + STATE(1096), 1, + aux_sym__literal_repeat1, + STATE(3950), 1, + sym_subscript, + ACTIONS(1325), 2, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2382), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(1701), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2388), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(519), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1326), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1323), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61108,39 +61827,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [8548] = 7, + [8841] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(2105), 1, anon_sym_DQUOTE, - STATE(1029), 1, + STATE(972), 1, sym_string, - ACTIONS(2394), 2, + ACTIONS(2404), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 4, + ACTIONS(1139), 3, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2392), 9, + ACTIONS(2402), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -61150,7 +61852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 34, + ACTIONS(1137), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -61161,6 +61863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61184,57 +61888,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [8615] = 23, + [8908] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1417), 1, - sym_file_descriptor, - ACTIONS(1593), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(2283), 1, anon_sym_DQUOTE, - ACTIONS(1599), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1607), 1, + ACTIONS(2293), 1, anon_sym_BQUOTE, - ACTIONS(1609), 1, + ACTIONS(2295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1619), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(2398), 1, + ACTIONS(2410), 1, sym__special_character, - ACTIONS(2400), 1, + ACTIONS(2412), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2402), 1, + ACTIONS(2414), 1, sym_test_operator, - ACTIONS(2404), 1, - sym_variable_name, - STATE(1184), 1, + STATE(1285), 1, aux_sym__literal_repeat1, - STATE(3969), 1, - sym_subscript, - ACTIONS(1591), 2, + ACTIONS(1825), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, + ACTIONS(2297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2396), 3, + STATE(501), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2408), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(506), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1328), 9, + STATE(1177), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61244,50 +61943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1413), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [8714] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1745), 1, - anon_sym_DQUOTE, - STATE(1029), 1, - sym_string, - ACTIONS(2394), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2392), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(1823), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61304,93 +61960,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [8781] = 5, + [9003] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2368), 1, + ACTIONS(2384), 1, anon_sym_SEMI_SEMI, - ACTIONS(2370), 3, + ACTIONS(2386), 3, anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2366), 21, + ACTIONS(2382), 21, sym_file_descriptor, sym_variable_name, - 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_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_test_operator, - ACTIONS(2364), 26, - 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_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [8844] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2408), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2406), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2366), 21, - sym_file_descriptor, - sym_variable_name, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -61409,8 +61993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2364), 26, + ACTIONS(2380), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -61437,56 +62020,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [8907] = 23, + [9066] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 1, - sym_file_descriptor, - ACTIONS(1627), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR, - ACTIONS(1633), 1, + ACTIONS(2283), 1, anon_sym_DQUOTE, - ACTIONS(1636), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(1639), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(1642), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1645), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1648), 1, + ACTIONS(2293), 1, anon_sym_BQUOTE, - ACTIONS(1651), 1, + ACTIONS(2295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1666), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(2413), 1, + ACTIONS(2410), 1, sym__special_character, + ACTIONS(2414), 1, + sym_test_operator, ACTIONS(2416), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2419), 1, - sym_test_operator, - ACTIONS(2422), 1, - sym_variable_name, - STATE(1184), 1, + STATE(1285), 1, aux_sym__literal_repeat1, - STATE(3969), 1, - sym_subscript, - ACTIONS(1624), 2, + ACTIONS(1855), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1654), 2, + ACTIONS(2297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2410), 3, + STATE(511), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2408), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(506), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1328), 9, + STATE(1177), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61496,7 +62075,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1331), 16, + ACTIONS(1853), 18, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -61504,6 +62084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61511,20 +62092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [9006] = 5, + anon_sym_AMP, + [9161] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2406), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2408), 2, + ACTIONS(2418), 2, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(2366), 21, + ACTIONS(2420), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2382), 21, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -61543,8 +62125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2364), 26, + ACTIONS(2380), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -61571,59 +62152,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [9069] = 20, + [9224] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1935), 1, - sym_file_descriptor, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(2244), 1, + ACTIONS(2424), 1, anon_sym_DQUOTE, - ACTIONS(2246), 1, - aux_sym_number_token1, - ACTIONS(2248), 1, - aux_sym_number_token2, - ACTIONS(2250), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2256), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(2427), 1, - sym__special_character, - ACTIONS(2429), 1, + STATE(1093), 1, + sym_string, + ACTIONS(2426), 2, aux_sym__simple_variable_name_token1, - ACTIONS(2431), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - STATE(1250), 1, - aux_sym__literal_repeat1, - ACTIONS(2238), 2, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2422), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 33, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(513), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2425), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1222), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1931), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61643,202 +62199,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [9162] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1407), 1, - sym_file_descriptor, - ACTIONS(1593), 1, - anon_sym_DOLLAR, - ACTIONS(1597), 1, - anon_sym_DQUOTE, - ACTIONS(1599), 1, - aux_sym_number_token1, - ACTIONS(1601), 1, - aux_sym_number_token2, - ACTIONS(1603), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1607), 1, - anon_sym_BQUOTE, - ACTIONS(1609), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1619), 1, - sym__brace_start, - ACTIONS(2398), 1, - sym__special_character, - ACTIONS(2402), 1, - sym_test_operator, - ACTIONS(2404), 1, - sym_variable_name, - ACTIONS(2433), 1, - aux_sym__simple_variable_name_token1, - STATE(1184), 1, - aux_sym__literal_repeat1, - STATE(3969), 1, - sym_subscript, - ACTIONS(1591), 2, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1611), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2396), 3, + sym__special_character, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(502), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - 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(1381), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [9261] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1935), 1, - sym_file_descriptor, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - ACTIONS(2246), 1, aux_sym_number_token1, - ACTIONS(2248), 1, aux_sym_number_token2, - ACTIONS(2250), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2254), 1, anon_sym_BQUOTE, - ACTIONS(2256), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(2427), 1, - sym__special_character, - ACTIONS(2429), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2431), 1, - sym_test_operator, - STATE(1250), 1, - aux_sym__literal_repeat1, - ACTIONS(2238), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(513), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2425), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1222), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1931), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [9356] = 21, + [9291] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - sym_file_descriptor, - ACTIONS(2240), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR, - ACTIONS(2244), 1, + ACTIONS(2283), 1, anon_sym_DQUOTE, - ACTIONS(2246), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(2250), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2254), 1, - anon_sym_BQUOTE, - ACTIONS(2256), 1, + ACTIONS(2295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2264), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(2427), 1, + ACTIONS(2410), 1, sym__special_character, - ACTIONS(2431), 1, + ACTIONS(2414), 1, sym_test_operator, - ACTIONS(2435), 1, + ACTIONS(2428), 1, aux_sym__simple_variable_name_token1, - STATE(1250), 1, + STATE(1285), 1, aux_sym__literal_repeat1, - ACTIONS(2238), 2, + ACTIONS(1855), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, + ACTIONS(2297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(510), 2, + STATE(518), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2425), 3, + ACTIONS(2408), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1222), 9, + STATE(1177), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61848,7 +62265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1849), 19, + ACTIONS(1853), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61865,23 +62282,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [9451] = 7, + anon_sym_BQUOTE, + [9384] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(2424), 1, anon_sym_DQUOTE, - STATE(934), 1, + STATE(1093), 1, sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2374), 2, + ACTIONS(2426), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2372), 9, + ACTIONS(1139), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -61891,7 +62311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 36, + ACTIONS(1137), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -61902,8 +62322,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -61927,52 +62345,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [9518] = 21, + [9451] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, - sym_file_descriptor, - ACTIONS(2325), 1, + ACTIONS(2279), 1, anon_sym_DOLLAR, - ACTIONS(2331), 1, + ACTIONS(2283), 1, anon_sym_DQUOTE, - ACTIONS(2334), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(2337), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(2340), 1, + ACTIONS(2289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2343), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2346), 1, - anon_sym_BQUOTE, - ACTIONS(2349), 1, + ACTIONS(2295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2361), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(2440), 1, + ACTIONS(2410), 1, sym__special_character, - ACTIONS(2443), 1, + ACTIONS(2412), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2446), 1, + ACTIONS(2414), 1, sym_test_operator, - STATE(1250), 1, + STATE(1285), 1, aux_sym__literal_repeat1, - ACTIONS(2322), 2, + ACTIONS(1825), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2352), 2, + ACTIONS(2297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(513), 2, + STATE(501), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2437), 3, + ACTIONS(2408), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1222), 9, + STATE(1177), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -61982,7 +62398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1943), 19, + ACTIONS(1823), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61999,52 +62415,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [9613] = 20, + anon_sym_BQUOTE, + [9544] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, - sym_file_descriptor, - ACTIONS(2240), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(2244), 1, + ACTIONS(1663), 1, anon_sym_DQUOTE, - ACTIONS(2246), 1, + ACTIONS(1666), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(1669), 1, aux_sym_number_token2, - ACTIONS(2250), 1, + ACTIONS(1672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, + ACTIONS(1675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2256), 1, + ACTIONS(1678), 1, + anon_sym_BQUOTE, + ACTIONS(1681), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2264), 1, + ACTIONS(1696), 1, sym__brace_start, - ACTIONS(2427), 1, + ACTIONS(2433), 1, sym__special_character, - ACTIONS(2431), 1, - sym_test_operator, - ACTIONS(2449), 1, + ACTIONS(2436), 1, aux_sym__simple_variable_name_token1, - STATE(1250), 1, + ACTIONS(2439), 1, + sym_variable_name, + ACTIONS(2442), 1, + sym_test_operator, + STATE(1096), 1, aux_sym__literal_repeat1, - ACTIONS(2238), 2, + STATE(3950), 1, + sym_subscript, + ACTIONS(1369), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1654), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, + ACTIONS(1684), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(508), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2425), 3, + ACTIONS(2430), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1222), 9, + STATE(519), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1326), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62054,8 +62478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1849), 20, - anon_sym_SEMI, + ACTIONS(1367), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -62063,7 +62486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62071,59 +62493,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, + [9643] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2418), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2420), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2382), 21, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [9706] = 23, - ACTIONS(3), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2380), 26, + 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_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [9706] = 33, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(63), 1, sym_comment, ACTIONS(409), 1, anon_sym_DOLLAR, + ACTIONS(411), 1, + sym__special_character, + ACTIONS(413), 1, + anon_sym_DQUOTE, ACTIONS(417), 1, aux_sym_number_token1, ACTIONS(419), 1, aux_sym_number_token2, + ACTIONS(421), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1019), 1, - sym__special_character, - ACTIONS(1531), 1, - sym_file_descriptor, - ACTIONS(2002), 1, - anon_sym_DQUOTE, - ACTIONS(2004), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2455), 1, + ACTIONS(433), 1, + sym_variable_name, + ACTIONS(435), 1, sym_test_operator, - STATE(517), 1, - aux_sym_command_repeat2, - STATE(1021), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2445), 1, + sym_word, + STATE(481), 1, + sym_command_name, + STATE(814), 1, + aux_sym_command_repeat1, + STATE(1044), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1134), 1, sym_concatenation, - ACTIONS(1998), 2, + STATE(1391), 1, + sym_variable_assignment, + STATE(2409), 1, + sym_file_redirect, + STATE(2768), 1, + sym_command, + STATE(3995), 1, + sym_subscript, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2453), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2451), 3, + ACTIONS(415), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1282), 9, + ACTIONS(429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2770), 2, + sym_subshell, + sym_test_command, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(809), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62133,78 +62637,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1529), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [9804] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2457), 1, - sym_word, - ACTIONS(2461), 1, + [9824] = 33, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(2463), 1, + ACTIONS(43), 1, sym__special_character, - ACTIONS(2465), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(2469), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(2471), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(2473), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2475), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2477), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(2479), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2483), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2485), 1, - sym_test_operator, - ACTIONS(2487), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(67), 1, sym_variable_name, - ACTIONS(2489), 1, + ACTIONS(69), 1, + sym_test_operator, + ACTIONS(71), 1, sym__brace_start, - STATE(1699), 1, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2447), 1, + sym_word, + STATE(462), 1, + sym_command_name, + STATE(865), 1, + aux_sym_command_repeat1, + STATE(930), 1, aux_sym__literal_repeat1, - STATE(4006), 1, + STATE(1159), 1, + sym_concatenation, + STATE(1371), 1, + sym_variable_assignment, + STATE(2409), 1, + sym_file_redirect, + STATE(2768), 1, + sym_command, + STATE(3947), 1, sym_subscript, - ACTIONS(2459), 2, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2467), 2, + ACTIONS(47), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2481), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(525), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1381), 5, - anon_sym_LT_LT, + STATE(2770), 2, + sym_subshell, + sym_test_command, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1435), 9, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(720), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62214,77 +62722,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1407), 11, + [9942] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_DQUOTE, + STATE(1244), 1, + sym_string, + ACTIONS(2451), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2449), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [9904] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 1, - anon_sym_DOLLAR, - ACTIONS(417), 1, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1019), 1, - sym__special_character, - ACTIONS(1535), 1, - sym_file_descriptor, - ACTIONS(2002), 1, - anon_sym_DQUOTE, - ACTIONS(2004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(2008), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2455), 1, - sym_test_operator, - STATE(529), 1, - aux_sym_command_repeat2, - STATE(1021), 1, - aux_sym__literal_repeat1, - STATE(1224), 1, - sym_concatenation, - ACTIONS(1998), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2453), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2451), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1282), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [10008] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + anon_sym_DQUOTE, + STATE(1215), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1533), 16, + ACTIONS(2455), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2453), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -62292,6 +62816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -62301,21 +62826,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [10002] = 7, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [10074] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - STATE(1033), 1, + STATE(985), 1, sym_string, - ACTIONS(2384), 2, + ACTIONS(2378), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 4, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2382), 9, + ACTIONS(2376), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -62325,7 +62865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 34, + ACTIONS(1127), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -62359,253 +62899,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [10068] = 33, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, + [10140] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, - anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(421), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(427), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1019), 1, - sym__special_character, - ACTIONS(1023), 1, - sym_test_operator, - ACTIONS(1027), 1, - sym_variable_name, - ACTIONS(1315), 1, + STATE(985), 1, + sym_string, + ACTIONS(2378), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, sym_file_descriptor, - ACTIONS(2491), 1, - sym_word, - STATE(515), 1, - sym_command_name, - STATE(908), 1, - aux_sym_command_repeat1, - STATE(1052), 1, - aux_sym__literal_repeat1, - STATE(1238), 1, - sym_concatenation, - STATE(1334), 1, - sym_variable_assignment, - STATE(2256), 1, - sym_file_redirect, - STATE(2849), 1, - sym_command, - STATE(3976), 1, - sym_subscript, - ACTIONS(389), 2, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2376), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 33, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1021), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2861), 2, - sym_subshell, - sym_test_command, - ACTIONS(1311), 3, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(1251), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [10186] = 33, - ACTIONS(63), 1, - sym_comment, - ACTIONS(262), 1, - anon_sym_LBRACK, - ACTIONS(266), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(302), 1, - sym_variable_name, - ACTIONS(955), 1, - anon_sym_LPAREN, - ACTIONS(959), 1, - anon_sym_DOLLAR, - ACTIONS(961), 1, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(963), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(969), 1, aux_sym_number_token2, - ACTIONS(971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(981), 1, - sym_test_operator, - ACTIONS(985), 1, - sym__brace_start, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2493), 1, - sym_word, - STATE(549), 1, - sym_command_name, - STATE(885), 1, - aux_sym_command_repeat1, - STATE(1558), 1, - aux_sym__literal_repeat1, - STATE(1724), 1, - sym_concatenation, - STATE(1861), 1, - sym_variable_assignment, - STATE(2256), 1, - sym_file_redirect, - STATE(3195), 1, - sym_command, - STATE(3947), 1, - sym_subscript, - ACTIONS(949), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(965), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(979), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3170), 2, - sym_subshell, - sym_test_command, - ACTIONS(1311), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1308), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [10304] = 33, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + sym_word, + [10206] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2457), 1, + sym_word, + ACTIONS(2461), 1, anon_sym_DOLLAR, - ACTIONS(43), 1, + ACTIONS(2463), 1, sym__special_character, - ACTIONS(45), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(2469), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(2471), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(2473), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(2475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(2477), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(2479), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(69), 1, + ACTIONS(2483), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2485), 1, sym_variable_name, - ACTIONS(71), 1, + ACTIONS(2487), 1, + sym_test_operator, + ACTIONS(2489), 1, sym__brace_start, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2495), 1, - sym_word, - STATE(438), 1, - sym_command_name, - STATE(841), 1, - aux_sym_command_repeat1, - STATE(969), 1, + STATE(1714), 1, aux_sym__literal_repeat1, - STATE(1202), 1, - sym_concatenation, - STATE(1304), 1, - sym_variable_assignment, - STATE(2256), 1, - sym_file_redirect, - STATE(2849), 1, - sym_command, - STATE(3985), 1, + STATE(4007), 1, sym_subscript, - ACTIONS(13), 2, + ACTIONS(2459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 2, + ACTIONS(2467), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(61), 2, + ACTIONS(2481), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2861), 2, - sym_subshell, - sym_test_command, - ACTIONS(1311), 3, + STATE(529), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1323), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(740), 9, + STATE(1422), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62615,21 +63022,34 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10422] = 7, + ACTIONS(1325), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [10306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(2360), 1, anon_sym_DQUOTE, - STATE(1033), 1, + STATE(1196), 1, sym_string, - ACTIONS(2384), 2, + ACTIONS(2362), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1139), 4, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2382), 9, + ACTIONS(2358), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -62639,7 +63059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 34, + ACTIONS(1137), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -62673,83 +63093,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [10488] = 33, + [10372] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, - ACTIONS(483), 1, - anon_sym_LBRACK, - ACTIONS(485), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(709), 1, + ACTIONS(2491), 1, + sym_word, + ACTIONS(2497), 1, anon_sym_DOLLAR, - ACTIONS(711), 1, + ACTIONS(2500), 1, sym__special_character, - ACTIONS(713), 1, + ACTIONS(2503), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(2509), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(2512), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(2515), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(2518), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(2521), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(2524), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(731), 1, - sym_test_operator, - ACTIONS(735), 1, + ACTIONS(2530), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2533), 1, sym_variable_name, - ACTIONS(737), 1, + ACTIONS(2536), 1, + sym_test_operator, + ACTIONS(2539), 1, sym__brace_start, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2497), 1, - sym_word, - STATE(427), 1, - sym_command_name, - STATE(878), 1, - aux_sym_command_repeat1, - STATE(882), 1, + STATE(1714), 1, aux_sym__literal_repeat1, - STATE(955), 1, - sym_concatenation, - STATE(1243), 1, - sym_variable_assignment, - STATE(2256), 1, - sym_file_redirect, - STATE(2858), 1, - sym_command, - STATE(3945), 1, + STATE(4007), 1, sym_subscript, - ACTIONS(693), 2, + ACTIONS(2494), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(715), 2, + ACTIONS(2506), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(729), 2, + ACTIONS(2527), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2859), 2, - sym_subshell, - sym_test_command, - ACTIONS(1311), 3, + STATE(529), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1367), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(1369), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [10472] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1017), 1, + sym__special_character, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2005), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2013), 1, + sym__bare_dollar, + ACTIONS(2546), 1, + sym_test_operator, + STATE(532), 1, + aux_sym_command_repeat2, + STATE(1056), 1, + aux_sym__literal_repeat1, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1577), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2009), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2542), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1283), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1575), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(1309), 5, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [10570] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1017), 1, + sym__special_character, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2005), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2013), 1, + sym__bare_dollar, + ACTIONS(2546), 1, + sym_test_operator, + STATE(534), 1, + aux_sym_command_repeat2, + STATE(1056), 1, + aux_sym__literal_repeat1, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1505), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2009), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2542), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1283), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1501), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_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(603), 9, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [10668] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1017), 1, + sym__special_character, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2005), 1, + anon_sym_BQUOTE, + ACTIONS(2007), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2013), 1, + sym__bare_dollar, + ACTIONS(2546), 1, + sym_test_operator, + STATE(540), 1, + aux_sym_command_repeat2, + STATE(1056), 1, + aux_sym__literal_repeat1, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1571), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2009), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2542), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1283), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62759,7 +63378,23 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10606] = 33, + ACTIONS(1569), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [10766] = 33, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, @@ -62770,8 +63405,6 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(411), 1, - sym__special_character, ACTIONS(413), 1, anon_sym_DQUOTE, ACTIONS(417), 1, @@ -62786,55 +63419,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(431), 1, - sym_test_operator, - ACTIONS(435), 1, - sym_variable_name, ACTIONS(437), 1, sym__brace_start, - ACTIONS(1315), 1, + ACTIONS(1017), 1, + sym__special_character, + ACTIONS(1023), 1, + sym_variable_name, + ACTIONS(1025), 1, + sym_test_operator, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(2499), 1, + ACTIONS(2548), 1, sym_word, - STATE(477), 1, + STATE(530), 1, sym_command_name, - STATE(821), 1, + STATE(877), 1, aux_sym_command_repeat1, - STATE(1052), 1, + STATE(1044), 1, aux_sym__literal_repeat1, - STATE(1238), 1, + STATE(1134), 1, sym_concatenation, - STATE(1334), 1, + STATE(1391), 1, sym_variable_assignment, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(2849), 1, + STATE(2768), 1, sym_command, - STATE(3948), 1, + STATE(3972), 1, sym_subscript, ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(415), 2, - sym_raw_string, - sym_ansi_c_string, ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2861), 2, + ACTIONS(1019), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2770), 2, sym_subshell, sym_test_command, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(808), 9, + STATE(1278), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62844,61 +63479,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10724] = 24, - ACTIONS(63), 1, + [10884] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - sym_word, - ACTIONS(2461), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(2463), 1, - sym__special_character, - ACTIONS(2465), 1, - anon_sym_DQUOTE, - ACTIONS(2469), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(2471), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(2473), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2475), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2477), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1017), 1, + sym__special_character, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + ACTIONS(2003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2005), 1, anon_sym_BQUOTE, - ACTIONS(2479), 1, + ACTIONS(2007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2485), 1, + ACTIONS(2013), 1, + sym__bare_dollar, + ACTIONS(2546), 1, sym_test_operator, - ACTIONS(2487), 1, - sym_variable_name, - ACTIONS(2489), 1, - sym__brace_start, - ACTIONS(2501), 1, - aux_sym__simple_variable_name_token1, - STATE(1699), 1, + STATE(540), 1, + aux_sym_command_repeat2, + STATE(1056), 1, aux_sym__literal_repeat1, - STATE(4006), 1, - sym_subscript, - ACTIONS(2459), 2, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1581), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1997), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2467), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2481), 2, + ACTIONS(2009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(534), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1413), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1435), 9, + ACTIONS(2544), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2542), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1283), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -62908,94 +63538,98 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1417), 11, - sym_file_descriptor, + ACTIONS(1579), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, - [10824] = 33, + [10982] = 33, ACTIONS(63), 1, sym_comment, - ACTIONS(461), 1, - anon_sym_LPAREN, - ACTIONS(483), 1, + ACTIONS(262), 1, anon_sym_LBRACK, - ACTIONS(485), 1, + ACTIONS(266), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(491), 1, + ACTIONS(300), 1, + sym_variable_name, + ACTIONS(971), 1, + anon_sym_LPAREN, + ACTIONS(975), 1, anon_sym_DOLLAR, - ACTIONS(493), 1, + ACTIONS(977), 1, sym__special_character, - ACTIONS(495), 1, + ACTIONS(979), 1, anon_sym_DQUOTE, - ACTIONS(499), 1, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(501), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(503), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(505), 1, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(507), 1, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(509), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(513), 1, + ACTIONS(999), 1, sym_test_operator, - ACTIONS(517), 1, - sym_variable_name, - ACTIONS(519), 1, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(1315), 1, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(2503), 1, + ACTIONS(2550), 1, sym_word, - STATE(421), 1, + STATE(546), 1, sym_command_name, - STATE(702), 1, + STATE(897), 1, + aux_sym_command_repeat1, + STATE(1547), 1, aux_sym__literal_repeat1, - STATE(857), 1, + STATE(1749), 1, sym_concatenation, - STATE(866), 1, - aux_sym_command_repeat1, - STATE(1128), 1, + STATE(1870), 1, sym_variable_assignment, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(2858), 1, + STATE(3199), 1, sym_command, - STATE(3982), 1, + STATE(3974), 1, sym_subscript, - ACTIONS(455), 2, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(497), 2, + ACTIONS(981), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(511), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2859), 2, + STATE(3188), 2, sym_subshell, sym_test_command, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(598), 9, + STATE(1330), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63005,55 +63639,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10942] = 23, - ACTIONS(3), 1, + [11100] = 33, + ACTIONS(63), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(461), 1, + anon_sym_LPAREN, + ACTIONS(483), 1, + anon_sym_LBRACK, + ACTIONS(485), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(491), 1, anon_sym_DOLLAR, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1019), 1, + ACTIONS(493), 1, sym__special_character, - ACTIONS(1439), 1, - sym_file_descriptor, - ACTIONS(2002), 1, + ACTIONS(495), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(499), 1, + aux_sym_number_token1, + ACTIONS(501), 1, + aux_sym_number_token2, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2455), 1, + ACTIONS(515), 1, + sym_variable_name, + ACTIONS(517), 1, sym_test_operator, - STATE(529), 1, - aux_sym_command_repeat2, - STATE(1021), 1, + ACTIONS(519), 1, + sym__brace_start, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2552), 1, + sym_word, + STATE(429), 1, + sym_command_name, + STATE(707), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(830), 1, sym_concatenation, - ACTIONS(1998), 2, + STATE(837), 1, + aux_sym_command_repeat1, + STATE(1104), 1, + sym_variable_assignment, + STATE(2409), 1, + sym_file_redirect, + STATE(2806), 1, + sym_command, + STATE(4022), 1, + sym_subscript, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2453), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2451), 3, + ACTIONS(497), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1282), 9, + ACTIONS(511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2764), 2, + sym_subshell, + sym_test_command, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(586), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63063,38 +63724,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1423), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [11040] = 7, + [11218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2208), 1, anon_sym_DQUOTE, - STATE(1100), 1, + STATE(1215), 1, sym_string, - ACTIONS(2380), 2, + ACTIONS(2455), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1139), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2376), 9, + ts_builtin_sym_end, + ACTIONS(2453), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -63104,7 +63749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 34, + ACTIONS(1137), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -63138,56 +63783,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [11106] = 23, - ACTIONS(3), 1, + [11284] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1487), 1, - sym_file_descriptor, - ACTIONS(2042), 1, + ACTIONS(2457), 1, + sym_word, + ACTIONS(2461), 1, anon_sym_DOLLAR, - ACTIONS(2048), 1, + ACTIONS(2463), 1, + sym__special_character, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2051), 1, + ACTIONS(2469), 1, aux_sym_number_token1, - ACTIONS(2054), 1, + ACTIONS(2471), 1, aux_sym_number_token2, - ACTIONS(2057), 1, + ACTIONS(2473), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2060), 1, + ACTIONS(2475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2063), 1, + ACTIONS(2477), 1, anon_sym_BQUOTE, - ACTIONS(2066), 1, + ACTIONS(2479), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2075), 1, - sym__bare_dollar, - ACTIONS(2078), 1, - sym__brace_start, - ACTIONS(2511), 1, - sym__special_character, - ACTIONS(2514), 1, + ACTIONS(2485), 1, + sym_variable_name, + ACTIONS(2487), 1, sym_test_operator, - STATE(529), 1, - aux_sym_command_repeat2, - STATE(1021), 1, + ACTIONS(2489), 1, + sym__brace_start, + ACTIONS(2554), 1, + aux_sym__simple_variable_name_token1, + STATE(1714), 1, aux_sym__literal_repeat1, - STATE(1224), 1, - sym_concatenation, - ACTIONS(2036), 2, + STATE(4007), 1, + sym_subscript, + ACTIONS(2459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2069), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2508), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2505), 3, + ACTIONS(2467), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1282), 9, + ACTIONS(2481), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(527), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1355), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1422), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63197,38 +63847,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1449), 16, + ACTIONS(1357), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [11204] = 7, + [11384] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, + ACTIONS(2283), 1, anon_sym_DQUOTE, - STATE(1179), 1, + STATE(1244), 1, sym_string, - ACTIONS(2519), 2, + ACTIONS(2451), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 3, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2517), 9, + ACTIONS(2449), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -63238,7 +63883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 34, + ACTIONS(1127), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -63247,6 +63892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -63272,34 +63918,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [11270] = 7, + [11450] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(1907), 1, + anon_sym_DOLLAR, + ACTIONS(1913), 1, anon_sym_DQUOTE, - STATE(1100), 1, - sym_string, - ACTIONS(2380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1916), 1, + aux_sym_number_token1, + ACTIONS(1919), 1, + aux_sym_number_token2, + ACTIONS(1922), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1928), 1, + anon_sym_BQUOTE, + ACTIONS(1931), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1940), 1, + sym__bare_dollar, + ACTIONS(1943), 1, sym__brace_start, - ACTIONS(2376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 34, + ACTIONS(2562), 1, + sym__special_character, + ACTIONS(2565), 1, + sym_test_operator, + STATE(540), 1, + aux_sym_command_repeat2, + STATE(1056), 1, + aux_sym__literal_repeat1, + STATE(1087), 1, + sym_concatenation, + ACTIONS(1424), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1901), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1934), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2559), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2556), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1283), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1419), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -63307,7 +63985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -63315,24 +63992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [11336] = 33, + [11548] = 33, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, @@ -63341,10 +64002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, + ACTIONS(121), 1, + sym_variable_name, ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(411), 1, - sym__special_character, ACTIONS(413), 1, anon_sym_DQUOTE, ACTIONS(417), 1, @@ -63359,55 +64020,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(431), 1, - sym_test_operator, - ACTIONS(435), 1, - sym_variable_name, ACTIONS(437), 1, sym__brace_start, - ACTIONS(1315), 1, + ACTIONS(775), 1, + sym__special_character, + ACTIONS(779), 1, + sym_test_operator, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(2499), 1, + ACTIONS(2568), 1, sym_word, - STATE(464), 1, + STATE(456), 1, sym_command_name, - STATE(854), 1, + STATE(808), 1, aux_sym_command_repeat1, - STATE(1052), 1, + STATE(1044), 1, aux_sym__literal_repeat1, - STATE(1238), 1, + STATE(1134), 1, sym_concatenation, - STATE(1494), 1, + STATE(1391), 1, sym_variable_assignment, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(2849), 1, + STATE(2768), 1, sym_command, - STATE(3948), 1, + STATE(3939), 1, sym_subscript, ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(415), 2, - sym_raw_string, - sym_ansi_c_string, ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2861), 2, + ACTIONS(777), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2770), 2, sym_subshell, sym_test_command, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(808), 9, + STATE(718), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63417,21 +64078,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [11454] = 7, + [11666] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, + ACTIONS(2360), 1, anon_sym_DQUOTE, - STATE(1179), 1, + STATE(1196), 1, sym_string, - ACTIONS(2519), 2, + ACTIONS(2362), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1135), 4, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2517), 9, + ACTIONS(2358), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -63441,7 +64103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 34, + ACTIONS(1127), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -63475,62 +64137,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [11520] = 24, + [11732] = 33, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(2521), 1, - sym_word, - ACTIONS(2527), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(2530), 1, + ACTIONS(411), 1, sym__special_character, - ACTIONS(2533), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(2539), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(2542), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(2545), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2548), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2551), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(2554), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2560), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2563), 1, - sym_test_operator, - ACTIONS(2566), 1, + ACTIONS(433), 1, sym_variable_name, - ACTIONS(2569), 1, + ACTIONS(435), 1, + sym_test_operator, + ACTIONS(437), 1, sym__brace_start, - STATE(1699), 1, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2445), 1, + sym_word, + STATE(477), 1, + sym_command_name, + STATE(899), 1, + aux_sym_command_repeat1, + STATE(1044), 1, aux_sym__literal_repeat1, - STATE(4006), 1, + STATE(1134), 1, + sym_concatenation, + STATE(1500), 1, + sym_variable_assignment, + STATE(2409), 1, + sym_file_redirect, + STATE(2768), 1, + sym_command, + STATE(3995), 1, sym_subscript, - ACTIONS(2524), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2536), 2, + ACTIONS(415), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2557), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(534), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1331), 5, - anon_sym_LT_LT, + STATE(2770), 2, + sym_subshell, + sym_test_command, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1435), 9, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(809), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63540,153 +64222,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1369), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [11620] = 7, - ACTIONS(3), 1, + [11850] = 33, + ACTIONS(63), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2574), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2572), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [11686] = 33, - ACTIONS(19), 1, + ACTIONS(461), 1, anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(483), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(123), 1, - sym_variable_name, - ACTIONS(409), 1, + ACTIONS(709), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(711), 1, + sym__special_character, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(725), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(773), 1, - sym__special_character, - ACTIONS(777), 1, + ACTIONS(733), 1, + sym_variable_name, + ACTIONS(735), 1, sym_test_operator, - ACTIONS(1315), 1, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(2576), 1, + ACTIONS(2570), 1, sym_word, - STATE(450), 1, + STATE(431), 1, sym_command_name, - STATE(843), 1, - aux_sym_command_repeat1, - STATE(1052), 1, + STATE(829), 1, aux_sym__literal_repeat1, - STATE(1238), 1, + STATE(833), 1, + aux_sym_command_repeat1, + STATE(996), 1, sym_concatenation, - STATE(1334), 1, + STATE(1275), 1, sym_variable_assignment, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(2849), 1, + STATE(2806), 1, sym_command, - STATE(3943), 1, + STATE(3959), 1, sym_subscript, - ACTIONS(389), 2, + ACTIONS(693), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(775), 2, + ACTIONS(715), 2, sym_raw_string, sym_ansi_c_string, - STATE(2861), 2, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2764), 2, sym_subshell, sym_test_command, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(716), 9, + STATE(670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63696,55 +64307,135 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [11804] = 23, - ACTIONS(3), 1, + [11968] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(975), 1, anon_sym_DOLLAR, - ACTIONS(417), 1, + ACTIONS(979), 1, + anon_sym_DQUOTE, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(423), 1, + ACTIONS(987), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(437), 1, + ACTIONS(991), 1, + anon_sym_BQUOTE, + ACTIONS(993), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(1019), 1, + ACTIONS(2572), 1, + sym_word, + ACTIONS(2576), 1, sym__special_character, - ACTIONS(1539), 1, + ACTIONS(2580), 1, + sym_test_operator, + ACTIONS(2582), 1, + sym__bare_dollar, + STATE(550), 1, + aux_sym_command_repeat2, + STATE(1588), 1, + aux_sym__literal_repeat1, + STATE(1672), 1, + sym_concatenation, + ACTIONS(965), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(995), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2574), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2578), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1579), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1294), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1581), 11, sym_file_descriptor, - ACTIONS(2002), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [12067] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(975), 1, + anon_sym_DOLLAR, + ACTIONS(979), 1, anon_sym_DQUOTE, - ACTIONS(2004), 1, + ACTIONS(983), 1, + aux_sym_number_token1, + ACTIONS(985), 1, + aux_sym_number_token2, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2006), 1, + ACTIONS(989), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(2008), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2014), 1, - sym__bare_dollar, - ACTIONS(2455), 1, + ACTIONS(1001), 1, + sym__brace_start, + ACTIONS(2572), 1, + sym_word, + ACTIONS(2576), 1, + sym__special_character, + ACTIONS(2580), 1, sym_test_operator, - STATE(527), 1, + ACTIONS(2582), 1, + sym__bare_dollar, + STATE(549), 1, aux_sym_command_repeat2, - STATE(1021), 1, + STATE(1588), 1, aux_sym__literal_repeat1, - STATE(1224), 1, + STATE(1672), 1, sym_concatenation, - ACTIONS(1998), 2, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2010), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2453), 2, + ACTIONS(2574), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2451), 3, + ACTIONS(2578), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1282), 9, + ACTIONS(1575), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + STATE(1294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63754,70 +64445,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1537), 16, + ACTIONS(1577), 11, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [11902] = 7, + [12166] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - ACTIONS(1141), 2, + ACTIONS(2590), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2594), 1, + sym_variable_name, + STATE(3963), 1, + sym_subscript, + ACTIONS(2588), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2437), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(2574), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2572), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 35, - anon_sym_LPAREN_LPAREN, + STATE(2427), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -63829,46 +64518,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [11968] = 13, + [12237] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LT_LT_LT, ACTIONS(2594), 1, sym_variable_name, - STATE(3953), 1, + ACTIONS(2605), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2607), 1, + anon_sym_LT_LT_LT, + STATE(3963), 1, sym_subscript, - ACTIONS(2582), 2, + ACTIONS(2588), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2597), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(2599), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2584), 2, + ACTIONS(2601), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2588), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - STATE(2365), 2, + STATE(2437), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2580), 3, - anon_sym_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - ACTIONS(2586), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2603), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2362), 4, + STATE(2427), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -63893,61 +64583,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [12045] = 24, + [12316] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(959), 1, + ACTIONS(975), 1, anon_sym_DOLLAR, - ACTIONS(963), 1, + ACTIONS(979), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(969), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(971), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(2597), 1, + ACTIONS(2572), 1, sym_word, - ACTIONS(2601), 1, + ACTIONS(2576), 1, sym__special_character, - ACTIONS(2605), 1, + ACTIONS(2580), 1, sym_test_operator, - ACTIONS(2607), 1, + ACTIONS(2582), 1, sym__bare_dollar, STATE(550), 1, aux_sym_command_repeat2, - STATE(1578), 1, + STATE(1588), 1, aux_sym__literal_repeat1, - STATE(1692), 1, + STATE(1672), 1, sym_concatenation, - ACTIONS(949), 2, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2599), 2, + ACTIONS(2574), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2603), 2, + ACTIONS(2578), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1423), 5, + ACTIONS(1569), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1317), 9, + STATE(1294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -63957,7 +64646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1439), 11, + ACTIONS(1571), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -63969,176 +64658,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [12144] = 7, - ACTIONS(3), 1, + [12415] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2574), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2572), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(2609), 1, sym_word, - sym_test_operator, - [12209] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2574), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2572), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(2618), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2621), 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, - sym_test_operator, - [12274] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(959), 1, - anon_sym_DOLLAR, - ACTIONS(963), 1, + ACTIONS(2624), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(2630), 1, aux_sym_number_token1, - ACTIONS(969), 1, + ACTIONS(2633), 1, aux_sym_number_token2, - ACTIONS(971), 1, + ACTIONS(2636), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, + ACTIONS(2639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, + ACTIONS(2642), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, + ACTIONS(2645), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, - sym__brace_start, - ACTIONS(2597), 1, - sym_word, - ACTIONS(2601), 1, - sym__special_character, - ACTIONS(2605), 1, + ACTIONS(2651), 1, sym_test_operator, - ACTIONS(2607), 1, + ACTIONS(2654), 1, sym__bare_dollar, + ACTIONS(2657), 1, + sym__brace_start, STATE(550), 1, aux_sym_command_repeat2, - STATE(1578), 1, + STATE(1588), 1, aux_sym__literal_repeat1, - STATE(1692), 1, + STATE(1672), 1, sym_concatenation, - ACTIONS(949), 2, + ACTIONS(2612), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2599), 2, + ACTIONS(2615), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2603), 2, + ACTIONS(2627), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1533), 5, + ACTIONS(2648), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1419), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1317), 9, + STATE(1294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64148,7 +64721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1535), 11, + ACTIONS(1424), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64160,44 +64733,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [12373] = 9, + [12514] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - sym__brace_start, - ACTIONS(2594), 1, - sym_variable_name, - ACTIONS(2611), 1, - sym_file_descriptor, - STATE(3953), 1, - sym_subscript, - STATE(2365), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2362), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2283), 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, + STATE(1244), 1, + sym_string, + ACTIONS(2451), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(2609), 22, + sym__brace_start, + ACTIONS(2449), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 33, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64205,11 +64766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64220,54 +64778,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [12442] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2594), 1, - sym_variable_name, - STATE(3953), 1, - sym_subscript, - ACTIONS(2588), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - STATE(2365), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2362), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(2578), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -64279,22 +64791,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [12511] = 7, + [12579] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - STATE(842), 1, + STATE(872), 1, sym_string, - ACTIONS(2085), 2, + ACTIONS(2091), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 4, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2083), 9, + ACTIONS(2089), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -64304,7 +64816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 33, + ACTIONS(1127), 32, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -64337,59 +64849,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [12576] = 13, + [12644] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LT_LT_LT, - ACTIONS(2594), 1, - sym_variable_name, - STATE(3953), 1, - sym_subscript, - ACTIONS(2582), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2584), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2588), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2592), 2, + ACTIONS(2283), 1, + anon_sym_DQUOTE, + STATE(1244), 1, + sym_string, + ACTIONS(2451), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 3, sym_file_descriptor, + sym_test_operator, sym__brace_start, - STATE(2365), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2615), 3, - anon_sym_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - ACTIONS(2408), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2362), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(2449), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 33, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -64401,22 +64907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [12653] = 7, + [12709] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(2001), 1, anon_sym_DQUOTE, - STATE(842), 1, + STATE(872), 1, sym_string, - ACTIONS(2085), 2, + ACTIONS(2091), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1139), 4, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2083), 9, + ACTIONS(2089), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -64426,7 +64932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 33, + ACTIONS(1137), 32, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -64459,211 +64965,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [12718] = 24, - ACTIONS(63), 1, + [12774] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(959), 1, - anon_sym_DOLLAR, - ACTIONS(963), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - aux_sym_number_token1, - ACTIONS(969), 1, - aux_sym_number_token2, - ACTIONS(971), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, - anon_sym_BQUOTE, - ACTIONS(977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, - sym__brace_start, - ACTIONS(2597), 1, - sym_word, - ACTIONS(2601), 1, - sym__special_character, - ACTIONS(2605), 1, + ACTIONS(2594), 1, + sym_variable_name, + STATE(3963), 1, + sym_subscript, + ACTIONS(2592), 2, sym_test_operator, - ACTIONS(2607), 1, - sym__bare_dollar, - STATE(543), 1, - aux_sym_command_repeat2, - STATE(1578), 1, - aux_sym__literal_repeat1, - STATE(1692), 1, - sym_concatenation, - ACTIONS(949), 2, + sym__brace_start, + ACTIONS(2662), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(2437), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2427), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2599), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2603), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1529), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1317), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1531), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [12817] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2617), 1, - sym_word, - ACTIONS(2626), 1, anon_sym_DOLLAR, - ACTIONS(2629), 1, sym__special_character, - ACTIONS(2632), 1, anon_sym_DQUOTE, - ACTIONS(2638), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2641), 1, aux_sym_number_token2, - ACTIONS(2644), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2650), 1, anon_sym_BQUOTE, - ACTIONS(2653), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2659), 1, - sym_test_operator, - ACTIONS(2662), 1, - sym__bare_dollar, - ACTIONS(2665), 1, - sym__brace_start, - STATE(550), 1, - aux_sym_command_repeat2, - STATE(1578), 1, - aux_sym__literal_repeat1, - STATE(1692), 1, - sym_concatenation, - ACTIONS(2620), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2623), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2635), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1449), 5, + sym_word, + ACTIONS(2660), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1317), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1487), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, - [12916] = 24, + anon_sym_AMP, + [12843] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(959), 1, + ACTIONS(975), 1, anon_sym_DOLLAR, - ACTIONS(963), 1, + ACTIONS(979), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(969), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(971), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(2597), 1, + ACTIONS(2572), 1, sym_word, - ACTIONS(2601), 1, + ACTIONS(2576), 1, sym__special_character, - ACTIONS(2605), 1, + ACTIONS(2580), 1, sym_test_operator, - ACTIONS(2607), 1, + ACTIONS(2582), 1, sym__bare_dollar, - STATE(540), 1, + STATE(545), 1, aux_sym_command_repeat2, - STATE(1578), 1, + STATE(1588), 1, aux_sym__literal_repeat1, - STATE(1692), 1, + STATE(1672), 1, sym_concatenation, - ACTIONS(949), 2, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2599), 2, + ACTIONS(2574), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2603), 2, + ACTIONS(2578), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1537), 5, + ACTIONS(1501), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1317), 9, + STATE(1294), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -64673,7 +65088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1539), 11, + ACTIONS(1505), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -64685,203 +65100,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [13015] = 21, + [12942] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1981), 1, - sym_file_descriptor, - ACTIONS(2325), 1, - anon_sym_DOLLAR, - ACTIONS(2331), 1, - anon_sym_DQUOTE, - ACTIONS(2334), 1, - aux_sym_number_token1, - ACTIONS(2337), 1, - aux_sym_number_token2, - ACTIONS(2340), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2343), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2346), 1, - anon_sym_BQUOTE, - ACTIONS(2349), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2361), 1, - sym__brace_start, - ACTIONS(2671), 1, - sym__special_character, - ACTIONS(2674), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2677), 1, - sym_test_operator, - STATE(1250), 1, - aux_sym__literal_repeat1, - ACTIONS(2322), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2352), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(552), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2668), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1401), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1943), 16, + ACTIONS(2594), 1, + sym_variable_name, + ACTIONS(2607), 1, + anon_sym_LT_LT_LT, + ACTIONS(2666), 1, + aux_sym_heredoc_redirect_token1, + STATE(3963), 1, + sym_subscript, + ACTIONS(2588), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2599), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2601), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2664), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(2437), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2418), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2427), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [13107] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1935), 1, - sym_file_descriptor, - ACTIONS(2240), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(2244), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(2246), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2248), 1, aux_sym_number_token2, - ACTIONS(2250), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2254), 1, anon_sym_BQUOTE, - ACTIONS(2256), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(2682), 1, - sym__special_character, - ACTIONS(2684), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2686), 1, - sym_test_operator, - STATE(1250), 1, - aux_sym__literal_repeat1, - ACTIONS(2238), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(552), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2680), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1401), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1931), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [13199] = 21, + [13021] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(2668), 1, + sym_variable_name, + STATE(3943), 1, + sym_subscript, + ACTIONS(2592), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(2662), 2, sym_file_descriptor, - ACTIONS(2240), 1, + aux_sym_heredoc_redirect_token1, + STATE(2455), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2461), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(2244), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(2246), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2248), 1, aux_sym_number_token2, - ACTIONS(2250), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2254), 1, anon_sym_BQUOTE, - ACTIONS(2256), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(2682), 1, - sym__special_character, - ACTIONS(2686), 1, - sym_test_operator, - ACTIONS(2688), 1, - aux_sym__simple_variable_name_token1, - STATE(1250), 1, - aux_sym__literal_repeat1, - ACTIONS(2238), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2258), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(553), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2680), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1401), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1849), 16, + ACTIONS(2660), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -64889,6 +65212,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -64896,49 +65222,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [13291] = 7, + anon_sym_AMP, + [13089] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, - aux_sym_concatenation_token1, - ACTIONS(2694), 1, - sym__concat, - STATE(585), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(2590), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2668), 1, + sym_variable_name, + STATE(3943), 1, + sym_subscript, + ACTIONS(2671), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2455), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 41, - anon_sym_LPAREN_LPAREN, + STATE(2461), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 10, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -64954,22 +65284,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [13355] = 7, + [13159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2675), 1, anon_sym_DQUOTE, - STATE(1425), 1, + STATE(1496), 1, sym_string, - ACTIONS(2700), 2, + ACTIONS(2677), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1139), 4, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2696), 9, + ACTIONS(2673), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -64979,7 +65309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 32, + ACTIONS(1137), 31, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -65011,22 +65341,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [13419] = 7, + [13223] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2675), 1, anon_sym_DQUOTE, - STATE(1425), 1, + STATE(1496), 1, sym_string, - ACTIONS(2700), 2, + ACTIONS(2677), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1135), 4, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2696), 9, + ACTIONS(2673), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65036,7 +65366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 32, + ACTIONS(1127), 31, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -65068,74 +65398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [13483] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2592), 1, - sym__brace_start, - ACTIONS(2611), 1, - sym_file_descriptor, - ACTIONS(2702), 1, - sym_variable_name, - STATE(3928), 1, - sym_subscript, - STATE(2375), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2373), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(2609), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [13551] = 4, + [13287] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(2370), 1, + ACTIONS(2420), 1, ts_builtin_sym_end, - ACTIONS(2366), 21, + ACTIONS(2382), 21, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -65154,8 +65425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2364), 26, + ACTIONS(2380), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -65182,94 +65452,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [13609] = 4, - ACTIONS(63), 1, + [13345] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - ts_builtin_sym_end, - ACTIONS(2366), 21, - sym_file_descriptor, - sym_variable_name, - 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_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2279), 1, + anon_sym_DOLLAR, + ACTIONS(2283), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2285), 1, + aux_sym_number_token1, + ACTIONS(2287), 1, + aux_sym_number_token2, + ACTIONS(2289), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2293), 1, anon_sym_BQUOTE, + ACTIONS(2295), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2303), 1, + sym__brace_start, + ACTIONS(2681), 1, + sym__special_character, + ACTIONS(2683), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2685), 1, + sym_test_operator, + STATE(1285), 1, + aux_sym__literal_repeat1, + ACTIONS(1825), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2364), 26, - anon_sym_for, - anon_sym_select, + STATE(565), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2679), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1472), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1823), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [13667] = 9, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [13437] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2668), 1, sym_variable_name, - STATE(3928), 1, + ACTIONS(2691), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2693), 1, + anon_sym_LT_LT_LT, + STATE(3943), 1, sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2705), 2, + ACTIONS(2601), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2671), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2375), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2373), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 11, + ACTIONS(2687), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(2689), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2455), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2603), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(2578), 25, + STATE(2461), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -65294,17 +65587,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [13515] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2236), 1, + anon_sym_DOLLAR, + ACTIONS(2242), 1, + anon_sym_DQUOTE, + ACTIONS(2245), 1, + aux_sym_number_token1, + ACTIONS(2248), 1, + aux_sym_number_token2, + ACTIONS(2251), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2257), 1, + anon_sym_BQUOTE, + ACTIONS(2260), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2272), 1, + sym__brace_start, + ACTIONS(2698), 1, + sym__special_character, + ACTIONS(2701), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2704), 1, sym_test_operator, - [13735] = 3, + STATE(1285), 1, + aux_sym__literal_repeat1, + ACTIONS(1954), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2233), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2263), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(565), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2695), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1472), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1952), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [13607] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(845), 21, + ACTIONS(813), 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_RBRACE, anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -65319,8 +65684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(591), 27, + ACTIONS(585), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -65328,7 +65692,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_while, anon_sym_until, - anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_function, @@ -65348,17 +65711,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [13791] = 3, + [13663] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(845), 22, + ACTIONS(813), 21, 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_LT_AMP, @@ -65373,8 +65736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(591), 26, + ACTIONS(585), 27, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -65382,6 +65744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_while, anon_sym_until, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_function, @@ -65401,53 +65764,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [13847] = 13, + [13719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, - sym_variable_name, + ACTIONS(2707), 1, + anon_sym_LPAREN, + ACTIONS(2709), 1, + aux_sym_concatenation_token1, ACTIONS(2711), 1, - anon_sym_LT_LT_LT, - STATE(3928), 1, - sym_subscript, - ACTIONS(2584), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2592), 2, + sym__concat, + STATE(574), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1156), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2705), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2375), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2586), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2707), 3, - anon_sym_SEMI, aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2373), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(1147), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -65463,45 +65821,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [13923] = 13, + [13783] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2668), 1, sym_variable_name, - ACTIONS(2711), 1, + ACTIONS(2693), 1, anon_sym_LT_LT_LT, - STATE(3928), 1, + ACTIONS(2715), 1, + aux_sym_heredoc_redirect_token1, + STATE(3943), 1, sym_subscript, - ACTIONS(2584), 2, + ACTIONS(2601), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2705), 2, + ACTIONS(2671), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2709), 2, + ACTIONS(2689), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2375), 2, + ACTIONS(2713), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(2455), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2408), 3, + ACTIONS(2418), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2713), 3, - anon_sym_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2373), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(2461), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -65526,57 +65885,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [13861] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2386), 1, + ts_builtin_sym_end, + ACTIONS(2382), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [13999] = 13, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_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(2380), 26, + 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_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [13919] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 1, - anon_sym_RPAREN, - ACTIONS(2721), 1, - anon_sym_LT_LT_LT, - ACTIONS(2723), 1, - sym_variable_name, - STATE(3990), 1, - sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, + ACTIONS(2279), 1, + anon_sym_DOLLAR, + ACTIONS(2283), 1, + anon_sym_DQUOTE, + ACTIONS(2285), 1, + aux_sym_number_token1, + ACTIONS(2287), 1, + aux_sym_number_token2, + ACTIONS(2289), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2293), 1, + anon_sym_BQUOTE, + ACTIONS(2295), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(2715), 2, + ACTIONS(2681), 1, + sym__special_character, + ACTIONS(2685), 1, + sym_test_operator, + ACTIONS(2717), 1, + aux_sym__simple_variable_name_token1, + STATE(1285), 1, + aux_sym__literal_repeat1, + ACTIONS(1855), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2277), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2297), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(563), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2679), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1472), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1853), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2717), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2719), 2, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2525), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2713), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2524), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [14011] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1707), 1, + anon_sym_DQUOTE, + STATE(985), 1, + sym_string, + ACTIONS(2378), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2376), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 30, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -65588,20 +66066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, [14074] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - sym__concat, - ACTIONS(2728), 1, + ACTIONS(202), 1, anon_sym_DQUOTE, - STATE(1524), 1, + ACTIONS(1139), 1, + sym_test_operator, + STATE(1444), 1, sym_string, - ACTIONS(2730), 2, + ACTIONS(2721), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2726), 9, + ACTIONS(2719), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -65611,7 +66088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 33, + ACTIONS(1137), 33, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -65639,58 +66117,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - sym_test_operator, - [14137] = 13, + [14137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - ts_builtin_sym_end, - ACTIONS(2738), 1, - anon_sym_LT_LT_LT, - ACTIONS(2740), 1, - sym_variable_name, - STATE(3950), 1, - sym_subscript, - ACTIONS(2592), 2, + ACTIONS(2709), 1, + aux_sym_concatenation_token1, + ACTIONS(2723), 1, + sym__concat, + STATE(605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2734), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2736), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2582), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2732), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(1177), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -65706,47 +66177,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14212] = 9, + [14198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - sym__brace_start, - ACTIONS(2740), 1, - sym_variable_name, - STATE(3950), 1, - sym_subscript, - ACTIONS(2611), 2, - sym_file_descriptor, - ts_builtin_sym_end, - STATE(2582), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1707), 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, + STATE(985), 1, + sym_string, + ACTIONS(2378), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(2609), 19, - anon_sym_SEMI, + sym__brace_start, + ACTIONS(2376), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -65754,7 +66211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -65764,54 +66220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - [14279] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2740), 1, - sym_variable_name, - ACTIONS(2743), 1, - ts_builtin_sym_end, - STATE(3950), 1, - sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2736), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2582), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(2578), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -65823,21 +66233,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14348] = 6, + [14261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2709), 1, aux_sym_concatenation_token1, - ACTIONS(2694), 1, + ACTIONS(2725), 1, sym__concat, - STATE(586), 1, + STATE(605), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1173), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1180), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -65860,7 +66271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -65878,44 +66288,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14409] = 13, + [14322] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_RPAREN, - ACTIONS(2721), 1, - anon_sym_LT_LT_LT, - ACTIONS(2723), 1, + ACTIONS(2729), 1, sym_variable_name, - STATE(3990), 1, + STATE(3964), 1, sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2715), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2719), 2, + ACTIONS(2590), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2727), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2525), 2, + STATE(2636), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2707), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2524), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(2623), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(2586), 8, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -65940,51 +66347,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14484] = 7, + [14391] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_DQUOTE, - STATE(1100), 1, - sym_string, - ACTIONS(2380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, - sym_file_descriptor, + ACTIONS(2729), 1, sym_variable_name, + STATE(3964), 1, + sym_subscript, + ACTIONS(2592), 2, + sym_test_operator, sym__brace_start, - ACTIONS(2376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, + STATE(2636), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2662), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + STATE(2623), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -65996,33 +66386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14547] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_DQUOTE, - STATE(1100), 1, - sym_string, - ACTIONS(2380), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2376), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 31, - anon_sym_LPAREN_LPAREN, + ACTIONS(2660), 18, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -66030,6 +66395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -66037,122 +66403,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [14610] = 7, + anon_sym_AMP, + [14458] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, - anon_sym_DQUOTE, - STATE(1033), 1, - sym_string, - ACTIONS(2384), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, - sym_file_descriptor, + ACTIONS(2418), 1, + anon_sym_RPAREN, + ACTIONS(2715), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2738), 1, + anon_sym_LT_LT_LT, + ACTIONS(2740), 1, sym_variable_name, - sym__brace_start, - ACTIONS(2382), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 31, - anon_sym_LPAREN_LPAREN, + STATE(3993), 1, + sym_subscript, + ACTIONS(2732), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2734), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT_DASH, + ACTIONS(2736), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [14673] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 1, - anon_sym_DQUOTE, - STATE(1545), 1, - sym_string, - ACTIONS(2749), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + STATE(2620), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2745), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 31, + ACTIONS(2713), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2619), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - 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_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -66164,22 +66468,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14736] = 7, + [14535] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(2745), 1, anon_sym_DQUOTE, - STATE(1033), 1, + STATE(1534), 1, sym_string, - ACTIONS(2384), 2, + ACTIONS(2747), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + ACTIONS(1135), 4, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2382), 9, + ACTIONS(2743), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66189,7 +66493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 31, + ACTIONS(1127), 30, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66199,13 +66503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, @@ -66220,22 +66524,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14799] = 7, + [14598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2745), 1, anon_sym_DQUOTE, - STATE(1545), 1, + STATE(1534), 1, sym_string, - ACTIONS(2749), 2, + ACTIONS(2747), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1139), 4, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2745), 9, + ACTIONS(2743), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66245,7 +66549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 31, + ACTIONS(1137), 30, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66276,15 +66580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14862] = 4, + [14661] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(2370), 1, + ACTIONS(2386), 1, anon_sym_BQUOTE, - ACTIONS(2366), 20, + ACTIONS(2382), 20, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -66302,8 +66606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - ACTIONS(2364), 26, + ACTIONS(2380), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -66330,45 +66633,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [14919] = 6, + [14718] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, - aux_sym_concatenation_token1, - ACTIONS(2754), 1, - sym__concat, - STATE(580), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1170), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, + ACTIONS(2603), 1, + anon_sym_RPAREN, + ACTIONS(2691), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2738), 1, + anon_sym_LT_LT_LT, + ACTIONS(2740), 1, + sym_variable_name, + STATE(3993), 1, + sym_subscript, + ACTIONS(2732), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2734), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2736), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2620), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2687), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2619), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -66384,167 +66696,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [14980] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(204), 1, - anon_sym_DQUOTE, - STATE(1407), 1, - sym_string, - ACTIONS(2759), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2757), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 34, - anon_sym_RPAREN_RPAREN, - 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [15041] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(204), 1, - anon_sym_DQUOTE, - STATE(1407), 1, - sym_string, - ACTIONS(2759), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2757), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 34, - anon_sym_RPAREN_RPAREN, - 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [15102] = 22, + [14795] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(2761), 1, + ACTIONS(2749), 1, sym_word, - ACTIONS(2767), 1, + ACTIONS(2755), 1, anon_sym_DOLLAR, - ACTIONS(2770), 1, + ACTIONS(2758), 1, sym__special_character, - ACTIONS(2773), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(2779), 1, + ACTIONS(2767), 1, aux_sym_number_token1, - ACTIONS(2782), 1, + ACTIONS(2770), 1, aux_sym_number_token2, - ACTIONS(2785), 1, + ACTIONS(2773), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2788), 1, + ACTIONS(2776), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2791), 1, + ACTIONS(2779), 1, anon_sym_BQUOTE, - ACTIONS(2794), 1, + ACTIONS(2782), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2800), 1, + ACTIONS(2788), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2803), 1, + ACTIONS(2791), 1, sym_test_operator, - ACTIONS(2806), 1, + ACTIONS(2794), 1, sym__brace_start, - STATE(1784), 1, + STATE(1808), 1, aux_sym__literal_repeat1, - ACTIONS(2764), 2, + ACTIONS(2752), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2776), 2, + ACTIONS(2764), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2797), 2, + ACTIONS(2785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(583), 2, + STATE(584), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1943), 5, + ACTIONS(1952), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1575), 9, + STATE(1559), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -66554,7 +66755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1981), 11, + ACTIONS(1954), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66566,20 +66767,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15195] = 6, + [14888] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2797), 1, + anon_sym_LPAREN, + ACTIONS(2799), 1, aux_sym_concatenation_token1, - ACTIONS(2694), 1, + ACTIONS(2801), 1, sym__concat, - STATE(586), 1, + STATE(621), 1, aux_sym_concatenation_repeat1, - ACTIONS(2811), 3, + ACTIONS(1156), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2809), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -66589,7 +66794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -66602,7 +66806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66620,21 +66823,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [15256] = 6, + [14951] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2709), 1, aux_sym_concatenation_token1, - ACTIONS(2813), 1, + ACTIONS(2711), 1, sym__concat, - STATE(580), 1, + STATE(574), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1156), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1190), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -66657,7 +66861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66675,21 +66878,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [15317] = 6, + [15012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2709), 1, aux_sym_concatenation_token1, - ACTIONS(2815), 1, + ACTIONS(2711), 1, sym__concat, - STATE(580), 1, + STATE(574), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(2805), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1184), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -66712,7 +66916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -66730,28 +66933,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [15378] = 9, + [15073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - sym__brace_start, - ACTIONS(2611), 1, + ACTIONS(2709), 1, + aux_sym_concatenation_token1, + ACTIONS(2711), 1, + sym__concat, + STATE(574), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2809), 5, sym_file_descriptor, - ACTIONS(2723), 1, - sym_variable_name, - STATE(3990), 1, - sym_subscript, - STATE(2525), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2524), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 17, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -66767,41 +66988,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [15134] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2382), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(2609), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [15445] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_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(2380), 26, + 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_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [15189] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - sym__concat, - ACTIONS(2728), 1, + ACTIONS(202), 1, anon_sym_DQUOTE, - STATE(1524), 1, + ACTIONS(1135), 1, + sym_test_operator, + STATE(1444), 1, sym_string, - ACTIONS(2730), 2, + ACTIONS(2721), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2726), 9, + ACTIONS(2719), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -66811,7 +67062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 33, + ACTIONS(1127), 33, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -66839,42 +67091,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - sym_test_operator, - [15508] = 6, + [15252] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - aux_sym_concatenation_token1, - ACTIONS(2694), 1, - sym__concat, - STATE(585), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2819), 3, + ACTIONS(2360), 1, + anon_sym_DQUOTE, + STATE(1196), 1, + sym_string, + ACTIONS(2362), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2817), 41, + ACTIONS(2358), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -66883,11 +67139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -66899,29 +67152,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [15569] = 9, + [15315] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(2590), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2740), 1, sym_variable_name, - STATE(3990), 1, + STATE(3993), 1, sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2719), 2, + ACTIONS(2736), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2525), 2, + STATE(2620), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(2524), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(2619), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 10, + ACTIONS(2586), 9, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -66929,10 +67184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(2578), 25, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -66957,124 +67211,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [15636] = 22, - ACTIONS(63), 1, + [15384] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, - sym_word, - ACTIONS(2825), 1, - anon_sym_DOLLAR, - ACTIONS(2827), 1, - sym__special_character, - ACTIONS(2829), 1, + ACTIONS(2740), 1, + sym_variable_name, + STATE(3993), 1, + sym_subscript, + ACTIONS(2592), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(2662), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(2620), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2619), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(2833), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2835), 1, aux_sym_number_token2, - ACTIONS(2837), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2839), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2841), 1, anon_sym_BQUOTE, - ACTIONS(2843), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2847), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2849), 1, - sym_test_operator, - ACTIONS(2851), 1, - sym__brace_start, - STATE(1784), 1, - aux_sym__literal_repeat1, - ACTIONS(2823), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2831), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2845), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(597), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1849), 5, + sym_word, + ACTIONS(2660), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP_GT, - STATE(1575), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1875), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, - [15729] = 13, + anon_sym_AMP, + [15451] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LT_LT_LT, - ACTIONS(2740), 1, - sym_variable_name, - ACTIONS(2853), 1, - ts_builtin_sym_end, - STATE(3950), 1, - sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2734), 2, + ACTIONS(2813), 1, + anon_sym_DQUOTE, + STATE(1531), 1, + sym_string, + ACTIONS(1139), 2, + sym__concat, + sym_test_operator, + ACTIONS(2815), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2811), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2736), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2582), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2855), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + anon_sym_CARET, + [15514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 1, + aux_sym_concatenation_token1, + ACTIONS(2711), 1, + sym__concat, + STATE(576), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2819), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -67090,21 +67380,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [15804] = 6, + [15575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2709), 1, aux_sym_concatenation_token1, - ACTIONS(2694), 1, + ACTIONS(2711), 1, sym__concat, - STATE(586), 1, + STATE(576), 1, aux_sym_concatenation_repeat1, - ACTIONS(2859), 3, + ACTIONS(2823), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2857), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -67127,7 +67418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67145,13 +67435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [15865] = 3, + [15636] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(2366), 21, + ACTIONS(2420), 1, + anon_sym_BQUOTE, + ACTIONS(2382), 20, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -67166,12 +67458,10 @@ 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, - sym_test_operator, - ACTIONS(2364), 26, + ACTIONS(2380), 26, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -67198,73 +67488,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [15920] = 4, - ACTIONS(63), 1, + [15693] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 1, - anon_sym_BQUOTE, - ACTIONS(2366), 20, - sym_file_descriptor, - sym_variable_name, - 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_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2813), 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, + STATE(1531), 1, + sym_string, + ACTIONS(1135), 2, + sym__concat, sym_test_operator, - ACTIONS(2364), 26, - 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, + ACTIONS(2815), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2811), 9, + anon_sym_DASH, + anon_sym_STAR, 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_QMARK, anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [15977] = 6, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + [15756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2709), 1, aux_sym_concatenation_token1, - ACTIONS(2694), 1, + ACTIONS(2711), 1, sym__concat, - STATE(585), 1, + STATE(576), 1, aux_sym_concatenation_repeat1, - ACTIONS(2863), 3, + ACTIONS(218), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2861), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -67287,7 +67582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67305,57 +67599,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16038] = 22, + [15817] = 22, ACTIONS(63), 1, sym_comment, - ACTIONS(2821), 1, - sym_word, ACTIONS(2825), 1, + sym_word, + ACTIONS(2829), 1, anon_sym_DOLLAR, - ACTIONS(2827), 1, + ACTIONS(2831), 1, sym__special_character, - ACTIONS(2829), 1, - anon_sym_DQUOTE, ACTIONS(2833), 1, + anon_sym_DQUOTE, + ACTIONS(2837), 1, aux_sym_number_token1, - ACTIONS(2835), 1, + ACTIONS(2839), 1, aux_sym_number_token2, - ACTIONS(2837), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2839), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2841), 1, + ACTIONS(2845), 1, anon_sym_BQUOTE, - ACTIONS(2843), 1, + ACTIONS(2847), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2849), 1, - sym_test_operator, ACTIONS(2851), 1, - sym__brace_start, - ACTIONS(2865), 1, aux_sym__simple_variable_name_token1, - STATE(1784), 1, + ACTIONS(2853), 1, + sym_test_operator, + ACTIONS(2855), 1, + sym__brace_start, + STATE(1808), 1, aux_sym__literal_repeat1, - ACTIONS(2823), 2, + ACTIONS(2827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2831), 2, + ACTIONS(2835), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2845), 2, + ACTIONS(2849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(583), 2, + STATE(584), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1931), 5, + ACTIONS(1823), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - STATE(1575), 9, + STATE(1559), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -67365,7 +67658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1935), 11, + ACTIONS(1825), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -67377,45 +67670,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [16131] = 6, + [15910] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - aux_sym_concatenation_token1, - ACTIONS(2694), 1, - sym__concat, - STATE(585), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(2420), 1, + ts_builtin_sym_end, + ACTIONS(2729), 1, + sym_variable_name, + ACTIONS(2861), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2863), 1, + anon_sym_LT_LT_LT, + STATE(3964), 1, + sym_subscript, + ACTIONS(2727), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2859), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(2636), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 41, - anon_sym_LPAREN_LPAREN, + ACTIONS(2857), 3, anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2623), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -67431,37 +67733,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16192] = 6, + [15987] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, - aux_sym_concatenation_token1, - ACTIONS(2694), 1, - sym__concat, - STATE(586), 1, - aux_sym_concatenation_repeat1, - ACTIONS(222), 3, + ACTIONS(2360), 1, + anon_sym_DQUOTE, + STATE(1196), 1, + sym_string, + ACTIONS(2362), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(189), 41, + ACTIONS(2358), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -67470,11 +67776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -67486,47 +67789,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16253] = 7, + [16050] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_LPAREN, + ACTIONS(2729), 1, + sym_variable_name, + ACTIONS(2863), 1, + anon_sym_LT_LT_LT, + ACTIONS(2865), 1, + ts_builtin_sym_end, ACTIONS(2869), 1, - aux_sym_concatenation_token1, - ACTIONS(2871), 1, - sym__concat, - STATE(627), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + aux_sym_heredoc_redirect_token1, + STATE(3964), 1, + sym_subscript, + ACTIONS(2727), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2859), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(2636), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(2867), 3, anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2623), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -67542,21 +67852,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16316] = 6, + [16127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2709), 1, aux_sym_concatenation_token1, - ACTIONS(2871), 1, + ACTIONS(2711), 1, sym__concat, - STATE(622), 1, + STATE(576), 1, aux_sym_concatenation_repeat1, - ACTIONS(2859), 3, + ACTIONS(1169), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2857), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -67566,6 +67877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -67578,7 +67890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67596,16 +67907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16376] = 3, + [16188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, - sym_file_descriptor, + ACTIONS(2871), 1, + aux_sym_concatenation_token1, + ACTIONS(2874), 1, sym__concat, + STATE(605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 5, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1216), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -67628,11 +67945,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -67647,45 +67962,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16430] = 6, - ACTIONS(3), 1, + [16249] = 22, + ACTIONS(63), 1, sym_comment, - ACTIONS(2869), 1, - aux_sym_concatenation_token1, - ACTIONS(2871), 1, - sym__concat, - STATE(627), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, - sym_file_descriptor, - sym__bare_dollar, + ACTIONS(2825), 1, + sym_word, + ACTIONS(2829), 1, + anon_sym_DOLLAR, + ACTIONS(2831), 1, + sym__special_character, + ACTIONS(2833), 1, + anon_sym_DQUOTE, + ACTIONS(2837), 1, + aux_sym_number_token1, + ACTIONS(2839), 1, + aux_sym_number_token2, + ACTIONS(2841), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2843), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2845), 1, + anon_sym_BQUOTE, + ACTIONS(2847), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2853), 1, + sym_test_operator, + ACTIONS(2855), 1, sym__brace_start, - ACTIONS(1159), 40, + ACTIONS(2877), 1, + aux_sym__simple_variable_name_token1, + STATE(1808), 1, + aux_sym__literal_repeat1, + ACTIONS(2827), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2835), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2849), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(600), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1853), 5, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, + STATE(1559), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1855), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, + [16342] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 1, + sym_variable_name, + STATE(4001), 1, + sym_subscript, + ACTIONS(2592), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(2662), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(2697), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -67701,42 +68071,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16490] = 6, + ACTIONS(2660), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [16408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2799), 1, aux_sym_concatenation_token1, - ACTIONS(2879), 1, + ACTIONS(2882), 1, sym__concat, - STATE(624), 1, + STATE(634), 1, aux_sym_concatenation_repeat1, - ACTIONS(2877), 3, + ACTIONS(1173), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2873), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67753,44 +68143,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [16550] = 6, + [16468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2799), 1, aux_sym_concatenation_token1, - ACTIONS(2879), 1, + ACTIONS(2801), 1, sym__concat, - STATE(665), 1, + STATE(608), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(2819), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1180), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -67807,29 +68197,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, - sym_test_operator, - [16610] = 7, + [16528] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - aux_sym_concatenation_token1, - ACTIONS(2885), 1, - sym__concat, - STATE(691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 4, + ACTIONS(2886), 1, + anon_sym_DQUOTE, + STATE(1687), 1, + sym_string, + ACTIONS(2888), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1159), 38, + ACTIONS(2884), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 29, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -67837,22 +68232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -67864,18 +68253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16672] = 6, + [16590] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(204), 1, + ACTIONS(322), 1, anon_sym_DQUOTE, - STATE(1407), 1, + ACTIONS(1135), 1, + sym_test_operator, + STATE(1382), 1, sym_string, - ACTIONS(2759), 2, + ACTIONS(2892), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2757), 9, + ACTIONS(2890), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -67885,8 +68275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 33, - anon_sym_RPAREN_RPAREN, + ACTIONS(1127), 32, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -67914,79 +68303,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - sym_test_operator, - [16732] = 6, + [16652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(204), 1, - anon_sym_DQUOTE, - STATE(1407), 1, - sym_string, - ACTIONS(2759), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2757), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 33, - anon_sym_RPAREN_RPAREN, - 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2799), 1, + aux_sym_concatenation_token1, + ACTIONS(2801), 1, + sym__concat, + STATE(621), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2809), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [16792] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [16712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2799), 1, aux_sym_concatenation_token1, - ACTIONS(2871), 1, + ACTIONS(2801), 1, sym__concat, - STATE(622), 1, + STATE(608), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(218), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1180), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68008,7 +68399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68026,16 +68416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16852] = 3, + [16772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1241), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68058,7 +68449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68077,16 +68467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16906] = 3, + [16826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68109,7 +68500,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68128,16 +68518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [16960] = 3, + [16880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1257), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68160,7 +68551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68179,23 +68569,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17014] = 6, + [16934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 1, - aux_sym_concatenation_token1, - ACTIONS(2879), 1, - sym__concat, - STATE(665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2889), 3, + ACTIONS(1207), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2887), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -68208,16 +68595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -68231,18 +68619,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + [16988] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(322), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, sym_test_operator, - [17074] = 3, + STATE(1382), 1, + sym_string, + ACTIONS(2892), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2890), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + [17050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1250), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68265,7 +68708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68284,21 +68726,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [17104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1203), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - [17128] = 6, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [17158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2799), 1, aux_sym_concatenation_token1, - ACTIONS(2871), 1, + ACTIONS(2894), 1, sym__concat, - STATE(622), 1, + STATE(634), 1, aux_sym_concatenation_repeat1, - ACTIONS(2811), 3, + ACTIONS(1179), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2809), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68320,7 +68814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68338,42 +68831,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17188] = 12, + [17218] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_LT_LT_LT, - ACTIONS(2899), 1, + ACTIONS(2879), 1, sym_variable_name, - STATE(4008), 1, + ACTIONS(2902), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + STATE(4001), 1, sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2717), 2, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, + ACTIONS(2898), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, + ACTIONS(2900), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2702), 2, + STATE(2697), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2891), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2896), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, - STATE(2705), 4, + STATE(2703), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -68398,16 +68892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17260] = 3, + [17292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1185), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1254), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68430,7 +68925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68449,39 +68943,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [17346] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 1, + sym_test_operator, + ACTIONS(2813), 1, + anon_sym_DQUOTE, + STATE(1531), 1, + sym_string, + ACTIONS(2815), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2811), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + [17408] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, sym_test_operator, - [17314] = 9, + ACTIONS(2813), 1, + anon_sym_DQUOTE, + STATE(1531), 1, + sym_string, + ACTIONS(2815), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2811), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + [17470] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 1, + ACTIONS(2603), 1, + anon_sym_BQUOTE, + ACTIONS(2912), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2914), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_variable_name, - STATE(4008), 1, + STATE(4016), 1, sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2895), 2, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2908), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2910), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2702), 2, + STATE(2561), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(2705), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2906), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2562), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(2578), 25, + ACTIONS(2584), 23, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -68501,32 +69111,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17380] = 9, + [17546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - sym__brace_start, - ACTIONS(2611), 1, - sym_file_descriptor, - ACTIONS(2899), 1, + ACTIONS(2916), 1, sym_variable_name, - STATE(4008), 1, + STATE(4016), 1, sym_subscript, - STATE(2702), 2, + ACTIONS(2592), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(2662), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(2561), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(2705), 4, + STATE(2562), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 17, + ACTIONS(2584), 15, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -68538,13 +69148,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, - sym_test_operator, - ACTIONS(2609), 19, + ACTIONS(2660), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -68561,51 +69169,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [17446] = 9, + anon_sym_BQUOTE, + [17612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 1, - sym_variable_name, - STATE(4000), 1, - sym_subscript, - ACTIONS(2592), 2, + ACTIONS(1207), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2902), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2595), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2596), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(2578), 25, - anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -68620,21 +69223,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17512] = 6, + [17666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - aux_sym_concatenation_token1, - ACTIONS(2871), 1, - sym__concat, - STATE(622), 1, - aux_sym_concatenation_repeat1, - ACTIONS(222), 3, + ACTIONS(1217), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(189), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68644,6 +69243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -68656,10 +69256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -68674,21 +69274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17572] = 6, + [17720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - aux_sym_concatenation_token1, - ACTIONS(2907), 1, - sym__concat, - STATE(642), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1269), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1184), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68698,6 +69294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -68710,10 +69307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -68728,99 +69325,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17632] = 7, + [17774] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2574), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2572), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 31, - anon_sym_LPAREN_LPAREN, + ACTIONS(2879), 1, + sym_variable_name, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + ACTIONS(2921), 1, + aux_sym_heredoc_redirect_token1, + STATE(4001), 1, + sym_subscript, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2898), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2900), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [17694] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2875), 1, - aux_sym_concatenation_token1, - ACTIONS(2909), 1, - sym__concat, - STATE(664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + STATE(2697), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(2919), 3, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -68835,52 +69385,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, - sym_test_operator, - [17754] = 7, + [17848] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_DQUOTE, - STATE(1099), 1, - sym_string, - ACTIONS(1145), 2, + ACTIONS(2590), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2916), 1, + sym_variable_name, + STATE(4016), 1, + sym_subscript, + ACTIONS(2910), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2561), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(2574), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2572), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 31, - anon_sym_LPAREN_LPAREN, + STATE(2562), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 8, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -68892,16 +69444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17816] = 3, + [17916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(1265), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1208), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68924,7 +69477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68943,21 +69495,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17870] = 6, + [17970] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2923), 1, aux_sym_concatenation_token1, - ACTIONS(2911), 1, + ACTIONS(2926), 1, sym__concat, - STATE(642), 1, + STATE(634), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1185), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1190), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -68979,7 +69532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -68997,16 +69549,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17930] = 3, + [18030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, - sym_file_descriptor, + ACTIONS(2799), 1, + aux_sym_concatenation_token1, + ACTIONS(2801), 1, sym__concat, + STATE(621), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2805), 5, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1228), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69016,7 +69574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -69029,11 +69586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -69048,77 +69603,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [17984] = 13, + [18090] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 1, - anon_sym_BQUOTE, - ACTIONS(2904), 1, - sym_variable_name, - ACTIONS(2917), 1, - anon_sym_LT_LT_LT, - STATE(4000), 1, - sym_subscript, - ACTIONS(2592), 2, + ACTIONS(2886), 1, + anon_sym_DQUOTE, + STATE(1687), 1, + sym_string, + ACTIONS(2888), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2902), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2915), 2, + ACTIONS(2884), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 29, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2595), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2913), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2596), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 24, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, 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, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18058] = 3, + [18152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1261), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1220), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69141,7 +69691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -69160,43 +69709,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18112] = 6, + [18206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2929), 1, aux_sym_concatenation_token1, - ACTIONS(2871), 1, + ACTIONS(2931), 1, sym__concat, - STATE(627), 1, + STATE(640), 1, aux_sym_concatenation_repeat1, - ACTIONS(2863), 3, + ACTIONS(1179), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2861), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -69213,43 +69761,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [18172] = 12, + [18266] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_LT_LT_LT, - ACTIONS(2899), 1, + ACTIONS(2879), 1, sym_variable_name, - STATE(4008), 1, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + ACTIONS(2935), 1, + aux_sym_heredoc_redirect_token1, + STATE(4001), 1, sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2717), 2, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, + ACTIONS(2898), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, + ACTIONS(2900), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2702), 2, + STATE(2697), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2919), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2933), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, - STATE(2705), 4, + STATE(2703), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -69274,44 +69824,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18244] = 9, + [18340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - sym__brace_start, - ACTIONS(2611), 1, + ACTIONS(2937), 1, + aux_sym_concatenation_token1, + ACTIONS(2940), 1, + sym__concat, + STATE(640), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 5, sym_file_descriptor, - ACTIONS(2904), 1, sym_variable_name, - STATE(4000), 1, - sym_subscript, - STATE(2595), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2596), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_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, sym_test_operator, - ACTIONS(2609), 20, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -69319,8 +69848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -69328,21 +69860,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [18310] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [18400] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(322), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - STATE(1370), 1, + STATE(1592), 1, sym_string, - ACTIONS(2923), 2, + ACTIONS(2947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -69352,112 +69903,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1127), 29, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [18370] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2586), 1, - anon_sym_BQUOTE, - ACTIONS(2904), 1, - sym_variable_name, - ACTIONS(2917), 1, - anon_sym_LT_LT_LT, - STATE(4000), 1, - sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2902), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2915), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(2595), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2925), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2596), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 24, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, 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, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18444] = 6, + [18462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(322), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - STATE(1370), 1, + STATE(1592), 1, sym_string, - ACTIONS(2923), 2, + ACTIONS(2947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -69467,49 +69958,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1137), 29, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [18504] = 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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [18524] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, - sym_file_descriptor, + ACTIONS(1154), 1, + anon_sym_LPAREN, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, sym__concat, + STATE(717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1156), 5, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1212), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69519,11 +70015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -69532,11 +70026,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -69551,16 +70043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18558] = 3, + [18586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1213), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1266), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69583,7 +70076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -69602,16 +70094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18612] = 3, + [18640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69634,7 +70127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -69653,16 +70145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18666] = 3, + [18694] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, - sym_file_descriptor, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + aux_sym_concatenation_token1, + ACTIONS(2957), 1, sym__concat, + STATE(743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1156), 6, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1262), 42, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69672,11 +70173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -69685,11 +70183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -69704,75 +70200,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18720] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_DQUOTE, - STATE(1370), 1, - sym_string, - ACTIONS(2923), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [18780] = 6, + [18756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(2799), 1, aux_sym_concatenation_token1, - ACTIONS(2930), 1, + ACTIONS(2801), 1, sym__concat, - STATE(642), 1, + STATE(608), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(2823), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69794,7 +70237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -69812,42 +70254,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18840] = 12, + [18816] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_LT_LT_LT, - ACTIONS(2899), 1, + ACTIONS(2590), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2879), 1, sym_variable_name, - STATE(4008), 1, + STATE(4001), 1, sym_subscript, - ACTIONS(2592), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, + ACTIONS(2900), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2702), 2, + STATE(2697), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(2933), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2705), 4, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(2703), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, + ACTIONS(2586), 8, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(2584), 24, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, @@ -69872,16 +70312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18912] = 3, + [18884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1245), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1224), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -69904,7 +70345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -69923,76 +70363,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [18966] = 12, + [18938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_LT_LT_LT, - ACTIONS(2899), 1, - sym_variable_name, - STATE(4008), 1, - sym_subscript, - ACTIONS(2592), 2, + ACTIONS(2799), 1, + aux_sym_concatenation_token1, + ACTIONS(2801), 1, + sym__concat, + STATE(608), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, sym_file_descriptor, - sym__brace_start, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2702), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2935), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(2705), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [19038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 4, - sym_file_descriptor, - sym__concat, sym__bare_dollar, sym__brace_start, - ACTIONS(1196), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -70002,7 +70388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -70015,11 +70400,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -70034,32 +70417,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [18998] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(322), 1, + anon_sym_DQUOTE, + ACTIONS(1135), 1, + sym_test_operator, + STATE(1382), 1, + sym_string, + ACTIONS(2892), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2890), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + [19060] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(322), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, sym_test_operator, - [19092] = 3, + STATE(1382), 1, + sym_string, + ACTIONS(2892), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2890), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_COLON, + [19122] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(2283), 1, + anon_sym_DQUOTE, + STATE(1244), 1, + sym_string, + ACTIONS(2451), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 3, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 42, + ACTIONS(2449), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 30, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70068,12 +70569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -70085,43 +70582,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [19146] = 6, + [19184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2929), 1, aux_sym_concatenation_token1, - ACTIONS(2871), 1, + ACTIONS(2959), 1, sym__concat, - STATE(627), 1, + STATE(640), 1, aux_sym_concatenation_repeat1, - ACTIONS(2819), 3, + ACTIONS(1173), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2817), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -70138,24 +70634,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, - sym_test_operator, - [19206] = 6, + [19244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 1, - aux_sym_concatenation_token1, - ACTIONS(2879), 1, - sym__concat, - STATE(665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1225), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2937), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -70168,16 +70662,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -70191,97 +70686,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, - sym_test_operator, - [19266] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_DQUOTE, - STATE(1370), 1, - sym_string, - ACTIONS(2923), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [19326] = 7, + [19298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_DQUOTE, - STATE(1729), 1, - sym_string, - ACTIONS(2945), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1249), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2941), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70289,8 +70721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -70302,21 +70738,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [19388] = 6, + [19352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2929), 1, aux_sym_concatenation_token1, - ACTIONS(2879), 1, + ACTIONS(2965), 1, sym__concat, - STATE(624), 1, + STATE(654), 1, aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(2963), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -70337,7 +70774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -70356,22 +70792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [19448] = 7, + [19412] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, + ACTIONS(322), 1, anon_sym_DQUOTE, - STATE(1729), 1, + ACTIONS(1135), 1, + sym_test_operator, + STATE(1382), 1, sym_string, - ACTIONS(2945), 2, + ACTIONS(2892), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2941), 9, + ACTIONS(2890), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70381,74 +70814,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 30, - anon_sym_LPAREN_LPAREN, + ACTIONS(1127), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [19510] = 7, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_COLON, + [19474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1166), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, + ACTIONS(2929), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(2965), 1, sym__concat, - STATE(728), 1, + STATE(654), 1, aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(2969), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -70465,20 +70899,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [19572] = 3, + [19534] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, - sym_file_descriptor, + ACTIONS(2929), 1, + aux_sym_concatenation_token1, + ACTIONS(2965), 1, sym__concat, - sym__bare_dollar, + STATE(638), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2973), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1200), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(2971), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -70491,18 +70931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -70516,20 +70953,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [19626] = 3, + [19594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, - sym_file_descriptor, + ACTIONS(2929), 1, + aux_sym_concatenation_token1, + ACTIONS(2965), 1, sym__concat, - sym__bare_dollar, + STATE(638), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -70542,18 +70985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -70567,17 +71007,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, - sym_test_operator, - [19680] = 3, + [19654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1204), 42, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -70600,7 +71042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -70619,18 +71060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [19734] = 6, + [19708] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(322), 1, + ACTIONS(202), 1, anon_sym_DQUOTE, - STATE(1370), 1, + ACTIONS(1135), 1, + sym_test_operator, + STATE(1444), 1, sym_string, - ACTIONS(2923), 2, + ACTIONS(2721), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, + ACTIONS(2719), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70640,7 +71082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 33, + ACTIONS(1127), 32, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -70672,19 +71115,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - anon_sym_COLON, + [19770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2929), 1, + aux_sym_concatenation_token1, + ACTIONS(2965), 1, + sym__concat, + STATE(654), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [19794] = 6, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [19830] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(322), 1, + ACTIONS(202), 1, anon_sym_DQUOTE, - STATE(1370), 1, + ACTIONS(1139), 1, + sym_test_operator, + STATE(1444), 1, sym_string, - ACTIONS(2923), 2, + ACTIONS(2721), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, + ACTIONS(2719), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70694,7 +71191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 33, + ACTIONS(1137), 32, + anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -70726,19 +71224,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - anon_sym_COLON, - sym_test_operator, - [19854] = 6, + [19892] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2283), 1, anon_sym_DQUOTE, - STATE(1524), 1, + STATE(1244), 1, sym_string, - ACTIONS(2730), 2, + ACTIONS(2451), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2726), 9, + ACTIONS(1135), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2449), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70748,51 +71248,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1127), 30, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [19914] = 6, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [19954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(322), 1, anon_sym_DQUOTE, - STATE(1524), 1, + ACTIONS(1139), 1, + sym_test_operator, + STATE(1382), 1, sym_string, - ACTIONS(2730), 2, + ACTIONS(2892), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2726), 9, + ACTIONS(2890), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -70802,7 +71301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 33, + ACTIONS(1137), 32, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -70831,54 +71330,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_AMP, anon_sym_CARET, - sym_test_operator, - [19974] = 7, + [20016] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_DQUOTE, - STATE(1540), 1, - sym_string, - ACTIONS(2959), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, - sym_file_descriptor, + ACTIONS(2879), 1, sym_variable_name, - sym__brace_start, - ACTIONS(2955), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 30, - anon_sym_LPAREN_LPAREN, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + ACTIONS(2981), 1, + aux_sym_heredoc_redirect_token1, + STATE(4001), 1, + sym_subscript, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2898), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(2900), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2697), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2979), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -70890,41 +71395,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [20036] = 7, + [20090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_DQUOTE, - STATE(1540), 1, - sym_string, - ACTIONS(2959), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + ACTIONS(1233), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2955), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -70932,8 +71429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -70945,42 +71446,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [20098] = 6, + [20144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(2799), 1, aux_sym_concatenation_token1, - ACTIONS(2964), 1, + ACTIONS(2801), 1, sym__concat, - STATE(664), 1, + STATE(621), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(1156), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -70997,46 +71499,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [20158] = 6, + [20204] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2875), 1, - aux_sym_concatenation_token1, - ACTIONS(2967), 1, - sym__concat, - STATE(664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, - sym_file_descriptor, + ACTIONS(2418), 1, + anon_sym_BQUOTE, + ACTIONS(2914), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_variable_name, - sym__brace_start, - ACTIONS(1184), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(2985), 1, + aux_sym_heredoc_redirect_token1, + STATE(4016), 1, + sym_subscript, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2908), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(2910), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2561), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2983), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2562), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 23, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -71047,51 +71558,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [20218] = 6, + [20280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(727), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2811), 3, + ACTIONS(1233), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2809), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71105,22 +71610,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, - sym_test_operator, - [20277] = 6, + [20333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - aux_sym_concatenation_token1, - ACTIONS(2971), 1, - sym__concat, - STATE(696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1237), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71141,10 +71643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71158,21 +71660,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, - sym_test_operator, - [20336] = 6, + [20386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(2987), 1, aux_sym_concatenation_token1, - ACTIONS(2979), 1, + ACTIONS(2989), 1, sym__concat, - STATE(707), 1, + STATE(684), 1, aux_sym_concatenation_repeat1, - ACTIONS(2977), 2, + ACTIONS(1179), 4, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(2973), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71193,7 +71697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71212,26 +71715,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [20395] = 7, + [20445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2991), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(2993), 1, sym__concat, - ACTIONS(2981), 1, - anon_sym_LPAREN, - STATE(814), 1, + STATE(731), 1, aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(2973), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2971), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -71240,15 +71741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71265,17 +71766,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, - sym_test_operator, - [20456] = 3, + [20504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, - sym_file_descriptor, + ACTIONS(2999), 1, + aux_sym_concatenation_token1, + ACTIONS(3001), 1, sym__concat, + STATE(714), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71296,11 +71804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71314,18 +71820,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, - sym_test_operator, - [20509] = 3, + [20563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, - sym_file_descriptor, + ACTIONS(2999), 1, + aux_sym_concatenation_token1, + ACTIONS(3001), 1, sym__concat, + STATE(735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71346,11 +71857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71364,25 +71873,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, - sym_test_operator, - [20562] = 6, + [20622] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - aux_sym_concatenation_token1, - ACTIONS(2985), 1, - sym__concat, - STATE(733), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(3009), 1, + anon_sym_DQUOTE, + STATE(1637), 1, + sym_string, + ACTIONS(3011), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 3, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 39, + ACTIONS(3007), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 29, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -71390,9 +71907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -71400,13 +71914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -71417,18 +71927,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, - sym_test_operator, - [20621] = 3, + [20683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1249), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1220), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -71450,7 +71960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71469,29 +71978,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [20674] = 3, + [20736] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(3009), 1, + anon_sym_DQUOTE, + STATE(1637), 1, + sym_string, + ACTIONS(3011), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 41, + ACTIONS(3007), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 29, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -71499,14 +72018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -71517,44 +72031,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [20727] = 3, + [20797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, - sym_file_descriptor, + ACTIONS(2987), 1, + aux_sym_concatenation_token1, + ACTIONS(3017), 1, sym__concat, - sym__bare_dollar, + STATE(674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3015), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(3013), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71568,17 +72083,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, - sym_test_operator, - [20780] = 3, + [20856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, - sym_file_descriptor, + ACTIONS(2987), 1, + aux_sym_concatenation_token1, + ACTIONS(3017), 1, sym__concat, - sym_variable_name, + STATE(699), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3021), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71599,11 +72120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71619,16 +72138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [20833] = 3, + [20915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, - sym_file_descriptor, + ACTIONS(2991), 1, + aux_sym_concatenation_token1, + ACTIONS(2993), 1, sym__concat, + STATE(708), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2963), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71637,7 +72162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -71649,11 +72173,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71669,22 +72191,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [20886] = 5, + [20974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - sym__special_character, - STATE(692), 1, - aux_sym__literal_repeat1, - ACTIONS(2811), 3, + ACTIONS(3023), 1, + aux_sym_concatenation_token1, + ACTIONS(3026), 1, + sym__concat, + STATE(684), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 4, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(2809), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -71697,18 +72220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -71720,39 +72242,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, - sym_test_operator, - [20943] = 3, + [21033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71770,43 +72292,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [20996] = 6, + [21086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(3029), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(3032), 1, sym__concat, - STATE(727), 1, + STATE(686), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1185), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71823,17 +72345,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, - sym_test_operator, - [21055] = 3, + [21145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71854,7 +72378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -71874,41 +72397,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [21108] = 3, + [21198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, - sym_file_descriptor, + ACTIONS(2955), 1, + aux_sym_concatenation_token1, + ACTIONS(3035), 1, sym__concat, - sym_variable_name, + STATE(690), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 6, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71922,18 +72449,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, - sym_test_operator, - [21161] = 3, + [21257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, - sym_file_descriptor, + ACTIONS(2991), 1, + aux_sym_concatenation_token1, + ACTIONS(2993), 1, sym__concat, + STATE(708), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -71942,7 +72474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -71954,11 +72485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -71974,41 +72503,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [21214] = 6, + [21316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(3037), 1, aux_sym_concatenation_token1, - ACTIONS(2979), 1, + ACTIONS(3040), 1, sym__concat, - STATE(724), 1, + STATE(690), 1, aux_sym_concatenation_repeat1, - ACTIONS(2991), 2, + ACTIONS(1185), 6, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2989), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72025,39 +72555,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, - sym_test_operator, - [21273] = 3, + [21375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1238), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72075,43 +72605,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [21326] = 6, + [21428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(2985), 1, + ACTIONS(2951), 1, sym__concat, - STATE(733), 1, + STATE(717), 1, aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(2809), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2937), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72128,43 +72658,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [21385] = 6, + [21487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(2985), 1, + ACTIONS(2951), 1, sym__concat, - STATE(734), 1, + STATE(724), 1, aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(2819), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2947), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72181,23 +72711,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, - sym_test_operator, - [21444] = 6, + [21546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, - aux_sym_concatenation_token1, - ACTIONS(2996), 1, - sym__concat, - STATE(688), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(1217), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -72218,10 +72743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -72235,21 +72760,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, - sym_test_operator, - [21503] = 6, + [21599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(2987), 1, aux_sym_concatenation_token1, - ACTIONS(2979), 1, + ACTIONS(3017), 1, sym__concat, - STATE(707), 1, + STATE(699), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(1169), 4, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -72270,7 +72797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72289,76 +72815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [21562] = 7, + [21658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_DQUOTE, - STATE(1722), 1, - sym_string, - ACTIONS(1145), 2, + ACTIONS(1213), 6, sym_file_descriptor, - sym__brace_start, - ACTIONS(3003), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2999), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [21623] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2883), 1, - aux_sym_concatenation_token1, - ACTIONS(3005), 1, sym__concat, - STATE(721), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 4, - sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1190), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -72370,6 +72837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -72378,10 +72847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -72396,19 +72865,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [21682] = 5, + [21711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(3043), 1, sym__special_character, - STATE(692), 1, + STATE(757), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(2823), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -72431,7 +72901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72448,32 +72917,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [21739] = 7, + [21768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, - anon_sym_DQUOTE, - STATE(1722), 1, - sym_string, - ACTIONS(1141), 2, + ACTIONS(2991), 1, + aux_sym_concatenation_token1, + ACTIONS(2993), 1, + sym__concat, + STATE(731), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3003), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2999), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -72481,6 +72942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -72489,8 +72953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -72501,22 +72968,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, - sym_test_operator, - [21800] = 6, + [21827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2987), 1, aux_sym_concatenation_token1, - ACTIONS(3010), 1, + ACTIONS(3045), 1, sym__concat, - STATE(688), 1, + STATE(684), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1173), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -72537,7 +73005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72554,17 +73021,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, - sym_test_operator, - [21859] = 3, + [21886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, - sym_file_descriptor, + ACTIONS(2955), 1, + aux_sym_concatenation_token1, + ACTIONS(2957), 1, sym__concat, + STATE(743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2805), 6, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1238), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -72576,8 +73051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -72586,11 +73059,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -72605,42 +73076,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [21912] = 6, + [21945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2955), 1, aux_sym_concatenation_token1, - ACTIONS(3012), 1, + ACTIONS(2957), 1, sym__concat, STATE(688), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(2823), 6, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1184), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72658,16 +73129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [21971] = 3, + [22004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, + ACTIONS(1241), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1200), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -72689,7 +73161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72708,16 +73179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22024] = 3, + [22057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1224), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -72739,7 +73211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72758,19 +73229,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22077] = 3, + [22110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, - sym_file_descriptor, + ACTIONS(2991), 1, + aux_sym_concatenation_token1, + ACTIONS(2993), 1, sym__concat, - sym__bare_dollar, + STATE(708), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -72782,18 +73258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -72807,17 +73280,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, - sym_test_operator, - [22130] = 3, + [22169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1185), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1266), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -72838,7 +73313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72858,16 +73332,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [22183] = 3, + [22222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1261), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -72888,7 +73363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72908,19 +73382,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [22236] = 5, + [22275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3043), 1, sym__special_character, - STATE(692), 1, + STATE(757), 1, aux_sym__literal_repeat1, - ACTIONS(222), 3, + ACTIONS(218), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(189), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -72943,7 +73418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -72960,19 +73434,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22293] = 3, + [22332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, - sym_file_descriptor, + ACTIONS(2991), 1, + aux_sym_concatenation_token1, + ACTIONS(3047), 1, sym__concat, - sym__bare_dollar, + STATE(686), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -72984,18 +73463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73009,17 +73485,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, - sym_test_operator, - [22346] = 3, + [22391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1245), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1254), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73041,7 +73519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73060,16 +73537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22399] = 3, + [22444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -73090,7 +73568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73110,16 +73587,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [22452] = 3, + [22497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, - sym_file_descriptor, + ACTIONS(3049), 1, + aux_sym_concatenation_token1, + ACTIONS(3052), 1, sym__concat, + STATE(711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 5, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73129,10 +73612,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -73141,11 +73623,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73160,44 +73640,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22505] = 6, + [22556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, - aux_sym_concatenation_token1, - ACTIONS(3014), 1, - sym__concat, - STATE(747), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(1207), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1184), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73211,24 +73689,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, - sym_test_operator, - [22564] = 6, + [22609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(2885), 1, + ACTIONS(2951), 1, sym__concat, - STATE(729), 1, + STATE(724), 1, aux_sym_concatenation_repeat1, - ACTIONS(2811), 4, + ACTIONS(218), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2809), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73238,6 +73715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -73248,7 +73726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73266,42 +73743,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22623] = 6, + [22668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, + ACTIONS(2999), 1, aux_sym_concatenation_token1, - ACTIONS(2885), 1, + ACTIONS(3055), 1, sym__concat, - STATE(691), 1, + STATE(763), 1, aux_sym_concatenation_repeat1, - ACTIONS(2819), 4, + ACTIONS(1173), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2817), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73319,42 +73796,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22682] = 3, + [22727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, - sym_file_descriptor, + ACTIONS(2999), 1, + aux_sym_concatenation_token1, + ACTIONS(3001), 1, sym__concat, - sym__bare_dollar, + STATE(714), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73369,16 +73849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22735] = 3, + [22786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73400,7 +73881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73419,16 +73899,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22788] = 3, + [22839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(3057), 1, sym__concat, + STATE(711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73438,10 +73924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -73450,11 +73935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73469,41 +73952,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [22841] = 3, + [22898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, sym__concat, - sym_variable_name, + STATE(717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1156), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73517,40 +74004,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, - sym_test_operator, - [22894] = 3, + [22957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1203), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73568,24 +74053,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, - sym_test_operator, - [22947] = 6, + [23010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2955), 1, aux_sym_concatenation_token1, - ACTIONS(2985), 1, + ACTIONS(2957), 1, sym__concat, - STATE(734), 1, + STATE(743), 1, aux_sym_concatenation_repeat1, - ACTIONS(2877), 3, + ACTIONS(1156), 6, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2873), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -73594,16 +74083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73620,23 +74107,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, - sym_test_operator, - [23006] = 6, + [23069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2955), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(2957), 1, sym__concat, - STATE(728), 1, + STATE(688), 1, aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(1169), 6, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1159), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73646,7 +74134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -73657,7 +74144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73675,16 +74161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23065] = 3, + [23128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73706,7 +74193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73725,22 +74211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23118] = 6, + [23181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, - aux_sym_concatenation_token1, - ACTIONS(2885), 1, - sym__concat, - STATE(691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2863), 4, + ACTIONS(1207), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2861), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73752,6 +74233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -73760,10 +74243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73778,21 +74261,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23177] = 6, + [23234] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(3059), 1, sym__concat, - STATE(727), 1, + STATE(711), 1, aux_sym_concatenation_repeat1, - ACTIONS(222), 3, + ACTIONS(1173), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(189), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73813,7 +74297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73831,16 +74314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23236] = 3, + [23293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1225), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -73861,7 +74345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73881,22 +74364,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [23289] = 6, + [23346] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(3019), 1, + ACTIONS(2951), 1, sym__concat, - STATE(721), 1, + ACTIONS(3061), 1, + anon_sym_LPAREN, + STATE(874), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 4, + ACTIONS(1156), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1170), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -73916,7 +74401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -73934,45 +74418,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23348] = 6, + [23407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, - aux_sym_concatenation_token1, - ACTIONS(2885), 1, - sym__concat, - STATE(729), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2859), 4, + ACTIONS(1207), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2857), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -73986,22 +74466,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, - sym_test_operator, - [23407] = 6, + [23460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2999), 1, aux_sym_concatenation_token1, - ACTIONS(2985), 1, + ACTIONS(3001), 1, sym__concat, - STATE(733), 1, + STATE(714), 1, aux_sym_concatenation_repeat1, - ACTIONS(2889), 3, + ACTIONS(3065), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2887), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -74010,6 +74492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -74021,7 +74504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74038,22 +74520,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + [23519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - [23466] = 6, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [23572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(2999), 1, aux_sym_concatenation_token1, - ACTIONS(3022), 1, + ACTIONS(3001), 1, sym__concat, - STATE(747), 1, + STATE(735), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(3069), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -74074,7 +74607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74091,44 +74623,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [23525] = 6, + [23631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2991), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(3071), 1, sym__concat, - STATE(727), 1, + STATE(686), 1, aux_sym_concatenation_repeat1, - ACTIONS(2859), 3, + ACTIONS(1179), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2857), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74145,22 +74675,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, - sym_test_operator, - [23584] = 6, + [23690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(728), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2863), 3, + ACTIONS(1185), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2861), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74170,9 +74697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -74181,10 +74709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74199,45 +74727,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23643] = 6, + [23743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(3024), 1, - sym__concat, - STATE(754), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1249), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74251,22 +74775,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, - sym_test_operator, - [23702] = 6, + [23796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(3026), 1, - sym__concat, - STATE(754), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1257), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1190), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74276,9 +74797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -74287,10 +74809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74305,42 +74827,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23761] = 6, + [23849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, + ACTIONS(2999), 1, aux_sym_concatenation_token1, - ACTIONS(3028), 1, + ACTIONS(3073), 1, sym__concat, - STATE(721), 1, + STATE(763), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 4, + ACTIONS(1179), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1184), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74358,38 +74880,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [23908] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(322), 1, + anon_sym_DQUOTE, + ACTIONS(1135), 1, + sym_test_operator, + STATE(1382), 1, + sym_string, + ACTIONS(2892), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2890), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 31, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + [23969] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(322), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, sym_test_operator, - [23820] = 3, + STATE(1382), 1, + sym_string, + ACTIONS(2892), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2890), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 31, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP, + anon_sym_CARET, + [24030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(1245), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1262), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74407,17 +75036,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, - sym_test_operator, - [23873] = 3, + [24083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, - sym_file_descriptor, + ACTIONS(2955), 1, + aux_sym_concatenation_token1, + ACTIONS(2957), 1, sym__concat, + STATE(743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2809), 6, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1208), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74429,8 +75066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -74439,11 +75074,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74458,16 +75091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23926] = 3, + [24142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1265), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1266), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74489,7 +75123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74508,21 +75141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [23979] = 6, + [24195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - aux_sym_concatenation_token1, - ACTIONS(3030), 1, - sym__concat, - STATE(748), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1265), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -74531,6 +75160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -74542,10 +75172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74561,21 +75191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [24038] = 6, + [24248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2999), 1, aux_sym_concatenation_token1, - ACTIONS(3032), 1, + ACTIONS(3001), 1, sym__concat, - STATE(748), 1, + STATE(714), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(2969), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -74584,6 +75215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -74595,7 +75227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74612,43 +75243,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [24097] = 3, + [24307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, - sym_file_descriptor, + ACTIONS(2955), 1, + aux_sym_concatenation_token1, + ACTIONS(3075), 1, sym__concat, - sym_variable_name, + STATE(690), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 6, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1228), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74662,18 +75296,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, - sym_test_operator, - [24150] = 3, + [24366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1212), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74695,7 +75329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74714,16 +75347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [24203] = 3, + [24419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -74744,7 +75378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74764,74 +75397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [24256] = 6, + [24472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, - aux_sym_concatenation_token1, - ACTIONS(2885), 1, - sym__concat, - STATE(729), 1, - aux_sym_concatenation_repeat1, - ACTIONS(222), 4, + ACTIONS(1241), 6, sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(189), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24315] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 1, - aux_sym_concatenation_token1, - ACTIONS(2971), 1, sym__concat, - STATE(694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 3, - sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3034), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -74852,10 +75428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -74869,23 +75445,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, - sym_test_operator, - [24374] = 6, + [24525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, + ACTIONS(2955), 1, aux_sym_concatenation_token1, - ACTIONS(2885), 1, + ACTIONS(2957), 1, sym__concat, - STATE(691), 1, + STATE(688), 1, aux_sym_concatenation_repeat1, - ACTIONS(1168), 4, + ACTIONS(218), 6, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1159), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74905,7 +75483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74923,23 +75500,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [24433] = 7, + [24584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(2951), 1, sym__concat, - ACTIONS(3038), 1, - anon_sym_LPAREN, - STATE(814), 1, + STATE(724), 1, aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(1169), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1159), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -74949,6 +75525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -74959,7 +75536,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -74977,22 +75553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [24494] = 6, + [24643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2883), 1, - aux_sym_concatenation_token1, - ACTIONS(2885), 1, - sym__concat, - STATE(729), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 4, + ACTIONS(1217), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1180), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -75004,6 +75575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -75012,10 +75585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75030,45 +75603,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [24553] = 6, + [24696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - aux_sym_concatenation_token1, - ACTIONS(2971), 1, - sym__concat, - STATE(696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 3, + ACTIONS(1225), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3040), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75083,21 +75653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [24612] = 6, + [24749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - aux_sym_concatenation_token1, - ACTIONS(2971), 1, - sym__concat, - STATE(694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 3, + ACTIONS(1253), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3044), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -75118,10 +75684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75135,148 +75701,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [24671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_DQUOTE, - STATE(1370), 1, - sym_string, - ACTIONS(2923), 2, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [24730] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_DQUOTE, - STATE(1370), 1, - sym_string, - ACTIONS(2923), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP, - anon_sym_CARET, - sym_test_operator, - [24789] = 6, + sym_word, + [24802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(3051), 1, + ACTIONS(2951), 1, sym__concat, - STATE(747), 1, + STATE(724), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 2, + ACTIONS(2823), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75293,25 +75755,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, - sym_test_operator, - [24848] = 6, + [24861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, + ACTIONS(2955), 1, aux_sym_concatenation_token1, - ACTIONS(3057), 1, + ACTIONS(2957), 1, sym__concat, - STATE(748), 1, + STATE(688), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(2819), 6, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75320,16 +75784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75346,21 +75808,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, - sym_test_operator, - [24907] = 5, + [24920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3043), 1, sym__special_character, - STATE(692), 1, + STATE(757), 1, aux_sym__literal_repeat1, - ACTIONS(2859), 3, + ACTIONS(2819), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2857), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -75383,7 +75845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75400,21 +75861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [24964] = 6, + [24977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - aux_sym_concatenation_token1, - ACTIONS(2971), 1, - sym__concat, - STATE(696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 3, + ACTIONS(1213), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3060), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -75435,10 +75892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75452,46 +75909,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [25023] = 6, + [25030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(728), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2819), 3, + ACTIONS(1257), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2817), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75505,24 +75959,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, - sym_test_operator, - [25082] = 6, + [25083] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - aux_sym_concatenation_token1, - ACTIONS(2971), 1, - sym__concat, - STATE(694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(3077), 1, + sym__special_character, + STATE(757), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2947), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -75535,18 +75990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -75559,37 +76013,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [25141] = 3, + [25140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, + ACTIONS(1261), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1200), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75607,23 +76062,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, - sym_test_operator, - [25194] = 6, + [25193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(3067), 1, + ACTIONS(2951), 1, sym__concat, - STATE(754), 1, + STATE(717), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(2805), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -75644,7 +76099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75662,69 +76116,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [25253] = 6, + [25252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2999), 1, aux_sym_concatenation_token1, - ACTIONS(2971), 1, + ACTIONS(3001), 1, sym__concat, - STATE(696), 1, + STATE(735), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(2977), 5, sym_file_descriptor, sym_variable_name, - sym__brace_start, - ACTIONS(1180), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [25312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, sym__brace_start, - ACTIONS(1262), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -75745,11 +76152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75763,43 +76168,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [25365] = 3, + [25311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, sym__concat, - sym_variable_name, + ACTIONS(3080), 1, + anon_sym_LPAREN, + STATE(874), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1156), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1224), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -75813,39 +76222,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, - sym_test_operator, - [25418] = 3, + [25372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1203), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -75864,119 +76273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [25470] = 6, + [25425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, + ACTIONS(3082), 1, aux_sym_concatenation_token1, - ACTIONS(3072), 1, + ACTIONS(3085), 1, sym__concat, - STATE(774), 1, + STATE(763), 1, aux_sym_concatenation_repeat1, - ACTIONS(2889), 4, + ACTIONS(1185), 5, sym_file_descriptor, sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2887), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, sym_test_operator, - [25528] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3076), 1, - sym__concat, - STATE(793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, - sym_file_descriptor, - sym_variable_name, sym__brace_start, - ACTIONS(1184), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - sym_test_operator, - [25586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1224), 41, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -75997,11 +76309,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76015,23 +76325,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, - sym_test_operator, - [25638] = 6, + [25484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(764), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2877), 3, + ACTIONS(1269), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2873), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76040,9 +76345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76050,10 +76356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76069,21 +76375,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [25696] = 6, + [25536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3088), 1, aux_sym_concatenation_token1, - ACTIONS(3078), 1, + ACTIONS(3090), 1, sym__concat, - STATE(760), 1, + STATE(847), 1, aux_sym_concatenation_repeat1, - ACTIONS(2889), 3, + ACTIONS(1169), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2887), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76092,9 +76398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76102,7 +76409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76121,43 +76427,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [25754] = 6, + [25594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3080), 1, - sym__concat, - STATE(793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1221), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1190), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76171,39 +76475,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, - sym_test_operator, - [25812] = 3, + [25646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1203), 7, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1204), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76222,16 +76525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [25864] = 3, + [25698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1229), 7, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1224), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76241,7 +76546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -76252,7 +76556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76271,16 +76574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [25916] = 3, + [25750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1233), 7, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76290,7 +76595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -76301,7 +76605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76320,19 +76623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [25968] = 5, + [25802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, - sym__special_character, - STATE(807), 1, - aux_sym__literal_repeat1, - ACTIONS(2859), 3, + ACTIONS(1169), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2857), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76342,6 +76642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -76354,11 +76655,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -76371,22 +76672,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [26024] = 6, + [25854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, + ACTIONS(3092), 1, aux_sym_concatenation_token1, - ACTIONS(3072), 1, + ACTIONS(3094), 1, sym__concat, - STATE(774), 1, + STATE(800), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 4, + ACTIONS(2973), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1180), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2971), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76404,7 +76706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76423,16 +76724,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [26082] = 3, + [25912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, - sym_file_descriptor, + ACTIONS(3092), 1, + aux_sym_concatenation_token1, + ACTIONS(3094), 1, sym__concat, + STATE(787), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2963), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76443,8 +76751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76452,11 +76758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76472,16 +76776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [26134] = 3, + [25970] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, - sym_file_descriptor, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, sym__concat, + STATE(781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2963), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76490,10 +76800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76501,11 +76810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76521,19 +76828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [26186] = 3, + [26028] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, - sym_file_descriptor, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, sym__concat, - sym__bare_dollar, + STATE(803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2973), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2971), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -76544,18 +76856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76569,38 +76878,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, - sym_test_operator, - [26238] = 3, + [26086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76619,43 +76929,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [26290] = 6, + [26138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, - aux_sym_concatenation_token1, - ACTIONS(3084), 1, - sym__concat, - STATE(839), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 4, + ACTIONS(1213), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1184), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76669,39 +76977,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, - sym_test_operator, - [26348] = 3, + [26190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1257), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76720,36 +77027,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [26400] = 3, + [26242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 3, + ACTIONS(1217), 7, sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1238), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76767,18 +77075,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, - sym_test_operator, - [26452] = 3, + [26294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1207), 7, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -76788,7 +77097,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -76799,7 +77107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76818,37 +77125,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [26504] = 3, + [26346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76866,17 +77172,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, - sym_test_operator, - [26556] = 3, + [26398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3100), 1, sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76885,10 +77198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76896,11 +77208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -76916,16 +77226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [26608] = 3, + [26456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1185), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76946,7 +77257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -76965,16 +77275,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [26660] = 3, + [26508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, - sym_file_descriptor, + ACTIONS(3092), 1, + aux_sym_concatenation_token1, + ACTIONS(3094), 1, sym__concat, + STATE(787), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -76985,8 +77302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76994,11 +77309,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77014,16 +77327,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [26712] = 3, + [26566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77032,7 +77346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -77044,7 +77357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77062,37 +77374,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, - sym_test_operator, - [26764] = 3, + [26618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77110,38 +77424,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, - sym_test_operator, - [26816] = 3, + [26670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 3, + ACTIONS(1207), 7, sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1254), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77159,23 +77473,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, - sym_test_operator, - [26868] = 6, + [26722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3092), 1, aux_sym_concatenation_token1, - ACTIONS(3088), 1, + ACTIONS(3102), 1, sym__concat, - STATE(890), 1, + STATE(841), 1, aux_sym_concatenation_repeat1, - ACTIONS(3046), 3, + ACTIONS(1173), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3044), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77186,8 +77501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77195,7 +77508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77212,24 +77524,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, - sym_test_operator, - [26926] = 6, + [26780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_concatenation_token1, - ACTIONS(3088), 1, - sym__concat, - STATE(805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 3, + ACTIONS(1269), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3060), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77238,19 +77549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77265,20 +77575,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [26984] = 6, + [26832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3104), 1, aux_sym_concatenation_token1, - ACTIONS(3092), 1, + ACTIONS(3106), 1, sym__concat, - STATE(892), 1, + STATE(815), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(1169), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77298,7 +77610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77315,18 +77626,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, - sym_test_operator, - [27042] = 3, + [26890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77346,7 +77657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77366,16 +77676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27094] = 3, + [26942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(1249), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1262), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -77396,7 +77707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77415,17 +77725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [27146] = 3, + [26994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 5, + ACTIONS(1225), 7, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1170), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -77445,7 +77756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77464,22 +77774,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [27198] = 6, + [27046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3094), 1, + ACTIONS(3098), 1, sym__concat, - STATE(839), 1, + STATE(781), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 4, + ACTIONS(1169), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1190), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77488,6 +77798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -77497,7 +77808,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77516,18 +77826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27256] = 3, + [27104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(1265), 7, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1262), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77536,16 +77849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77563,23 +77874,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, - sym_test_operator, - [27308] = 6, + [27156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 1, - aux_sym_concatenation_token1, - ACTIONS(3099), 1, - sym__concat, - STATE(793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(1185), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77588,9 +77894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77598,10 +77905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77617,41 +77924,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27366] = 3, + [27208] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, - sym_file_descriptor, + ACTIONS(3104), 1, + aux_sym_concatenation_token1, + ACTIONS(3106), 1, sym__concat, - sym__bare_dollar, + STATE(827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1200), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77666,21 +77976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [27418] = 6, + [27266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_concatenation_token1, - ACTIONS(3088), 1, - sym__concat, - STATE(890), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 3, + ACTIONS(1207), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(3034), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77689,6 +77994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -77700,10 +78006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77717,17 +78023,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, - sym_test_operator, - [27476] = 3, + [27318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1233), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1266), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77736,6 +78043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -77747,7 +78055,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77767,22 +78074,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27528] = 6, + [27370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, - aux_sym_concatenation_token1, - ACTIONS(3072), 1, - sym__concat, - STATE(791), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2877), 4, + ACTIONS(1229), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2873), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77791,8 +78092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77800,10 +78104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77819,24 +78123,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27586] = 6, + [27422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(3092), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(3108), 1, sym__concat, - STATE(814), 1, + STATE(841), 1, aux_sym_concatenation_repeat1, - ACTIONS(2819), 3, + ACTIONS(1179), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2817), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77846,14 +78151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77870,17 +78173,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, - sym_test_operator, - [27644] = 3, + [27480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1217), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -77889,6 +78194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -77900,7 +78206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -77918,20 +78223,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27696] = 3, + [27532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, sym__concat, - sym_variable_name, + STATE(870), 1, + aux_sym_concatenation_repeat1, + ACTIONS(218), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1200), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -77940,20 +78251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -77967,23 +78275,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, - sym_test_operator, - [27748] = 6, + [27590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3078), 1, + ACTIONS(3110), 1, sym__concat, - STATE(760), 1, + STATE(917), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1179), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78002,7 +78310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78021,16 +78328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27806] = 3, + [27648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1217), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78050,7 +78358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78070,36 +78377,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27858] = 3, + [27700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1216), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78117,22 +78425,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, - sym_test_operator, - [27910] = 6, + [27752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3102), 1, + ACTIONS(3098), 1, sym__concat, - STATE(909), 1, + STATE(781), 1, aux_sym_concatenation_repeat1, - ACTIONS(2991), 2, + ACTIONS(2969), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2989), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78141,10 +78450,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78152,7 +78460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78171,44 +78478,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [27968] = 6, + [27810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_concatenation_token1, - ACTIONS(3104), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1245), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1184), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78223,23 +78527,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [27862] = 27, + ACTIONS(63), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(421), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, + anon_sym_BQUOTE, + ACTIONS(427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(779), 1, sym_test_operator, - [28026] = 6, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2568), 1, + sym_word, + ACTIONS(3112), 1, + sym__special_character, + ACTIONS(3114), 1, + sym_variable_name, + STATE(457), 1, + sym_command_name, + STATE(1044), 1, + aux_sym__literal_repeat1, + STATE(1134), 1, + sym_concatenation, + STATE(2409), 1, + sym_file_redirect, + STATE(3985), 1, + sym_subscript, + ACTIONS(389), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(777), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1973), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(718), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [27962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(3088), 1, + ACTIONS(2951), 1, sym__concat, - STATE(805), 1, + STATE(874), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1156), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1180), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -78248,16 +78627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78275,19 +78652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28084] = 5, + [28020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(3116), 1, sym__special_character, - STATE(807), 1, + STATE(824), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(2823), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78309,7 +78687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78326,21 +78703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28140] = 6, + [28076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(1261), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1159), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78350,6 +78723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -78360,10 +78734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78378,15 +78752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28198] = 3, + [28128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 3, + ACTIONS(1203), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78407,7 +78783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78425,18 +78800,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, - sym_test_operator, - [28250] = 3, + [28180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1261), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78445,6 +78820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78456,7 +78832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78474,75 +78849,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [28302] = 3, - ACTIONS(3), 1, + [28232] = 27, + ACTIONS(63), 1, sym_comment, - ACTIONS(1252), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1250), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(409), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(413), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(417), 1, aux_sym_number_token1, + ACTIONS(419), 1, aux_sym_number_token2, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, anon_sym_BQUOTE, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(435), 1, + sym_test_operator, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2445), 1, + sym_word, + ACTIONS(3114), 1, + sym_variable_name, + ACTIONS(3118), 1, + sym__special_character, + STATE(480), 1, + sym_command_name, + STATE(1044), 1, + aux_sym__literal_repeat1, + STATE(1134), 1, + sym_concatenation, + STATE(2409), 1, + sym_file_redirect, + STATE(3985), 1, + sym_subscript, + ACTIONS(389), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(415), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [28354] = 6, + STATE(1973), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(809), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [28332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(3104), 1, aux_sym_concatenation_token1, - ACTIONS(3109), 1, + ACTIONS(3120), 1, sym__concat, - STATE(754), 1, + STATE(843), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1173), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -78551,15 +78949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78577,17 +78975,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28412] = 3, + [28390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, sym__concat, + STATE(870), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2823), 5, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1220), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78607,11 +79010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78626,24 +79027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28464] = 6, + [28448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(3111), 1, - sym__concat, - STATE(754), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1257), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -78652,18 +79048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78677,18 +79074,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, - sym_test_operator, - [28522] = 3, + [28500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 5, + ACTIONS(1241), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1254), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78698,6 +79096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -78708,7 +79107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78727,21 +79125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28574] = 6, + [28552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_concatenation_token1, - ACTIONS(3088), 1, - sym__concat, - STATE(890), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1225), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78761,10 +79155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78778,16 +79172,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, - sym_test_operator, - [28632] = 3, + [28604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 3, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + STATE(874), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2805), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2861), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -78797,11 +79199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -78810,7 +79209,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78828,15 +79226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28684] = 3, + [28662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 3, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -78857,7 +79257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -78875,25 +79274,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, - sym_test_operator, - [28736] = 6, + [28714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_concatenation_token1, - ACTIONS(3088), 1, - sym__concat, - STATE(805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1249), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2937), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -78902,19 +79298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78929,44 +79324,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [28794] = 6, + [28766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(222), 3, + ACTIONS(1213), 5, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(189), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -78980,92 +79371,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, - sym_test_operator, - [28852] = 27, - ACTIONS(63), 1, + [28818] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, - anon_sym_DOLLAR, - ACTIONS(413), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(421), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(427), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(431), 1, - sym_test_operator, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2499), 1, - sym_word, - ACTIONS(3113), 1, + ACTIONS(3122), 1, sym__special_character, - ACTIONS(3115), 1, - sym_variable_name, - STATE(460), 1, - sym_command_name, - STATE(1052), 1, + STATE(824), 1, aux_sym__literal_repeat1, - STATE(1238), 1, - sym_concatenation, - STATE(2256), 1, - sym_file_redirect, - STATE(3972), 1, - sym_subscript, - ACTIONS(389), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(415), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1959), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - ACTIONS(1311), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(808), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [28952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1222), 4, + ACTIONS(1275), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1220), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79077,19 +79401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -79101,23 +79423,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, - sym_test_operator, - [29004] = 6, + [28874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3078), 1, + ACTIONS(3098), 1, sym__concat, - STATE(764), 1, + STATE(803), 1, aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(2977), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79136,7 +79458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79155,37 +79476,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [29062] = 3, + [28932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 5, + ACTIONS(1221), 5, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1208), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79203,42 +79523,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [29114] = 3, + [28984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, - sym_file_descriptor, + ACTIONS(3104), 1, + aux_sym_concatenation_token1, + ACTIONS(3125), 1, sym__concat, - sym__bare_dollar, + STATE(843), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79253,19 +79577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [29166] = 5, + [29042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, - sym__special_character, - STATE(858), 1, - aux_sym__literal_repeat1, - ACTIONS(2939), 3, + ACTIONS(1221), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79274,7 +79596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -79286,11 +79607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -79304,22 +79626,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [29222] = 6, + [29094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, - aux_sym_concatenation_token1, - ACTIONS(3102), 1, - sym__concat, - STATE(787), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2977), 2, + ACTIONS(3116), 1, + sym__special_character, + STATE(824), 1, + aux_sym__literal_repeat1, + ACTIONS(218), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2973), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79331,18 +79654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -79354,42 +79676,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [29280] = 3, + [29150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(1156), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1208), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79403,18 +79725,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, - sym_test_operator, - [29332] = 3, + [29202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1249), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79435,7 +79757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79454,21 +79775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [29384] = 6, + [29254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(760), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1269), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79477,9 +79793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79487,10 +79805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79506,16 +79824,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, + [29306] = 27, + ACTIONS(63), 1, + sym_comment, + ACTIONS(709), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_DQUOTE, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 1, sym_test_operator, - [29442] = 3, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2570), 1, + sym_word, + ACTIONS(3114), 1, + sym_variable_name, + ACTIONS(3127), 1, + sym__special_character, + STATE(434), 1, + sym_command_name, + STATE(829), 1, + aux_sym__literal_repeat1, + STATE(996), 1, + sym_concatenation, + STATE(2409), 1, + sym_file_redirect, + STATE(3985), 1, + sym_subscript, + ACTIONS(693), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(715), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1973), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(670), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [29406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1217), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79536,7 +79927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79554,17 +79944,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, - sym_test_operator, - [29494] = 3, + [29458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1185), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1266), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -79585,7 +79977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79604,17 +79995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [29546] = 3, + [29510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 5, + ACTIONS(1257), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1204), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -79624,6 +80015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -79634,7 +80026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79653,70 +80044,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [29598] = 3, - ACTIONS(3), 1, + [29562] = 27, + ACTIONS(63), 1, sym_comment, - ACTIONS(1202), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1200), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(491), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(495), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(499), 1, aux_sym_number_token1, + ACTIONS(501), 1, aux_sym_number_token2, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(507), 1, anon_sym_BQUOTE, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(517), 1, + sym_test_operator, + ACTIONS(519), 1, + sym__brace_start, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2552), 1, + sym_word, + ACTIONS(3114), 1, + sym_variable_name, + ACTIONS(3129), 1, + sym__special_character, + STATE(425), 1, + sym_command_name, + STATE(707), 1, + aux_sym__literal_repeat1, + STATE(830), 1, + sym_concatenation, + STATE(2409), 1, + sym_file_redirect, + STATE(3985), 1, + sym_subscript, + ACTIONS(455), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(497), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [29650] = 6, + STATE(1973), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(586), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [29662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - aux_sym_concatenation_token1, - ACTIONS(3088), 1, - sym__concat, - STATE(805), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 3, + ACTIONS(1213), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3040), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79725,6 +80136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -79736,10 +80148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79754,16 +80166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [29708] = 3, + [29714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1241), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79772,6 +80185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -79783,7 +80197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79801,18 +80214,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, - sym_test_operator, - [29760] = 3, + [29766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1265), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79833,7 +80246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79852,41 +80264,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [29812] = 3, + [29818] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, - sym_file_descriptor, + ACTIONS(3131), 1, + aux_sym_concatenation_token1, + ACTIONS(3134), 1, sym__concat, - sym__bare_dollar, + STATE(841), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -79900,25 +80314,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, - sym_test_operator, - [29864] = 6, + [29876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(3122), 1, + ACTIONS(2951), 1, sym__concat, - STATE(839), 1, + STATE(870), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 4, + ACTIONS(2819), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1170), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -79928,13 +80344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -79951,17 +80367,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, - sym_test_operator, - [29922] = 3, + [29934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 3, - sym_file_descriptor, + ACTIONS(3137), 1, + aux_sym_concatenation_token1, + ACTIONS(3140), 1, sym__concat, + STATE(843), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -79970,7 +80392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -79982,11 +80403,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80000,112 +80419,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, - sym_test_operator, - [29974] = 27, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - aux_sym_number_token1, - ACTIONS(51), 1, - aux_sym_number_token2, - ACTIONS(53), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, - anon_sym_BQUOTE, - ACTIONS(59), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(65), 1, - sym_test_operator, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2495), 1, sym_word, - ACTIONS(3115), 1, - sym_variable_name, - ACTIONS(3125), 1, - sym__special_character, - STATE(445), 1, - sym_command_name, - STATE(969), 1, - aux_sym__literal_repeat1, - STATE(1202), 1, - sym_concatenation, - STATE(2256), 1, - sym_file_redirect, - STATE(3972), 1, - sym_subscript, - ACTIONS(13), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(61), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1959), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - ACTIONS(1311), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(740), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30074] = 3, + [29992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(1213), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80123,111 +80467,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, - sym_test_operator, - [30126] = 27, - ACTIONS(63), 1, - sym_comment, - ACTIONS(409), 1, - anon_sym_DOLLAR, - ACTIONS(413), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(421), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(427), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(777), 1, - sym_test_operator, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2576), 1, - sym_word, - ACTIONS(3115), 1, - sym_variable_name, - ACTIONS(3127), 1, - sym__special_character, - STATE(449), 1, - sym_command_name, - STATE(1052), 1, - aux_sym__literal_repeat1, - STATE(1238), 1, - sym_concatenation, - STATE(2256), 1, - sym_file_redirect, - STATE(3972), 1, - sym_subscript, - ACTIONS(389), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(775), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1959), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - ACTIONS(1311), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(716), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30226] = 3, + [30044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 5, + ACTIONS(1261), 5, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80245,38 +80516,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, - sym_test_operator, - [30278] = 3, + [30096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 5, + ACTIONS(1245), 5, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1266), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80294,25 +80565,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, - sym_test_operator, - [30330] = 6, + [30148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(3088), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(3143), 1, sym__concat, - STATE(812), 1, + STATE(906), 1, aux_sym_concatenation_repeat1, - ACTIONS(2859), 3, + ACTIONS(1173), 4, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(2857), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80321,15 +80592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80346,18 +80617,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, - sym_test_operator, - [30388] = 3, + [30206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, + ACTIONS(1245), 7, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1242), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80377,7 +80650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80396,16 +80668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [30440] = 3, + [30258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(3145), 1, + sym__special_character, + STATE(905), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80414,6 +80690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -80425,13 +80702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80445,20 +80719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [30492] = 3, + [30314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1245), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1238), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80467,15 +80740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80493,38 +80766,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, - sym_test_operator, - [30544] = 3, + [30366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1185), 5, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80542,16 +80815,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, - sym_test_operator, - [30596] = 3, + [30418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 3, + ACTIONS(3145), 1, + sym__special_character, + STATE(905), 1, + aux_sym__literal_repeat1, + ACTIONS(2963), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80572,13 +80851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80592,16 +80868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [30648] = 3, + [30474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1257), 7, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1212), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80611,7 +80889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -80622,7 +80899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80641,15 +80917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [30700] = 3, + [30526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 3, + ACTIONS(1257), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80670,7 +80947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80690,93 +80966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [30752] = 27, - ACTIONS(63), 1, - sym_comment, - ACTIONS(409), 1, - anon_sym_DOLLAR, - ACTIONS(413), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(421), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(427), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(431), 1, - sym_test_operator, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2499), 1, - sym_word, - ACTIONS(3113), 1, - sym__special_character, - ACTIONS(3115), 1, - sym_variable_name, - STATE(469), 1, - sym_command_name, - STATE(1052), 1, - aux_sym__literal_repeat1, - STATE(1238), 1, - sym_concatenation, - STATE(2256), 1, - sym_file_redirect, - STATE(3972), 1, - sym_subscript, - ACTIONS(389), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(415), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1959), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - ACTIONS(1311), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(808), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [30852] = 3, + [30578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 5, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -80785,15 +80987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -80811,22 +81013,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, - sym_test_operator, - [30904] = 6, + [30630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, - aux_sym_concatenation_token1, - ACTIONS(3132), 1, - sym__concat, - STATE(856), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(1233), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80846,10 +81045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80863,16 +81062,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, - sym_test_operator, - [30962] = 3, + [30682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 3, + ACTIONS(1233), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1159), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -80882,11 +81084,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -80895,10 +81095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -80913,19 +81113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [31014] = 5, + [30734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, - sym__special_character, - STATE(858), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(1253), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -80946,11 +81143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -80964,36 +81162,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [31070] = 3, + [30786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 3, + ACTIONS(1253), 7, sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1200), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81011,26 +81210,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, - sym_test_operator, - [31122] = 6, + [30838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(3104), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(3106), 1, sym__concat, - STATE(812), 1, + STATE(815), 1, aux_sym_concatenation_repeat1, - ACTIONS(2811), 3, + ACTIONS(2997), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2809), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -81039,15 +81237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81065,17 +81263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [31180] = 3, + [30896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -81085,6 +81283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -81095,7 +81294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81114,16 +81312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [31232] = 3, + [30948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1241), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81143,7 +81342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81163,37 +81361,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [31284] = 3, + [31000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1265), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1196), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81212,17 +81410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [31336] = 3, + [31052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 5, + ACTIONS(1225), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1200), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -81232,6 +81430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -81242,7 +81441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81261,120 +81459,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [31388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 5, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1224), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + [31104] = 27, + ACTIONS(41), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(45), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(49), 1, aux_sym_number_token1, + ACTIONS(51), 1, aux_sym_number_token2, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(57), 1, anon_sym_BQUOTE, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [31440] = 27, ACTIONS(63), 1, sym_comment, - ACTIONS(491), 1, - anon_sym_DOLLAR, - ACTIONS(495), 1, - anon_sym_DQUOTE, - ACTIONS(499), 1, - aux_sym_number_token1, - ACTIONS(501), 1, - aux_sym_number_token2, - ACTIONS(503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(505), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(509), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(513), 1, + ACTIONS(69), 1, sym_test_operator, - ACTIONS(519), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(1315), 1, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(2503), 1, + ACTIONS(2447), 1, sym_word, - ACTIONS(3115), 1, + ACTIONS(3114), 1, sym_variable_name, - ACTIONS(3138), 1, + ACTIONS(3147), 1, sym__special_character, - STATE(423), 1, + STATE(447), 1, sym_command_name, - STATE(702), 1, + STATE(930), 1, aux_sym__literal_repeat1, - STATE(857), 1, + STATE(1159), 1, sym_concatenation, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(3972), 1, + STATE(3985), 1, sym_subscript, - ACTIONS(455), 2, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(497), 2, + ACTIONS(47), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(511), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1959), 2, + STATE(1973), 2, sym_variable_assignment, aux_sym_command_repeat1, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(598), 9, + STATE(720), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81384,17 +81532,25 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [31540] = 3, + [31204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, sym__concat, - sym_variable_name, + STATE(874), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2809), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1270), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -81403,20 +81559,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81430,26 +81583,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, - sym_test_operator, - [31592] = 6, + [31262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, - aux_sym_concatenation_token1, - ACTIONS(3072), 1, - sym__concat, - STATE(774), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 4, + ACTIONS(1185), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2937), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -81459,16 +81608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81482,24 +81632,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, - sym_test_operator, - [31650] = 6, + [31314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, - aux_sym_concatenation_token1, - ACTIONS(3072), 1, - sym__concat, - STATE(791), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 4, + ACTIONS(1207), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2947), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81508,8 +81651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -81517,10 +81663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81536,20 +81682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [31708] = 6, + [31366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, - aux_sym_concatenation_token1, - ACTIONS(3102), 1, - sym__concat, - STATE(787), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(1237), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81558,6 +81700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -81569,10 +81712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81588,41 +81731,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [31766] = 3, + [31418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(3149), 1, sym__concat, - sym_variable_name, + STATE(711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1266), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81637,36 +81783,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [31818] = 3, + [31476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1208), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81684,38 +81831,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, - sym_test_operator, - [31870] = 3, + [31528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1203), 6, sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81733,17 +81880,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, - sym_test_operator, - [31922] = 3, + [31580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 3, + ACTIONS(1203), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -81764,7 +81911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81784,40 +81930,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [31974] = 3, + [31632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 3, - sym_file_descriptor, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(3151), 1, sym__concat, + STATE(711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1246), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81831,39 +81981,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, - sym_test_operator, - [32026] = 3, + [31690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1237), 7, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1212), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -81882,18 +82031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [32078] = 3, + [31742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(2805), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1208), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -81906,17 +82056,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -81931,71 +82080,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [32130] = 27, + [31794] = 27, ACTIONS(63), 1, sym_comment, - ACTIONS(709), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(713), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(731), 1, - sym_test_operator, - ACTIONS(737), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(1315), 1, + ACTIONS(1025), 1, + sym_test_operator, + ACTIONS(1309), 1, sym_file_descriptor, - ACTIONS(2497), 1, + ACTIONS(2548), 1, sym_word, - ACTIONS(3115), 1, + ACTIONS(3114), 1, sym_variable_name, - ACTIONS(3140), 1, + ACTIONS(3153), 1, sym__special_character, - STATE(432), 1, + STATE(531), 1, sym_command_name, - STATE(882), 1, + STATE(1044), 1, aux_sym__literal_repeat1, - STATE(955), 1, + STATE(1134), 1, sym_concatenation, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(3972), 1, + STATE(3985), 1, sym_subscript, - ACTIONS(693), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(715), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(729), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1959), 2, + ACTIONS(1019), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1973), 2, sym_variable_assignment, aux_sym_command_repeat1, - ACTIONS(1311), 3, + ACTIONS(1305), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(1309), 5, + ACTIONS(1303), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(603), 9, + STATE(1278), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82005,36 +82153,36 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [32230] = 3, + [31894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 5, + ACTIONS(1249), 5, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1212), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82052,38 +82200,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, - sym_test_operator, - [32282] = 3, + [31946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 5, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1196), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82102,38 +82251,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [32334] = 3, + [31998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(3088), 1, + aux_sym_concatenation_token1, + ACTIONS(3155), 1, + sym__concat, + STATE(906), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 4, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82150,46 +82301,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [32386] = 5, + [32056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, - sym__special_character, - STATE(807), 1, - aux_sym__literal_repeat1, - ACTIONS(222), 3, + ACTIONS(1265), 5, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(189), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -82201,17 +82350,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, - sym_test_operator, - [32442] = 3, + [32108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, - sym_file_descriptor, + ACTIONS(3092), 1, + aux_sym_concatenation_token1, + ACTIONS(3094), 1, sym__concat, + STATE(787), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82220,11 +82377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82232,11 +82386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82250,38 +82402,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, - sym_test_operator, - [32494] = 3, + [32166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 5, + ACTIONS(1225), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1216), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82300,89 +82453,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [32546] = 27, - ACTIONS(63), 1, - sym_comment, - ACTIONS(959), 1, - anon_sym_DOLLAR, - ACTIONS(963), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - aux_sym_number_token1, - ACTIONS(969), 1, - aux_sym_number_token2, - ACTIONS(971), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, - anon_sym_BQUOTE, - ACTIONS(977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(981), 1, - sym_test_operator, - ACTIONS(985), 1, - sym__brace_start, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2493), 1, - sym_word, - ACTIONS(2601), 1, - sym__special_character, - ACTIONS(3115), 1, - sym_variable_name, - STATE(551), 1, - sym_command_name, - STATE(1558), 1, - aux_sym__literal_repeat1, - STATE(1724), 1, - sym_concatenation, - STATE(2256), 1, - sym_file_redirect, - STATE(3972), 1, - sym_subscript, - ACTIONS(949), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(965), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1959), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - ACTIONS(1311), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1308), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [32646] = 3, + [32218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1233), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82403,7 +82484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82422,21 +82502,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [32698] = 6, + [32270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2863), 3, + ACTIONS(1261), 7, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2861), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82456,10 +82533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82474,15 +82551,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [32756] = 3, + [32322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 3, - sym_file_descriptor, + ACTIONS(3092), 1, + aux_sym_concatenation_token1, + ACTIONS(3094), 1, sym__concat, + STATE(800), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1266), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82491,11 +82576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82503,11 +82585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -82523,16 +82603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [32808] = 3, + [32380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1245), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82553,7 +82634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82572,21 +82652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [32860] = 6, + [32432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, + ACTIONS(3088), 1, aux_sym_concatenation_token1, - ACTIONS(3142), 1, + ACTIONS(3090), 1, sym__concat, - STATE(856), 1, + STATE(847), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(3021), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82606,7 +82686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82623,16 +82702,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, - sym_test_operator, - [32918] = 3, + [32490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1241), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82653,7 +82734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82673,20 +82753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [32970] = 6, + [32542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 1, + ACTIONS(3088), 1, aux_sym_concatenation_token1, - ACTIONS(3147), 1, + ACTIONS(3090), 1, sym__concat, - STATE(892), 1, + STATE(880), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 2, + ACTIONS(3015), 4, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3013), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82706,7 +82787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82725,19 +82805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [33028] = 5, + [32600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, - sym__special_character, - STATE(858), 1, - aux_sym__literal_repeat1, - ACTIONS(2889), 3, + ACTIONS(1265), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2887), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82746,7 +82824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -82758,11 +82835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -82776,17 +82854,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, + [32652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - [33084] = 3, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + 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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [32704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1213), 7, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1228), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82806,7 +82934,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82825,16 +82952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [33136] = 3, + [32756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -82855,7 +82983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82874,36 +83001,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [33188] = 3, + [32808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82921,19 +83049,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, - sym_test_operator, - [33240] = 3, + [32860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 5, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1262), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -82943,6 +83070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -82953,7 +83081,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -82972,16 +83099,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [32912] = 27, + ACTIONS(63), 1, + sym_comment, + ACTIONS(975), 1, + anon_sym_DOLLAR, + ACTIONS(979), 1, + anon_sym_DQUOTE, + ACTIONS(983), 1, + aux_sym_number_token1, + ACTIONS(985), 1, + aux_sym_number_token2, + ACTIONS(987), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(989), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(991), 1, + anon_sym_BQUOTE, + ACTIONS(993), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(999), 1, sym_test_operator, - [33292] = 3, + ACTIONS(1001), 1, + sym__brace_start, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2550), 1, + sym_word, + ACTIONS(2576), 1, + sym__special_character, + ACTIONS(3114), 1, + sym_variable_name, + STATE(556), 1, + sym_command_name, + STATE(1547), 1, + aux_sym__literal_repeat1, + STATE(1749), 1, + sym_concatenation, + STATE(2409), 1, + sym_file_redirect, + STATE(3985), 1, + sym_subscript, + ACTIONS(965), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(981), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(995), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1973), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(1330), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1225), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83002,7 +83202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83020,38 +83219,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, + [33064] = 27, + ACTIONS(63), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(421), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, + anon_sym_BQUOTE, + ACTIONS(427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(435), 1, sym_test_operator, - [33344] = 3, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(1309), 1, + sym_file_descriptor, + ACTIONS(2445), 1, + sym_word, + ACTIONS(3114), 1, + sym_variable_name, + ACTIONS(3118), 1, + sym__special_character, + STATE(473), 1, + sym_command_name, + STATE(1044), 1, + aux_sym__literal_repeat1, + STATE(1134), 1, + sym_concatenation, + STATE(2409), 1, + sym_file_redirect, + STATE(3985), 1, + sym_subscript, + ACTIONS(389), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(415), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1973), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + ACTIONS(1305), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1303), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(809), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1203), 6, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83069,17 +83341,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, - sym_test_operator, - [33396] = 3, + [33216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83100,7 +83374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83119,16 +83392,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [33268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - [33448] = 3, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [33320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1228), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83149,7 +83472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83168,36 +83490,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [33500] = 3, + [33372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 3, + ACTIONS(1241), 7, sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1250), 41, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83215,18 +83538,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, - sym_test_operator, - [33552] = 3, + [33424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(3157), 1, + sym__special_character, + STATE(905), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1262), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83247,13 +83573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -83265,39 +83588,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [33604] = 3, + [33480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 3, + ACTIONS(3160), 1, + aux_sym_concatenation_token1, + ACTIONS(3163), 1, + sym__concat, + STATE(906), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 4, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(2817), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83314,16 +83640,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, - sym_test_operator, - [33656] = 3, + [33538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 3, + ACTIONS(1249), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1262), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83332,7 +83661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -83344,7 +83672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83364,19 +83691,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [33708] = 5, + [33590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, + ACTIONS(3116), 1, sym__special_character, - STATE(807), 1, + STATE(824), 1, aux_sym__literal_repeat1, - ACTIONS(2811), 3, + ACTIONS(2819), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2809), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -83398,7 +83726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83415,41 +83742,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [33764] = 3, + [33646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, - sym_file_descriptor, + ACTIONS(3104), 1, + aux_sym_concatenation_token1, + ACTIONS(3106), 1, sym__concat, - sym__bare_dollar, + STATE(815), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83464,113 +83794,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [33816] = 27, - ACTIONS(63), 1, - sym_comment, - ACTIONS(409), 1, - anon_sym_DOLLAR, - ACTIONS(413), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, - aux_sym_number_token1, - ACTIONS(419), 1, - aux_sym_number_token2, - ACTIONS(421), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(427), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(1023), 1, - sym_test_operator, - ACTIONS(1315), 1, - sym_file_descriptor, - ACTIONS(2491), 1, - sym_word, - ACTIONS(3115), 1, - sym_variable_name, - ACTIONS(3150), 1, - sym__special_character, - STATE(537), 1, - sym_command_name, - STATE(1052), 1, - aux_sym__literal_repeat1, - STATE(1238), 1, - sym_concatenation, - STATE(2256), 1, - sym_file_redirect, - STATE(3972), 1, - sym_subscript, - ACTIONS(389), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1021), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1959), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - ACTIONS(1311), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(1309), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(1251), 9, - 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] = 6, + [33704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, - aux_sym_concatenation_token1, - ACTIONS(3152), 1, - sym__concat, - STATE(892), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(2809), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1190), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83587,43 +83842,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [33974] = 3, + [33756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, - sym_file_descriptor, + ACTIONS(3104), 1, + aux_sym_concatenation_token1, + ACTIONS(3106), 1, sym__concat, - sym__bare_dollar, + STATE(827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83638,24 +83895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [34026] = 6, + [33814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1253), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -83664,18 +83916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83689,16 +83942,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, - sym_test_operator, - [34084] = 3, + [33866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 41, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83719,7 +83975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83737,17 +83992,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, - sym_test_operator, - [34136] = 3, + [33918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, - sym_file_descriptor, + ACTIONS(3104), 1, + aux_sym_concatenation_token1, + ACTIONS(3106), 1, sym__concat, + STATE(827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83767,11 +84028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83785,23 +84044,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, - sym_test_operator, - [34187] = 6, + [33976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, + ACTIONS(3104), 1, aux_sym_concatenation_token1, - ACTIONS(3156), 1, + ACTIONS(3106), 1, sym__concat, - STATE(943), 1, + STATE(815), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(2969), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1190), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83812,6 +84071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83819,7 +84080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83836,19 +84096,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, - sym_test_operator, - [34244] = 3, + [34034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1228), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83857,8 +84116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83866,7 +84128,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -83884,18 +84145,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, - sym_test_operator, - [34295] = 3, + [34086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, - sym_file_descriptor, + ACTIONS(3166), 1, + aux_sym_concatenation_token1, + ACTIONS(3169), 1, sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1266), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -83914,11 +84180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -83934,43 +84198,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34346] = 5, + [34144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 1, - sym__special_character, - STATE(917), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 2, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + STATE(870), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -83982,36 +84249,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, - sym_test_operator, - [34401] = 9, + [34202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - sym__brace_start, - ACTIONS(2611), 1, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3174), 1, + sym__concat, + STATE(1007), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3021), 4, sym_file_descriptor, - ACTIONS(3161), 1, - sym_variable_name, - STATE(3967), 1, - sym_subscript, - STATE(2928), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2930), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 16, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84019,10 +84283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - ACTIONS(2578), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -84037,46 +84299,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34464] = 9, + [34259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, - sym_variable_name, - STATE(3967), 1, - sym_subscript, - ACTIONS(2592), 2, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(946), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3164), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2928), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2930), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 6, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - ACTIONS(2578), 25, - anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -84092,16 +84352,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [34527] = 3, + [34316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, - sym_file_descriptor, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3180), 1, sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1262), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84110,7 +84376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -84120,11 +84385,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84140,17 +84403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34578] = 3, + [34373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 5, + ACTIONS(1207), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1262), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84168,7 +84432,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84188,16 +84451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34629] = 3, + [34424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1237), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84206,7 +84471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -84216,7 +84480,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84236,16 +84499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34680] = 3, + [34475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1207), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84254,7 +84519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -84264,7 +84528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84284,16 +84547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34731] = 3, + [34526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1217), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84302,7 +84567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -84312,7 +84576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84332,16 +84595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34782] = 3, + [34577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, - sym_file_descriptor, + ACTIONS(3182), 1, + aux_sym_concatenation_token1, + ACTIONS(3185), 1, sym__concat, - sym_variable_name, + STATE(926), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 5, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84350,7 +84619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -84360,11 +84628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84380,16 +84646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [34833] = 3, + [34634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1213), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84398,9 +84665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84408,7 +84676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84426,18 +84693,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, - sym_test_operator, - [34884] = 3, + [34685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, - sym_file_descriptor, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, sym__concat, + STATE(929), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84456,11 +84728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84474,18 +84744,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, - sym_test_operator, - [34935] = 3, + [34742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, - sym_file_descriptor, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3188), 1, sym__concat, + STATE(962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84504,11 +84779,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84522,41 +84795,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, - sym_test_operator, - [34986] = 5, + [34799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 1, + ACTIONS(3190), 1, sym__special_character, - STATE(917), 1, + STATE(966), 1, aux_sym__literal_repeat1, - ACTIONS(2977), 2, + ACTIONS(218), 6, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2973), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84572,18 +84845,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, - sym_test_operator, - [35041] = 3, + [34854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(1225), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84594,8 +84868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84603,7 +84875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84621,16 +84892,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, - sym_test_operator, - [35092] = 3, + [34905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 3, + ACTIONS(1265), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84641,8 +84916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84650,7 +84923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84670,16 +84942,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35143] = 3, + [34956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, - sym_file_descriptor, + ACTIONS(3192), 1, + aux_sym_concatenation_token1, + ACTIONS(3194), 1, sym__concat, - sym_variable_name, + STATE(926), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1200), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84690,8 +84968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84699,11 +84975,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -84717,16 +84991,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, - sym_test_operator, - [35194] = 3, + [35013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 3, + ACTIONS(1229), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84737,8 +85015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84746,7 +85022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84766,15 +85041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35245] = 3, + [35064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, + ACTIONS(1233), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84785,8 +85063,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84794,7 +85070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84814,15 +85089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35296] = 3, + [35115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 3, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1262), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84842,7 +85119,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84860,23 +85136,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, - sym_test_operator, - [35347] = 6, + [35166] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, + ACTIONS(3192), 1, aux_sym_concatenation_token1, - ACTIONS(3168), 1, + ACTIONS(3196), 1, sym__concat, - STATE(943), 1, + STATE(926), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1173), 5, sym_file_descriptor, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1184), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84894,7 +85170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84913,17 +85188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35404] = 3, + [35223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 5, + ACTIONS(1261), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1254), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84941,7 +85217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -84961,19 +85236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35455] = 5, + [35274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - sym__special_character, - STATE(1062), 1, - aux_sym__literal_repeat1, - ACTIONS(2939), 3, + ACTIONS(3192), 1, + aux_sym_concatenation_token1, + ACTIONS(3198), 1, + sym__concat, + STATE(937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -84984,8 +85262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84993,11 +85269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85011,42 +85287,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35510] = 3, + [35331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 3, + ACTIONS(3200), 1, + sym__special_character, + STATE(986), 1, + aux_sym__literal_repeat1, + ACTIONS(2997), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2817), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85059,17 +85337,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [35561] = 3, + [35386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 5, + ACTIONS(1213), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1250), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85087,7 +85366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85107,17 +85385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35612] = 3, + [35437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1185), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1220), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85128,6 +85406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85135,7 +85415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85153,23 +85432,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, - sym_test_operator, - [35663] = 6, + [35488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, - aux_sym_concatenation_token1, - ACTIONS(3172), 1, - sym__concat, - STATE(936), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1253), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1180), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85187,10 +85462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85206,21 +85481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35720] = 6, + [35539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - aux_sym_concatenation_token1, - ACTIONS(3177), 1, - sym__concat, - STATE(943), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(1249), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1170), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85238,10 +85510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85257,17 +85529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [35777] = 3, + [35590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 5, + ACTIONS(1257), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1266), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85278,6 +85550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85285,7 +85559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85303,94 +85576,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, - sym_test_operator, - [35828] = 25, - ACTIONS(63), 1, - sym_comment, - ACTIONS(346), 1, - sym_word, - ACTIONS(355), 1, - anon_sym_LPAREN, - ACTIONS(357), 1, - anon_sym_BANG, - ACTIONS(361), 1, - anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, - aux_sym_number_token1, - ACTIONS(371), 1, - aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(383), 1, - sym_test_operator, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(3180), 1, - sym__special_character, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3184), 1, - sym__regex_no_space, - STATE(1596), 1, - aux_sym__literal_repeat1, - STATE(1797), 1, - sym__expression, - ACTIONS(272), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(367), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(274), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1755), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1428), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35923] = 6, + [35641] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, + ACTIONS(3176), 1, aux_sym_concatenation_token1, - ACTIONS(3188), 1, + ACTIONS(3202), 1, sym__concat, - STATE(1028), 1, + STATE(962), 1, aux_sym_concatenation_repeat1, - ACTIONS(3042), 4, + ACTIONS(1179), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3040), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85399,6 +85601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -85408,7 +85611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85426,22 +85628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [35980] = 6, + [35698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - aux_sym_concatenation_token1, - ACTIONS(3188), 1, - sym__concat, - STATE(1027), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 4, + ACTIONS(1269), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3034), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85459,10 +85657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85476,18 +85674,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, - sym_test_operator, - [36037] = 3, + [35749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1245), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1238), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85505,7 +85705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85525,21 +85724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [36088] = 6, + [35800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3190), 1, - sym__concat, - STATE(793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1241), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85557,10 +85753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85576,21 +85772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [36145] = 6, + [35851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3192), 1, - sym__concat, - STATE(793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1203), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85601,6 +85793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85608,10 +85802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85625,18 +85819,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, - sym_test_operator, - [36202] = 3, + [35902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1185), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85647,8 +85842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85656,7 +85849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85674,17 +85866,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, - sym_test_operator, - [36253] = 3, + [35953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1257), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85695,8 +85890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85704,7 +85897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85722,88 +85914,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, - sym_test_operator, - [36304] = 25, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1119), 1, - sym_word, - ACTIONS(1121), 1, - anon_sym_BANG, - ACTIONS(1127), 1, - sym__special_character, - ACTIONS(1131), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(3196), 1, - sym__regex_no_space, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1450), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1123), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1548), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36399] = 3, + [36004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 5, - sym_file_descriptor, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3206), 1, sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1212), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85821,11 +85950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85839,20 +85966,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [36450] = 3, + [36061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 3, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3206), 1, + sym__concat, + STATE(1061), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -85861,17 +85994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -85889,16 +86018,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [36501] = 3, + [36118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(3200), 1, + sym__special_character, + STATE(986), 1, + aux_sym__literal_repeat1, + ACTIONS(3065), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85907,9 +86040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85917,13 +86052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -85935,17 +86067,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, - sym_test_operator, - [36552] = 3, + [36173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(1221), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -85954,11 +86088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85966,10 +86097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -85985,16 +86116,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [36603] = 3, + [36224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1203), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86005,8 +86138,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86014,7 +86145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86032,18 +86162,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, - sym_test_operator, - [36654] = 3, + [36275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 5, + ACTIONS(3200), 1, + sym__special_character, + STATE(986), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1204), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86052,8 +86186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86061,13 +86198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86079,29 +86213,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, - sym_test_operator, - [36705] = 3, + [36330] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(3208), 1, sym_variable_name, + STATE(3971), 1, + sym_subscript, + ACTIONS(2592), 2, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(2662), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(2914), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2911), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2660), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86109,11 +86250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(2584), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86127,80 +86267,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [36756] = 25, - ACTIONS(63), 1, + [36393] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(2590), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3208), 1, + sym_variable_name, + STATE(3971), 1, + sym_subscript, + ACTIONS(3211), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2914), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(2911), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(324), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym_word, - ACTIONS(1107), 1, - anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, - sym_test_operator, - ACTIONS(3194), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(3196), 1, - sym__regex_no_space, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1450), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1109), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1115), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1111), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1446), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36851] = 25, + sym_word, + [36458] = 25, ACTIONS(63), 1, sym_comment, ACTIONS(361), 1, @@ -86219,23 +86342,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(385), 1, sym__brace_start, - ACTIONS(1029), 1, + ACTIONS(1043), 1, sym_word, - ACTIONS(1031), 1, + ACTIONS(1045), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_BANG, ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(1059), 1, sym_test_operator, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, + ACTIONS(3213), 1, sym__special_character, - ACTIONS(3200), 1, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3217), 1, sym__regex_no_space, - STATE(1488), 1, + STATE(1498), 1, aux_sym__literal_repeat1, - STATE(1686), 1, + STATE(1651), 1, sym__expression, ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, @@ -86243,24 +86366,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1037), 2, + ACTIONS(1049), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1045), 2, + ACTIONS(1057), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1039), 3, + ACTIONS(1051), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1706), 6, + STATE(1715), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1441), 9, + STATE(1419), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86270,16 +86393,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [36946] = 3, + [36553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, - sym_file_descriptor, + ACTIONS(3219), 1, + aux_sym_concatenation_token1, + ACTIONS(3222), 1, sym__concat, + STATE(962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1224), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86288,6 +86417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -86297,11 +86427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86315,18 +86443,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, - sym_test_operator, - [36997] = 3, + [36610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, - sym_file_descriptor, + ACTIONS(3192), 1, + aux_sym_concatenation_token1, + ACTIONS(3198), 1, sym__concat, - sym_variable_name, + STATE(937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3021), 5, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86337,8 +86470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86346,11 +86477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86364,18 +86493,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, - sym_test_operator, - [37048] = 3, + [36667] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, - sym_file_descriptor, + ACTIONS(3192), 1, + aux_sym_concatenation_token1, + ACTIONS(3198), 1, sym__concat, - sym_variable_name, + STATE(933), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3015), 5, + sym_file_descriptor, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1242), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(3013), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86393,11 +86528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86413,41 +86546,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37099] = 3, + [36724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(3190), 1, + sym__special_character, + STATE(966), 1, + aux_sym__literal_repeat1, + ACTIONS(2823), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1196), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86459,46 +86595,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37150] = 6, + [36779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 1, - aux_sym_concatenation_token1, - ACTIONS(3205), 1, - sym__concat, - STATE(967), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 2, + ACTIONS(3225), 1, + sym__special_character, + STATE(966), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 6, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1170), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86510,17 +86645,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, - sym_test_operator, - [37207] = 3, + [36834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 3, - sym_file_descriptor, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3206), 1, sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86531,8 +86673,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86540,11 +86680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86558,25 +86696,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37258] = 5, + [36891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 1, - sym__special_character, - STATE(1036), 1, - aux_sym__literal_repeat1, - ACTIONS(222), 4, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3206), 1, + sym__concat, + STATE(1061), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(189), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -86586,18 +86725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86610,87 +86748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [37313] = 25, - ACTIONS(63), 1, - sym_comment, - ACTIONS(183), 1, - sym_word, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(196), 1, - anon_sym_BANG, - ACTIONS(200), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1081), 1, - sym__special_character, - ACTIONS(1085), 1, - sym_test_operator, - ACTIONS(3196), 1, - sym__regex_no_space, - ACTIONS(3210), 1, - anon_sym_BQUOTE, - STATE(1450), 1, - sym__expression, - STATE(1485), 1, - aux_sym__literal_repeat1, - ACTIONS(93), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(987), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(95), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1491), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37408] = 3, + [36948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 5, + ACTIONS(2977), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86699,8 +86766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86708,11 +86778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86728,44 +86796,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37459] = 5, + [36999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - sym__special_character, - STATE(993), 1, - aux_sym__literal_repeat1, - ACTIONS(2859), 3, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3206), 1, + sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2857), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -86778,17 +86847,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [37514] = 3, + [37056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, - sym_file_descriptor, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3206), 1, sym__concat, + STATE(1061), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1242), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86806,11 +86881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -86824,19 +86897,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, - sym_test_operator, - [37565] = 3, + [37113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 5, + ACTIONS(1203), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1196), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86847,6 +86918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86854,7 +86927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86874,17 +86946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37616] = 3, + [37164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 5, + ACTIONS(1257), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1170), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -86895,6 +86966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86902,7 +86975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -86922,87 +86994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37667] = 25, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(200), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(228), 1, - sym_word, - ACTIONS(230), 1, - anon_sym_BANG, - ACTIONS(991), 1, - sym__special_character, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1003), 1, - sym_test_operator, - ACTIONS(3196), 1, - sym__regex_no_space, - ACTIONS(3210), 1, - anon_sym_BQUOTE, - STATE(1450), 1, - sym__expression, - STATE(1485), 1, - aux_sym__literal_repeat1, - ACTIONS(133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(987), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(995), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(135), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37762] = 3, + [37215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 5, + ACTIONS(1169), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1216), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87011,8 +87012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87020,11 +87024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87040,17 +87042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37813] = 3, + [37266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 5, + ACTIONS(1185), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1200), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87061,6 +87062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87068,7 +87071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87088,18 +87090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [37864] = 3, + [37317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(2809), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1204), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -87111,17 +87114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87136,22 +87138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [37915] = 6, + [37368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - aux_sym_concatenation_token1, - ACTIONS(3188), 1, - sym__concat, - STATE(1028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 4, + ACTIONS(1241), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2937), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87162,6 +87159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87169,10 +87168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87187,21 +87186,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [37419] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, + sym_test_operator, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3228), 1, + sym__special_character, + ACTIONS(3230), 1, + sym__regex_no_space, + STATE(1550), 1, + aux_sym__literal_repeat1, + STATE(1790), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1773), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37514] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1113), 1, + sym_word, + ACTIONS(1115), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + sym__special_character, + ACTIONS(1125), 1, sym_test_operator, - [37972] = 6, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(3234), 1, + sym__regex_no_space, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1427), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1117), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1119), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1541), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1269), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87212,6 +87346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87219,10 +87355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87238,22 +87374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [38029] = 6, + [37660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - aux_sym_concatenation_token1, - ACTIONS(3188), 1, - sym__concat, - STATE(1027), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 4, + ACTIONS(1249), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2947), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87264,6 +87395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87271,10 +87404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87289,16 +87422,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [38086] = 3, + [37711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, + ACTIONS(1213), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1200), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87307,9 +87440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87317,7 +87451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87337,21 +87470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [38137] = 6, + [37762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(3236), 1, + sym__special_character, + STATE(983), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87360,9 +87491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87370,12 +87503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87387,16 +87518,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, - sym_test_operator, - [38194] = 3, + [37817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(3190), 1, + sym__special_character, + STATE(966), 1, + aux_sym__literal_repeat1, + ACTIONS(2819), 6, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1180), 40, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_EQ_EQ, @@ -87408,8 +87546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -87418,12 +87554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87436,22 +87570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [38245] = 6, + [37872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 1, - aux_sym_concatenation_token1, - ACTIONS(3221), 1, - sym__concat, - STATE(986), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 4, + ACTIONS(1203), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1170), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87460,6 +87589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -87469,10 +87599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87486,92 +87616,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, - sym_test_operator, - [38302] = 25, - ACTIONS(63), 1, + [37923] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(3196), 1, - sym__regex_no_space, - ACTIONS(3224), 1, + ACTIONS(3239), 1, sym__special_character, - STATE(1450), 1, - sym__expression, - STATE(1587), 1, + STATE(986), 1, aux_sym__literal_repeat1, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1095), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1097), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1436), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38397] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1275), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87580,8 +87640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87589,12 +87652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87606,25 +87667,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, - sym_test_operator, - [38454] = 6, + [37978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(949), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(2805), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2947), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -87633,14 +87689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87657,17 +87715,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, - sym_test_operator, - [38511] = 3, + [38029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 3, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87687,7 +87746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87705,23 +87763,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, - sym_test_operator, - [38562] = 6, + [38080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(949), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2877), 3, + ACTIONS(3242), 1, + sym__special_character, + STATE(989), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2873), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87732,6 +87788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87739,12 +87797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87758,19 +87814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [38619] = 5, + [38135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 1, - sym__special_character, - STATE(1020), 1, - aux_sym__literal_repeat1, - ACTIONS(3042), 3, + ACTIONS(1241), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(3040), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87779,7 +87832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -87791,11 +87843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -87807,41 +87860,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, - sym_test_operator, - [38674] = 5, + [38186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 1, + ACTIONS(3245), 1, sym__special_character, - STATE(993), 1, + STATE(989), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(2963), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -87857,22 +87910,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, + [38241] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3208), 1, + sym_variable_name, + ACTIONS(3249), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3251), 1, + anon_sym_LT_LT_LT, + STATE(3971), 1, + sym_subscript, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3211), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3247), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(2914), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2592), 3, + sym_file_descriptor, sym_test_operator, - [38729] = 6, + sym__brace_start, + STATE(2911), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 24, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [38310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3231), 1, - sym__concat, - STATE(1063), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1245), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87881,9 +87988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87891,10 +87999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87909,20 +88017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [38786] = 6, + [38361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3235), 1, - sym__concat, - STATE(967), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(1249), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87931,9 +88035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87941,10 +88046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87960,16 +88065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [38843] = 3, + [38412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1253), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -87978,9 +88084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87988,7 +88095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88006,41 +88112,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, - sym_test_operator, - [38894] = 6, + [38463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3237), 1, - sym__concat, - STATE(967), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(1156), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1184), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88057,23 +88160,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + [38514] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(198), 1, + anon_sym_DOLLAR, + ACTIONS(204), 1, + aux_sym_number_token1, + ACTIONS(206), 1, + aux_sym_number_token2, + ACTIONS(210), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(224), 1, + sym__brace_start, + ACTIONS(228), 1, + sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(234), 1, sym_test_operator, - [38951] = 6, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1091), 1, + sym__special_character, + ACTIONS(3234), 1, + sym__regex_no_space, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + STATE(1427), 1, + sym__expression, + STATE(1458), 1, + aux_sym__literal_repeat1, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(947), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1093), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1499), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3239), 1, - sym__concat, - STATE(1063), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1257), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88092,10 +88260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88109,42 +88277,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39008] = 3, + [38660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 3, + ACTIONS(3255), 1, + sym__special_character, + STATE(999), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 5, sym_file_descriptor, - sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1266), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -88156,22 +88328,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, - sym_test_operator, - [39059] = 6, + [38715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, - sym__concat, - STATE(997), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(1185), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88190,10 +88358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88209,16 +88377,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39116] = 3, + [38766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88237,7 +88406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88257,15 +88425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39167] = 3, + [38817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3260), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3243), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88286,7 +88455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88305,16 +88473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39218] = 3, + [38868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(3264), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88323,6 +88491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -88334,11 +88503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88352,42 +88519,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39269] = 3, + [38919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(3266), 1, + sym__special_character, + STATE(999), 1, + aux_sym__literal_repeat1, + ACTIONS(2819), 5, sym_file_descriptor, - sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -88399,17 +88570,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, - sym_test_operator, - [39320] = 3, + [38974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 3, + ACTIONS(1213), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3247), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88418,11 +88590,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88430,10 +88600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88449,16 +88619,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39371] = 3, + [39025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, - sym_file_descriptor, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3174), 1, sym__concat, - sym_variable_name, + STATE(1007), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88477,11 +88652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88497,15 +88670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39422] = 3, + [39082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 3, - sym_file_descriptor, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3268), 1, sym__concat, + STATE(1016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88514,10 +88693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88525,11 +88703,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88545,15 +88721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39473] = 3, + [39139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1221), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88562,10 +88740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88573,7 +88750,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88593,21 +88769,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [39524] = 6, + [39190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3172), 1, aux_sym_concatenation_token1, - ACTIONS(3216), 1, + ACTIONS(3270), 1, sym__concat, - STATE(994), 1, + STATE(1016), 1, aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1179), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88626,7 +88802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88643,17 +88818,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, - sym_test_operator, - [39581] = 3, + [39247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1261), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88662,9 +88839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88672,7 +88850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88690,23 +88867,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, - sym_test_operator, - [39632] = 6, + [39298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(998), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1221), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88715,9 +88886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88725,10 +88897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88742,17 +88914,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, - sym_test_operator, - [39689] = 3, + [39349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1265), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88761,9 +88935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88771,7 +88946,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88789,17 +88963,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, - sym_test_operator, - [39740] = 3, + [39400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 3, + ACTIONS(1245), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88819,7 +88993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88839,21 +89012,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, + [39451] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_BANG, + ACTIONS(1107), 1, sym_test_operator, - [39791] = 6, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(3234), 1, + sym__regex_no_space, + ACTIONS(3272), 1, + sym__special_character, + STATE(1427), 1, + sym__expression, + STATE(1571), 1, + aux_sym__literal_repeat1, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1105), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1101), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1406), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3216), 1, + ACTIONS(3274), 1, sym__concat, - STATE(994), 1, + STATE(917), 1, aux_sym_concatenation_repeat1, - ACTIONS(3062), 3, + ACTIONS(1173), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3060), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88862,7 +89106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -88872,7 +89115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -88889,20 +89131,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, - sym_test_operator, - [39848] = 5, + [39603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 1, - sym__special_character, - STATE(1020), 1, - aux_sym__literal_repeat1, - ACTIONS(3062), 3, + ACTIONS(3276), 1, + aux_sym_concatenation_token1, + ACTIONS(3279), 1, + sym__concat, + STATE(1016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3060), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88911,11 +89156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88923,11 +89166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -88939,22 +89182,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, - sym_test_operator, - [39903] = 6, + [39660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(998), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 3, + ACTIONS(1241), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3044), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -88973,10 +89213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -88990,16 +89230,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, - sym_test_operator, - [39960] = 3, + [39711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 3, + ACTIONS(1253), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89019,7 +89261,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89039,21 +89280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [40011] = 6, + [39762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(950), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2889), 3, + ACTIONS(1245), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2887), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89062,6 +89299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89071,10 +89309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89090,16 +89328,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, + [39813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [39864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - [40068] = 25, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [39915] = 25, ACTIONS(63), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(181), 1, sym_word, - ACTIONS(312), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(314), 1, + ACTIONS(194), 1, anon_sym_BANG, + ACTIONS(198), 1, + anon_sym_DOLLAR, + ACTIONS(204), 1, + aux_sym_number_token1, + ACTIONS(206), 1, + aux_sym_number_token2, + ACTIONS(210), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(222), 1, + sym_test_operator, + ACTIONS(224), 1, + sym__brace_start, + ACTIONS(951), 1, + sym__special_character, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3234), 1, + sym__regex_no_space, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + STATE(1427), 1, + sym__expression, + STATE(1458), 1, + aux_sym__literal_repeat1, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(947), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(955), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40010] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -89110,48 +89509,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1063), 1, - sym__special_character, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, + ACTIONS(1061), 1, + sym_word, + ACTIONS(1063), 1, + anon_sym_BANG, + ACTIONS(1069), 1, + sym__special_character, + ACTIONS(1073), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(3251), 1, + ACTIONS(3234), 1, sym__regex_no_space, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1806), 1, + STATE(1427), 1, sym__expression, - ACTIONS(151), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(153), 3, + ACTIONS(1065), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1067), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89161,18 +89564,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [40163] = 5, + [40105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 1, - sym__special_character, - STATE(1020), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(1249), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89181,11 +89583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89193,11 +89593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89209,23 +89610,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, - sym_test_operator, - [40218] = 5, + [40156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - sym__special_character, - STATE(993), 1, - aux_sym__literal_repeat1, - ACTIONS(2811), 3, + ACTIONS(1253), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2809), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -89236,18 +89635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89259,20 +89658,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, - sym_test_operator, - [40273] = 5, + [40207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 1, - sym__special_character, - STATE(1020), 1, - aux_sym__literal_repeat1, - ACTIONS(2939), 3, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, + sym__concat, + STATE(1015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89281,11 +89684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89293,11 +89693,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89309,18 +89709,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, - sym_test_operator, - [40328] = 3, + [40264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 5, - sym_file_descriptor, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, sym__concat, + STATE(921), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1270), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89338,11 +89744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89358,16 +89762,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [40379] = 3, + [40321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, - sym_file_descriptor, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, sym__concat, + STATE(1015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1266), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89378,8 +89788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89387,11 +89795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89405,19 +89811,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, + [40378] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(308), 1, + sym_word, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_BANG, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, sym_test_operator, - [40430] = 3, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1031), 1, + sym__special_character, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(3282), 1, + sym__regex_no_space, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1797), 1, + sym__expression, + ACTIONS(151), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1035), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(153), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1763), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1439), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 3, + ACTIONS(3245), 1, + sym__special_character, + STATE(989), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2861), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -89429,19 +89910,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89453,17 +89931,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, - sym_test_operator, - [40481] = 3, + [40528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(1207), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1262), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89483,7 +89962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89501,23 +89979,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, - sym_test_operator, - [40532] = 6, + [40579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - aux_sym_concatenation_token1, - ACTIONS(3256), 1, - sym__concat, - STATE(986), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 4, + ACTIONS(1237), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1190), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89528,6 +90001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89535,10 +90010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89552,23 +90027,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, - sym_test_operator, - [40589] = 6, + [40630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - aux_sym_concatenation_token1, - ACTIONS(3258), 1, - sym__concat, - STATE(986), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 4, + ACTIONS(1207), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1184), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89579,6 +90049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89586,10 +90058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89603,18 +90075,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, - sym_test_operator, - [40646] = 3, + [40681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 5, - sym_file_descriptor, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, sym__concat, + STATE(921), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2973), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1208), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2971), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89632,11 +90110,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89652,20 +90128,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [40697] = 6, + [40738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3241), 1, + ACTIONS(3098), 1, sym__concat, - STATE(997), 1, + STATE(1015), 1, aux_sym_concatenation_repeat1, - ACTIONS(2977), 2, + ACTIONS(2963), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2973), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89674,7 +90152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -89684,7 +90161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89703,20 +90179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [40754] = 6, + [40795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, - sym__concat, - STATE(995), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2991), 2, + ACTIONS(1261), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(2989), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89725,9 +90197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89735,10 +90208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89754,22 +90227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [40811] = 6, + [40846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - aux_sym_concatenation_token1, - ACTIONS(3188), 1, - sym__concat, - STATE(1028), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 4, + ACTIONS(1265), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3060), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89780,6 +90247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89787,10 +90256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89804,17 +90273,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, - sym_test_operator, - [40868] = 3, + [40897] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(3284), 1, + sym__special_character, + STATE(983), 1, + aux_sym__literal_repeat1, + ACTIONS(3021), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89823,9 +90296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89833,13 +90308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -89853,22 +90325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [40919] = 6, + [40952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - aux_sym_concatenation_token1, - ACTIONS(3188), 1, - sym__concat, - STATE(1027), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 4, + ACTIONS(1225), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3044), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89879,6 +90346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89886,10 +90355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -89904,15 +90373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [40976] = 3, + [41003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 3, + ACTIONS(1217), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -89932,7 +90403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -89950,25 +90420,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, - sym_test_operator, - [41027] = 5, + [41054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, - sym__special_character, - STATE(1036), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 4, + ACTIONS(1233), 5, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -89977,19 +90441,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -90001,22 +90467,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, - sym_test_operator, - [41082] = 6, + [41105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, - aux_sym_concatenation_token1, - ACTIONS(3172), 1, - sym__concat, - STATE(914), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2991), 3, + ACTIONS(1229), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2989), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90027,6 +90489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90034,10 +90498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90053,19 +90517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [41139] = 5, + [41156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - sym__special_character, - STATE(1062), 1, - aux_sym__literal_repeat1, - ACTIONS(2889), 3, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3206), 1, + sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2887), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90076,8 +90544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90085,11 +90551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -90101,46 +90567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [41194] = 6, + [41213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, - aux_sym_concatenation_token1, - ACTIONS(3172), 1, - sym__concat, - STATE(936), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2977), 3, + ACTIONS(3266), 1, + sym__special_character, + STATE(999), 1, + aux_sym__literal_repeat1, + ACTIONS(218), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2973), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -90152,18 +90617,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, - sym_test_operator, - [41251] = 3, + [41268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3286), 1, sym__concat, + STATE(1047), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90174,8 +90645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90183,11 +90652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90202,16 +90669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41302] = 3, + [41325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90231,7 +90699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90250,16 +90717,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41353] = 3, + [41376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, + ACTIONS(3288), 1, + aux_sym_concatenation_token1, + ACTIONS(3291), 1, sym__concat, + STATE(1047), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90270,8 +90744,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90279,11 +90751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90298,16 +90768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41404] = 3, + [41433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90327,7 +90798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90346,16 +90816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41455] = 3, + [41484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1261), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90364,10 +90835,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90375,7 +90845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90393,22 +90862,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, - sym_test_operator, - [41506] = 6, + [41535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3176), 1, aux_sym_concatenation_token1, - ACTIONS(3216), 1, + ACTIONS(3178), 1, sym__concat, - STATE(994), 1, + STATE(929), 1, aux_sym_concatenation_repeat1, - ACTIONS(3042), 3, + ACTIONS(2997), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3040), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90427,7 +90898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90445,40 +90915,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41563] = 6, + [41592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(998), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 3, + ACTIONS(1169), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3034), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90496,23 +90963,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41620] = 5, + [41643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 1, - sym__special_character, - STATE(1036), 1, - aux_sym__literal_repeat1, - ACTIONS(2859), 4, + ACTIONS(1207), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2857), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90521,19 +90984,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -90546,15 +91011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41675] = 3, + [41694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 3, + ACTIONS(1217), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90563,10 +91030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90574,7 +91040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90594,15 +91059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [41726] = 3, + [41745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 3, + ACTIONS(1217), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90611,7 +91077,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -90623,10 +91088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90642,15 +91107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [41777] = 3, + [41796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 3, + ACTIONS(1225), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90670,7 +91136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90690,42 +91155,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [41828] = 3, + [41847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(3266), 1, + sym__special_character, + STATE(999), 1, + aux_sym__literal_repeat1, + ACTIONS(2823), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1228), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -90738,22 +91205,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41879] = 5, + [41902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - sym__special_character, - STATE(993), 1, - aux_sym__literal_repeat1, - ACTIONS(222), 3, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(946), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(189), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -90764,18 +91233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -90788,15 +91256,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [41934] = 3, + [41959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, sym__concat, + STATE(929), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90805,10 +91280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90816,11 +91290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90834,18 +91306,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, - sym_test_operator, - [41985] = 3, + [42016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90854,10 +91326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90865,7 +91336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90883,23 +91353,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, - sym_test_operator, - [42036] = 6, + [42067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, + ACTIONS(3172), 1, aux_sym_concatenation_token1, - ACTIONS(3188), 1, + ACTIONS(3174), 1, sym__concat, - STATE(1028), 1, + STATE(1009), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 4, + ACTIONS(3015), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1180), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3013), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90908,6 +91378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -90917,7 +91388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -90934,17 +91404,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, - sym_test_operator, - [42093] = 3, + [42124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, - sym_file_descriptor, + ACTIONS(3204), 1, + aux_sym_concatenation_token1, + ACTIONS(3294), 1, sym__concat, + STATE(1047), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 6, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -90955,8 +91433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90964,11 +91440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -90983,15 +91457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [42144] = 3, + [42181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 3, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91000,10 +91476,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91011,7 +91486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91031,16 +91505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [42195] = 3, + [42232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91049,10 +91524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91060,7 +91534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91078,50 +91551,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, - sym_test_operator, - [42246] = 12, + [42283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, - sym_variable_name, - ACTIONS(3265), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3267), 1, - anon_sym_LT_LT_LT, - STATE(3967), 1, - sym_subscript, - ACTIONS(2592), 2, + ACTIONS(1207), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3164), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3263), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2928), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2930), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 25, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91135,16 +91599,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, - sym_test_operator, - [42315] = 3, + [42334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 3, + ACTIONS(1233), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1200), 40, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91153,10 +91620,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91164,7 +91630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91184,44 +91649,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [42366] = 5, + [42385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 1, - sym__special_character, - STATE(1036), 1, - aux_sym__literal_repeat1, - ACTIONS(2811), 4, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(946), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2809), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91234,19 +91700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [42421] = 5, + [42442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, - sym__special_character, - STATE(1062), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(1265), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91255,10 +91719,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91266,11 +91729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91284,21 +91748,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [42476] = 6, + [42493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3272), 1, + ACTIONS(3176), 1, aux_sym_concatenation_token1, - ACTIONS(3275), 1, + ACTIONS(3178), 1, sym__concat, - STATE(1063), 1, + STATE(929), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(3065), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91317,7 +91782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91335,15 +91799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [42533] = 3, + [42550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 3, + ACTIONS(1225), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1262), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91362,7 +91828,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91382,15 +91847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [42583] = 3, + [42601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1257), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91409,7 +91875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91429,16 +91894,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [42633] = 3, + [42651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, - sym_file_descriptor, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, sym__concat, + STATE(1187), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91447,7 +91918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91457,11 +91927,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91476,16 +91944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [42683] = 3, + [42707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1185), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91494,7 +91964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91504,7 +91973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91523,18 +91991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [42733] = 5, + [42757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3278), 1, - sym__special_character, - STATE(1239), 1, - aux_sym__literal_repeat1, - ACTIONS(2977), 2, + ACTIONS(1207), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(2973), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91543,10 +92009,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91554,11 +92019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91572,15 +92038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [42787] = 3, + [42807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 3, + ACTIONS(1257), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3247), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91589,11 +92058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91601,10 +92067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -91619,20 +92085,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [42837] = 5, + [42857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 1, + ACTIONS(3296), 1, sym__special_character, - STATE(1213), 1, + STATE(1129), 1, aux_sym__literal_repeat1, - ACTIONS(2889), 4, + ACTIONS(2969), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2887), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91641,6 +92107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91650,7 +92117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91668,16 +92134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [42891] = 3, + [42911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91696,7 +92163,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91715,16 +92181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [42941] = 24, + [42961] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(308), 1, - sym_word, - ACTIONS(312), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(314), 1, - anon_sym_BANG, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -91735,46 +92196,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1063), 1, - sym__special_character, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_BANG, + ACTIONS(1107), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + ACTIONS(3272), 1, + sym__special_character, + STATE(1571), 1, aux_sym__literal_repeat1, - STATE(1813), 1, + STATE(1775), 1, sym__expression, - ACTIONS(151), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(153), 3, + ACTIONS(1099), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1105), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1101), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91784,69 +92249,64 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [43033] = 9, - ACTIONS(63), 1, + [43053] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, + ACTIONS(1169), 5, + sym_file_descriptor, sym_variable_name, - STATE(4004), 1, - sym_subscript, - STATE(2960), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2959), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2609), 5, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(2611), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, - ACTIONS(2592), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [43095] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [43103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 5, + ACTIONS(1213), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1266), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91855,6 +92315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91864,7 +92325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91883,16 +92343,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [43145] = 3, + [43153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(3298), 1, + sym__special_character, + STATE(1193), 1, + aux_sym__literal_repeat1, + ACTIONS(2963), 6, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91901,7 +92366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -91911,13 +92375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -91929,17 +92390,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, - sym_test_operator, - [43195] = 3, + [43207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, + ACTIONS(1217), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1200), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91958,7 +92420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -91976,16 +92437,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, - sym_test_operator, - [43245] = 3, + [43257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3300), 1, + sym__special_character, + STATE(1131), 1, + aux_sym__literal_repeat1, + ACTIONS(3021), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3243), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -91994,7 +92460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -92006,10 +92471,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [43311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92023,9 +92533,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, - sym_test_operator, - [43295] = 25, + [43361] = 24, ACTIONS(63), 1, sym_comment, ACTIONS(361), 1, @@ -92044,21 +92554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(385), 1, sym__brace_start, - ACTIONS(1031), 1, + ACTIONS(1043), 1, + sym_word, + ACTIONS(1045), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(1047), 1, anon_sym_BANG, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - ACTIONS(3285), 1, - sym_word, - ACTIONS(3289), 1, + ACTIONS(1059), 1, sym_test_operator, - STATE(1457), 1, + ACTIONS(3213), 1, + sym__special_character, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + STATE(1498), 1, aux_sym__literal_repeat1, - STATE(1866), 1, + STATE(1676), 1, sym__expression, ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, @@ -92066,25 +92576,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1037), 2, + ACTIONS(1049), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(3287), 2, + ACTIONS(1057), 2, sym_raw_string, sym_ansi_c_string, - STATE(1418), 2, - sym_ternary_expression, - sym_postfix_expression, - ACTIONS(1039), 3, + ACTIONS(1051), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1741), 4, + STATE(1715), 6, sym_binary_expression, + sym_ternary_expression, sym_unary_expression, + sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1444), 9, + STATE(1419), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92094,15 +92603,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [43389] = 3, + [43453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1225), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92121,7 +92631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92139,20 +92648,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, - sym_test_operator, - [43439] = 5, + [43503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, - sym__special_character, - STATE(1233), 1, - aux_sym__literal_repeat1, - ACTIONS(3042), 3, + ACTIONS(1265), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(3040), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92163,8 +92671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92172,11 +92678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -92188,276 +92695,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [43493] = 24, - ACTIONS(63), 1, + [43553] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, - anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, - aux_sym_number_token1, - ACTIONS(371), 1, - aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(2805), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1029), 1, - sym_word, - ACTIONS(1031), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_BANG, - ACTIONS(1047), 1, - sym_test_operator, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - STATE(1488), 1, - aux_sym__literal_repeat1, - STATE(1648), 1, - sym__expression, - ACTIONS(348), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + 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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1037), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1045), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1039), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1441), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43585] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(346), 1, - sym_word, - ACTIONS(355), 1, - anon_sym_LPAREN, - ACTIONS(357), 1, - anon_sym_BANG, - ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(369), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(383), 1, - sym_test_operator, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(3180), 1, - sym__special_character, - ACTIONS(3182), 1, anon_sym_BQUOTE, - STATE(1596), 1, - aux_sym__literal_repeat1, - STATE(1780), 1, - sym__expression, - ACTIONS(272), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(367), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(381), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(274), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1755), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1428), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43677] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(346), 1, sym_word, - ACTIONS(355), 1, - anon_sym_LPAREN, - ACTIONS(357), 1, - anon_sym_BANG, - ACTIONS(361), 1, - anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, - aux_sym_number_token1, - ACTIONS(371), 1, - aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(383), 1, + [43603] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3302), 1, + sym__concat, + STATE(1016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(385), 1, sym__brace_start, - ACTIONS(3180), 1, - sym__special_character, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - STATE(1596), 1, - aux_sym__literal_repeat1, - STATE(1794), 1, - sym__expression, - ACTIONS(272), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(348), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 35, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(367), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(274), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1755), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1428), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [43769] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2613), 1, - anon_sym_LT_LT, - ACTIONS(3282), 1, - sym_variable_name, - ACTIONS(3293), 1, - anon_sym_PIPE, - ACTIONS(3295), 1, - anon_sym_PIPE_AMP, - STATE(4004), 1, - sym_subscript, - STATE(2960), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2743), 4, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - STATE(2959), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 8, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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(2592), 19, + [43659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [43835] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [43709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1233), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92476,7 +92869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92494,17 +92886,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, - sym_test_operator, - [43885] = 3, + [43759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92513,7 +92907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -92523,7 +92916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92541,17 +92933,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, - sym_test_operator, - [43935] = 3, + [43809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1221), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92560,7 +92955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -92570,7 +92964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92589,19 +92982,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [43985] = 5, + [43859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, - sym__special_character, - STATE(1233), 1, - aux_sym__literal_repeat1, - ACTIONS(3062), 3, + ACTIONS(1203), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3060), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92612,8 +93004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92621,11 +93011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -92638,19 +93029,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [44039] = 5, - ACTIONS(3), 1, + [43909] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, + sym_test_operator, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3228), 1, sym__special_character, - STATE(1089), 1, + STATE(1550), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 3, + STATE(1784), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1773), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [44001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92669,11 +93126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -92685,17 +93143,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, - sym_test_operator, - [44093] = 3, + [44051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 3, + ACTIONS(3296), 1, + sym__special_character, + STATE(1129), 1, + aux_sym__literal_repeat1, + ACTIONS(2963), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92704,11 +93166,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92716,12 +93176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -92733,17 +93191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [44143] = 24, + [44105] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(308), 1, - sym_word, - ACTIONS(312), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(314), 1, - anon_sym_BANG, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -92754,46 +93208,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1063), 1, - sym__special_character, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, + ACTIONS(1061), 1, + sym_word, + ACTIONS(1063), 1, + anon_sym_BANG, + ACTIONS(1069), 1, + sym__special_character, + ACTIONS(1073), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1806), 1, + STATE(1799), 1, sym__expression, - ACTIONS(151), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(153), 3, + ACTIONS(1065), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1067), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92803,14 +93261,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [44235] = 3, + [44197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 3, + ACTIONS(1233), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(3044), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92819,11 +93280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92831,10 +93289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -92848,67 +93306,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [44285] = 24, + [44247] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(324), 1, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1043), 1, sym_word, - ACTIONS(1107), 1, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1059), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3213), 1, + sym__special_character, + ACTIONS(3215), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1498), 1, aux_sym__literal_repeat1, - STATE(1814), 1, + STATE(1694), 1, sym__expression, - ACTIONS(1059), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1109), 2, + ACTIONS(1049), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1115), 2, + ACTIONS(1057), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, + ACTIONS(1051), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1715), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1446), 9, + STATE(1419), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92918,14 +93376,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [44377] = 3, + [44339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 3, + ACTIONS(1217), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -92934,7 +93395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -92944,7 +93404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -92964,12 +93423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [44427] = 24, + [44389] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(308), 1, + sym_word, + ACTIONS(312), 1, anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_BANG, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -92978,52 +93440,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1031), 1, + sym__special_character, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1119), 1, - sym_word, - ACTIONS(1121), 1, - anon_sym_BANG, - ACTIONS(1127), 1, - sym__special_character, - ACTIONS(1131), 1, - sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1844), 1, + STATE(1814), 1, sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1123), 2, + ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1129), 2, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 3, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1548), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93033,15 +93491,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [44519] = 24, - ACTIONS(63), 1, + [44481] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(1265), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(312), 1, + [44531] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(314), 1, - anon_sym_BANG, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -93052,46 +93553,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1063), 1, - sym__special_character, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_BANG, + ACTIONS(1107), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + ACTIONS(3272), 1, + sym__special_character, + STATE(1571), 1, aux_sym__literal_repeat1, - STATE(1759), 1, + STATE(1782), 1, sym__expression, - ACTIONS(151), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(153), 3, + ACTIONS(1099), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1105), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1101), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93101,10 +93606,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [44611] = 24, + [44623] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2592), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2584), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_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(3304), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [44677] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -93116,50 +93670,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1119), 1, + ACTIONS(1113), 1, sym_word, - ACTIONS(1121), 1, + ACTIONS(1115), 1, anon_sym_BANG, - ACTIONS(1127), 1, + ACTIONS(1121), 1, sym__special_character, - ACTIONS(1131), 1, + ACTIONS(1125), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1855), 1, + STATE(1871), 1, sym__expression, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1123), 2, + ACTIONS(1117), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1129), 2, + ACTIONS(1123), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 3, + ACTIONS(1119), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1548), 9, + STATE(1541), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93169,15 +93723,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [44703] = 3, + [44769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93186,7 +93742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -93196,7 +93751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93214,16 +93768,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, - sym_test_operator, - [44753] = 3, + [44819] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, + ACTIONS(3308), 1, + sym__special_character, + STATE(1156), 1, + aux_sym__literal_repeat1, + ACTIONS(3065), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93232,9 +93792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93242,13 +93803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93260,18 +93818,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, - sym_test_operator, - [44803] = 3, + [44873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(1261), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93290,7 +93847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93308,85 +93864,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, - sym_test_operator, - [44853] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1119), 1, - sym_word, - ACTIONS(1121), 1, - anon_sym_BANG, - ACTIONS(1127), 1, - sym__special_character, - ACTIONS(1131), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1863), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1123), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1129), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1125), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1548), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [44945] = 3, + [44923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93395,7 +93885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -93405,7 +93894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93423,16 +93911,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, - sym_test_operator, - [44995] = 3, + [44973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 3, + ACTIONS(3264), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3034), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93441,7 +93931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -93453,7 +93942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93470,40 +93958,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, - sym_test_operator, - [45045] = 3, + [45023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(1261), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -93517,136 +94005,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, - sym_test_operator, - [45095] = 25, + [45073] = 13, ACTIONS(63), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(3312), 1, + anon_sym_LT_LT, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_AMP, + ACTIONS(3318), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3320), 1, + anon_sym_LT_LT_LT, + ACTIONS(3322), 1, + sym_variable_name, + STATE(4012), 1, + sym_subscript, + ACTIONS(3310), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(2981), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(2942), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(1031), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_BANG, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - ACTIONS(3300), 1, sym_word, - ACTIONS(3304), 1, - sym_test_operator, - STATE(1520), 1, - aux_sym__literal_repeat1, - STATE(1866), 1, - sym__expression, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1037), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(3302), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1418), 2, - sym_ternary_expression, - sym_postfix_expression, - ACTIONS(1039), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1656), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1433), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [45189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 2, + ACTIONS(2592), 19, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 40, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - sym_test_operator, - [45239] = 5, + [45143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, - sym__special_character, - STATE(1233), 1, - aux_sym__literal_repeat1, - ACTIONS(2939), 3, + ACTIONS(3260), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93666,11 +94093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -93682,16 +94109,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [45193] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1095), 1, sym_word, + ACTIONS(1097), 1, + anon_sym_BANG, + ACTIONS(1107), 1, sym_test_operator, - [45293] = 3, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(3272), 1, + sym__special_character, + STATE(1571), 1, + aux_sym__literal_repeat1, + STATE(1777), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1105), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1101), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1406), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 3, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1216), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93710,7 +94208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93728,18 +94225,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, - sym_test_operator, - [45343] = 3, + [45335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1237), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1266), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93748,6 +94245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -93757,7 +94255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93775,19 +94272,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, - sym_test_operator, - [45393] = 3, + [45385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 5, + ACTIONS(1207), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1262), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93796,6 +94292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -93805,7 +94302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93824,66 +94320,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [45443] = 24, + [45435] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(183), 1, - sym_word, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(196), 1, - anon_sym_BANG, - ACTIONS(200), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(206), 1, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1081), 1, - sym__special_character, - ACTIONS(1085), 1, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1043), 1, + sym_word, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(1059), 1, sym_test_operator, - ACTIONS(3210), 1, + ACTIONS(3213), 1, + sym__special_character, + ACTIONS(3215), 1, anon_sym_BQUOTE, - STATE(1450), 1, - sym__expression, - STATE(1485), 1, + STATE(1498), 1, aux_sym__literal_repeat1, - ACTIONS(93), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(987), 2, + STATE(1651), 1, + sym__expression, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1049), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1057), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(95), 3, + ACTIONS(1051), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1715), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1491), 9, + STATE(1419), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93893,15 +94388,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [45535] = 3, + [45527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(1213), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1262), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -93919,7 +94416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -93939,11 +94435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [45585] = 24, + [45577] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -93955,50 +94450,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(1061), 1, sym_word, - ACTIONS(1107), 1, + ACTIONS(1063), 1, anon_sym_BANG, - ACTIONS(1113), 1, + ACTIONS(1069), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1073), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1782), 1, + STATE(1776), 1, sym__expression, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1109), 2, + ACTIONS(1065), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1115), 2, + ACTIONS(1071), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, + ACTIONS(1067), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1446), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94008,10 +94503,61 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [45677] = 24, + [45669] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + ACTIONS(3325), 1, + anon_sym_LPAREN, + STATE(1260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1156), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + 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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [45727] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -94023,50 +94569,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(1061), 1, sym_word, - ACTIONS(1107), 1, + ACTIONS(1063), 1, anon_sym_BANG, - ACTIONS(1113), 1, + ACTIONS(1069), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1073), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1777), 1, + STATE(1804), 1, sym__expression, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1109), 2, + ACTIONS(1065), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1115), 2, + ACTIONS(1071), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, + ACTIONS(1067), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1446), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94076,15 +94622,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [45769] = 3, - ACTIONS(3), 1, + [45819] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1230), 4, - sym_file_descriptor, + ACTIONS(308), 1, + sym_word, + ACTIONS(312), 1, + anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_BANG, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1031), 1, + sym__special_character, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1827), 1, + sym__expression, + ACTIONS(151), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1035), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(153), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1763), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1439), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [45911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 6, + sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1228), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94102,7 +94718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94122,16 +94737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [45819] = 3, + [45961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1249), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1254), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94149,7 +94765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94169,18 +94784,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, + [46011] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(3213), 1, + sym__special_character, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3327), 1, + sym_word, + ACTIONS(3331), 1, sym_test_operator, - [45869] = 3, + STATE(1440), 1, + aux_sym__literal_repeat1, + STATE(1860), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1049), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(3329), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1520), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1051), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1644), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1405), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(2805), 6, sym_file_descriptor, - sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1250), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -94190,17 +94876,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94214,19 +94899,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, - sym_test_operator, - [45919] = 3, + [46155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1207), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1228), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94235,6 +94918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94244,7 +94928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94262,18 +94945,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, - sym_test_operator, - [45969] = 3, + [46205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 5, + ACTIONS(3333), 1, + sym__special_character, + STATE(1129), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1254), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94282,6 +94969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94291,13 +94979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94309,39 +94994,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, - sym_test_operator, - [46019] = 3, + [46259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1169), 5, sym_file_descriptor, - sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1220), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94355,19 +95042,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, - sym_test_operator, - [46069] = 3, + [46309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 5, + ACTIONS(3336), 1, + sym__special_character, + STATE(1131), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1250), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94378,6 +95066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94385,13 +95075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -94403,16 +95090,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, + [46363] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(346), 1, sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, sym_test_operator, - [46119] = 3, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3228), 1, + sym__special_character, + STATE(1550), 1, + aux_sym__literal_repeat1, + STATE(1819), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1773), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 3, + ACTIONS(1169), 4, sym_file_descriptor, - sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1170), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94421,9 +95177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94431,11 +95189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94451,38 +95207,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [46169] = 3, + [46505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1156), 5, sym_file_descriptor, - sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1238), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94496,41 +95253,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + [46555] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, sym_test_operator, - [46219] = 3, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3228), 1, + sym__special_character, + STATE(1550), 1, + aux_sym__literal_repeat1, + STATE(1821), 1, + sym__expression, + ACTIONS(272), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(274), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1773), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1521), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1169), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1242), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94545,16 +95369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [46269] = 3, + [46697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1269), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94563,7 +95388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94573,7 +95397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94591,17 +95414,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, - sym_test_operator, - [46319] = 3, + [46747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, - sym_file_descriptor, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3339), 1, sym__concat, - sym_variable_name, + STATE(1016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94610,7 +95439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94620,11 +95448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94638,39 +95464,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [46369] = 3, + [46803] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3353), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94684,36 +95516,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + [46861] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1043), 1, + sym_word, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(1059), 1, sym_test_operator, - [46419] = 5, - ACTIONS(3), 1, + ACTIONS(3213), 1, + sym__special_character, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + STATE(1498), 1, + aux_sym__literal_repeat1, + STATE(1691), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1049), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1057), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1051), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1715), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1419), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [46953] = 9, + ACTIONS(63), 1, sym_comment, - ACTIONS(3308), 1, - sym_file_descriptor, - ACTIONS(2592), 2, + ACTIONS(3322), 1, sym_variable_name, + STATE(4012), 1, + sym_subscript, + STATE(2981), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3029), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2660), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(2662), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(2592), 13, + sym_test_operator, sym__brace_start, - ACTIONS(2578), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [47015] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1061), 1, sym_word, + ACTIONS(1063), 1, + anon_sym_BANG, + ACTIONS(1069), 1, + sym__special_character, + ACTIONS(1073), 1, + sym_test_operator, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1811), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1065), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1067), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1416), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3306), 22, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94721,11 +95724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94733,23 +95734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [46473] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [47157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1215), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1185), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94758,6 +95772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94767,10 +95782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94785,21 +95800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [46529] = 6, + [47207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1212), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1213), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 36, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94817,10 +95829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94835,21 +95847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [46585] = 6, + [47257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1215), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 3, + ACTIONS(1249), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(3060), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94858,6 +95865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -94867,10 +95875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94884,22 +95892,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, - sym_test_operator, - [46641] = 6, + [47307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1212), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 3, + ACTIONS(1207), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(3044), 36, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94917,10 +95922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -94934,17 +95939,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, - sym_test_operator, - [46697] = 3, + [47357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1245), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1212), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -94962,7 +95969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -94982,15 +95988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [46747] = 3, + [47407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 3, + ACTIONS(1257), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1238), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95009,7 +96017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95027,86 +96034,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, - sym_test_operator, - [46797] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, sym_word, - ACTIONS(1093), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(3224), 1, - sym__special_character, - STATE(1587), 1, - aux_sym__literal_repeat1, - STATE(1802), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1095), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1097), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1436), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [46889] = 3, + [47457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1241), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95125,7 +96064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95144,16 +96082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [46939] = 3, + [47507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1245), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1204), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95162,6 +96101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95171,7 +96111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95189,14 +96128,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, - sym_test_operator, - [46989] = 24, + [47557] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(308), 1, + sym_word, + ACTIONS(312), 1, anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_BANG, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -95205,52 +96146,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1031), 1, + sym__special_character, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym_word, - ACTIONS(1107), 1, - anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, - sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1810), 1, + STATE(1803), 1, sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1109), 2, + ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1115), 2, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1446), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95260,62 +96197,153 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [47081] = 3, - ACTIONS(3), 1, + [47649] = 25, + ACTIONS(63), 1, sym_comment, - ACTIONS(1226), 4, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1224), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(361), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(365), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(3213), 1, + sym__special_character, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3355), 1, + sym_word, + ACTIONS(3359), 1, + sym_test_operator, + STATE(1417), 1, + aux_sym__literal_repeat1, + STATE(1860), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1049), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(3357), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1520), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1051), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1739), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1473), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47743] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(198), 1, + anon_sym_DOLLAR, + ACTIONS(204), 1, + aux_sym_number_token1, + ACTIONS(206), 1, + aux_sym_number_token2, + ACTIONS(210), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(224), 1, + sym__brace_start, + ACTIONS(228), 1, sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(234), 1, sym_test_operator, - [47131] = 3, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1091), 1, + sym__special_character, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + STATE(1458), 1, + aux_sym__literal_repeat1, + STATE(1812), 1, + sym__expression, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(947), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1093), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(135), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1499), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [47835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(3260), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95324,8 +96352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95333,11 +96364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95351,18 +96380,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, - sym_test_operator, - [47181] = 3, + [47885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(3361), 1, + sym__special_character, + STATE(1156), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95371,9 +96403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95381,13 +96414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -95400,12 +96430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [47231] = 24, + [47939] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(308), 1, + sym_word, + ACTIONS(312), 1, anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_BANG, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -95414,52 +96447,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1031), 1, + sym__special_character, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym_word, - ACTIONS(1107), 1, - anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, - sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1757), 1, + STATE(1813), 1, sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1109), 2, + ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1115), 2, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1446), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95469,14 +96498,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [47323] = 3, + [48031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1241), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95485,7 +96517,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95495,7 +96526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95515,18 +96545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [47373] = 3, + [48081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1156), 6, sym_file_descriptor, - sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1246), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -95536,17 +96568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -95560,18 +96591,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, - sym_test_operator, - [47423] = 3, + [48131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1249), 6, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1242), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95580,6 +96611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -95589,7 +96621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95607,18 +96638,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, - sym_test_operator, - [47473] = 24, + [48181] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(346), 1, - sym_word, - ACTIONS(355), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(357), 1, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, anon_sym_BANG, + ACTIONS(1107), 1, + sym_test_operator, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(3272), 1, + sym__special_character, + STATE(1571), 1, + aux_sym__literal_repeat1, + STATE(1805), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1105), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1101), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1406), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48273] = 25, + ACTIONS(63), 1, + sym_comment, ACTIONS(361), 1, anon_sym_DOLLAR, ACTIONS(365), 1, @@ -95633,42 +96724,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(383), 1, - sym_test_operator, ACTIONS(385), 1, sym__brace_start, - ACTIONS(3180), 1, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(3213), 1, sym__special_character, - ACTIONS(3182), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - STATE(1596), 1, + ACTIONS(3364), 1, + sym_word, + ACTIONS(3368), 1, + sym_test_operator, + STATE(1441), 1, aux_sym__literal_repeat1, - STATE(1797), 1, + STATE(1860), 1, sym__expression, - ACTIONS(272), 2, - anon_sym_DASH2, - anon_sym_PLUS2, ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(367), 2, - sym_raw_string, - sym_ansi_c_string, ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(274), 3, + ACTIONS(1049), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(3366), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1520), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1051), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1755), 6, + STATE(1647), 4, sym_binary_expression, - sym_ternary_expression, sym_unary_expression, - sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1428), 9, + STATE(1454), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95678,7 +96776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [47565] = 24, + [48367] = 24, ACTIONS(63), 1, sym_comment, ACTIONS(308), 1, @@ -95695,48 +96793,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1063), 1, + ACTIONS(1031), 1, sym__special_character, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, - sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1749), 1, + STATE(1785), 1, sym__expression, ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95746,15 +96844,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [47657] = 3, + [48459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1185), 6, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1196), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95772,7 +96872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -95792,196 +96891,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [47707] = 3, - ACTIONS(3), 1, + [48509] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1264), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - ACTIONS(1262), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(324), 1, aux_sym_number_token1, + ACTIONS(326), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1061), 1, sym_word, + ACTIONS(1063), 1, + anon_sym_BANG, + ACTIONS(1069), 1, + sym__special_character, + ACTIONS(1073), 1, sym_test_operator, - [47757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2947), 39, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1822), 1, + sym__expression, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_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(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - sym_test_operator, - [47807] = 3, - ACTIONS(3), 1, + ACTIONS(1065), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1067), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1416), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [48601] = 11, + ACTIONS(63), 1, sym_comment, - ACTIONS(1202), 3, - sym_file_descriptor, - sym__concat, - sym__brace_start, - ACTIONS(1200), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2586), 1, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, + ACTIONS(3314), 1, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + ACTIONS(3316), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(3322), 1, + sym_variable_name, + STATE(4012), 1, + sym_subscript, + STATE(2981), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2590), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + STATE(3029), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2584), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, - sym_test_operator, - [47857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1175), 4, + ACTIONS(2592), 19, sym_file_descriptor, - sym__concat, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1170), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - sym_test_operator, - [47907] = 24, + [48667] = 24, ACTIONS(63), 1, sym_comment, ACTIONS(308), 1, @@ -95998,48 +97031,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1063), 1, + ACTIONS(1031), 1, sym__special_character, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, - sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1776), 1, + STATE(1801), 1, sym__expression, ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96049,16 +97082,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [47999] = 3, + [48759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1257), 6, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1220), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96076,7 +97110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96094,16 +97127,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, - sym_test_operator, - [48049] = 3, + [48809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 3, + ACTIONS(1207), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1266), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96112,7 +97149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96122,7 +97158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96140,18 +97175,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, - sym_test_operator, - [48099] = 3, + [48859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1217), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1266), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96170,7 +97205,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96189,123 +97223,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [48149] = 13, - ACTIONS(63), 1, + [48909] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, - sym_variable_name, - ACTIONS(3293), 1, - anon_sym_PIPE, - ACTIONS(3295), 1, - anon_sym_PIPE_AMP, - ACTIONS(3312), 1, - anon_sym_LT_LT, - ACTIONS(3314), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3316), 1, - anon_sym_LT_LT_LT, - STATE(4004), 1, - sym_subscript, - ACTIONS(3310), 2, + ACTIONS(1245), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2960), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(2935), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2578), 8, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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(2592), 19, + [48959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 5, sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [48219] = 24, + aux_sym__simple_variable_name_token1, + sym_word, + [49009] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(183), 1, - sym_word, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(196), 1, - anon_sym_BANG, - ACTIONS(200), 1, + ACTIONS(198), 1, anon_sym_DOLLAR, - ACTIONS(206), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(212), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(993), 1, + ACTIONS(228), 1, + sym_word, + ACTIONS(230), 1, + anon_sym_BANG, + ACTIONS(234), 1, + sym_test_operator, + ACTIONS(953), 1, anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, + ACTIONS(959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1081), 1, + ACTIONS(1091), 1, sym__special_character, - ACTIONS(1085), 1, - sym_test_operator, - ACTIONS(3210), 1, + ACTIONS(3253), 1, anon_sym_BQUOTE, - STATE(1485), 1, + STATE(1458), 1, aux_sym__literal_repeat1, - STATE(1760), 1, + STATE(1783), 1, sym__expression, - ACTIONS(93), 2, + ACTIONS(133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(987), 2, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, + ACTIONS(961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1093), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(95), 3, + ACTIONS(135), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1491), 9, + STATE(1499), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96315,14 +97385,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [48311] = 3, + [49101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 3, + ACTIONS(1237), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96331,7 +97405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96341,7 +97414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96359,18 +97431,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, - sym_test_operator, - [48361] = 3, + [49151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1207), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1216), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96388,7 +97461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96406,18 +97478,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, - sym_test_operator, - [48411] = 3, + [49201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, - sym_file_descriptor, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3174), 1, sym__concat, + STATE(1138), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3021), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1200), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96435,11 +97511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96455,15 +97529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [48461] = 3, + [49257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 3, - sym_file_descriptor, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3174), 1, sym__concat, + STATE(1088), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3015), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1212), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3013), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96472,7 +97552,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96482,11 +97561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96502,25 +97579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [48511] = 7, + [49313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - ACTIONS(3318), 1, - anon_sym_LPAREN, - STATE(1276), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(1217), 7, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 35, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 35, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -96528,17 +97600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96553,153 +97626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [48569] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(308), 1, - sym_word, - ACTIONS(312), 1, - anon_sym_LPAREN, - ACTIONS(314), 1, - anon_sym_BANG, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1063), 1, - sym__special_character, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1807), 1, - sym__expression, - ACTIONS(151), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(153), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1795), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - 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, - [48661] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(346), 1, - sym_word, - ACTIONS(355), 1, - anon_sym_LPAREN, - ACTIONS(357), 1, - anon_sym_BANG, - ACTIONS(361), 1, - anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, - aux_sym_number_token1, - ACTIONS(371), 1, - aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(383), 1, - sym_test_operator, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(3180), 1, - sym__special_character, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - STATE(1596), 1, - aux_sym__literal_repeat1, - STATE(1790), 1, - sym__expression, - ACTIONS(272), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(367), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(274), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1755), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1428), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48753] = 3, + [49363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 3, + ACTIONS(2809), 6, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3247), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -96708,16 +97648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96734,86 +97672,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, - sym_test_operator, - [48803] = 25, - ACTIONS(63), 1, - sym_comment, - ACTIONS(361), 1, - anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, - aux_sym_number_token1, - ACTIONS(371), 1, - aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(1031), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_BANG, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - ACTIONS(3320), 1, sym_word, - ACTIONS(3324), 1, - sym_test_operator, - STATE(1506), 1, - aux_sym__literal_repeat1, - STATE(1866), 1, - sym__expression, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1037), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(3322), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1418), 2, - sym_ternary_expression, - sym_postfix_expression, - ACTIONS(1039), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1730), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1487), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [48897] = 3, + [49413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3069), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3243), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96822,6 +97691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -96833,7 +97703,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96850,17 +97719,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, - sym_test_operator, - [48947] = 3, + [49463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 3, + ACTIONS(1169), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1220), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96869,9 +97738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96879,11 +97750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -96897,17 +97766,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, - sym_test_operator, - [48997] = 3, + [49513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(1241), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1228), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -96916,7 +97787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -96926,7 +97796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -96944,150 +97813,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, - sym_test_operator, - [49047] = 24, + [49563] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, + ACTIONS(308), 1, sym_word, - ACTIONS(1093), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(3224), 1, - sym__special_character, - STATE(1587), 1, - aux_sym__literal_repeat1, - STATE(1764), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1095), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1097), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1436), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49139] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, + ACTIONS(312), 1, anon_sym_LPAREN, - ACTIONS(200), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(228), 1, - sym_word, - ACTIONS(230), 1, + ACTIONS(314), 1, anon_sym_BANG, - ACTIONS(991), 1, - sym__special_character, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1003), 1, - sym_test_operator, - ACTIONS(3210), 1, - anon_sym_BQUOTE, - STATE(1485), 1, - aux_sym__literal_repeat1, - STATE(1689), 1, - sym__expression, - ACTIONS(133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(987), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(995), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(135), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49231] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -97096,120 +97831,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_BANG, - ACTIONS(1103), 1, + ACTIONS(340), 1, sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(3224), 1, - sym__special_character, - STATE(1587), 1, - aux_sym__literal_repeat1, - STATE(1765), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1095), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1097), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1436), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49323] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(200), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, + ACTIONS(342), 1, sym__brace_start, - ACTIONS(228), 1, - sym_word, - ACTIONS(230), 1, - anon_sym_BANG, - ACTIONS(991), 1, + ACTIONS(1031), 1, sym__special_character, - ACTIONS(993), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1003), 1, - sym_test_operator, - ACTIONS(3210), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1485), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1641), 1, + STATE(1797), 1, sym__expression, - ACTIONS(133), 2, + ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(987), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(995), 2, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1001), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(135), 3, + ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1387), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97219,14 +97882,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [49415] = 3, + [49655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 3, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1246), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97245,7 +97910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97265,15 +97929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [49465] = 3, + [49705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(2977), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1242), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97282,9 +97947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97292,11 +97959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97310,18 +97975,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, - sym_test_operator, - [49515] = 3, + [49755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1233), 7, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1270), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97339,7 +98005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97357,17 +98022,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, - sym_test_operator, - [49565] = 3, + [49805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 3, - sym_file_descriptor, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3370), 1, sym__concat, + STATE(962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1250), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97376,7 +98047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -97386,11 +98056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97404,18 +98072,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, - sym_test_operator, - [49615] = 3, + [49861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, - sym_file_descriptor, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3372), 1, sym__concat, + STATE(962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1208), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97433,11 +98106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97451,17 +98122,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, - sym_test_operator, - [49665] = 3, + [49917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 3, + ACTIONS(2977), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1254), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97470,9 +98141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97480,11 +98152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97500,66 +98170,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [49715] = 24, + [49967] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(200), 1, + ACTIONS(198), 1, anon_sym_DOLLAR, - ACTIONS(206), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(212), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, + ACTIONS(224), 1, sym__brace_start, ACTIONS(228), 1, sym_word, ACTIONS(230), 1, anon_sym_BANG, - ACTIONS(991), 1, - sym__special_character, - ACTIONS(993), 1, + ACTIONS(234), 1, + sym_test_operator, + ACTIONS(953), 1, anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, + ACTIONS(959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1003), 1, - sym_test_operator, - ACTIONS(3210), 1, + ACTIONS(1091), 1, + sym__special_character, + ACTIONS(3253), 1, anon_sym_BQUOTE, - STATE(1450), 1, - sym__expression, - STATE(1485), 1, + STATE(1458), 1, aux_sym__literal_repeat1, + STATE(1786), 1, + sym__expression, ACTIONS(133), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(987), 2, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(995), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1001), 2, + ACTIONS(961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1093), 2, + sym_raw_string, + sym_ansi_c_string, ACTIONS(135), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1387), 9, + STATE(1499), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97569,16 +98238,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [49807] = 3, + [50059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1229), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1238), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97596,7 +98267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97615,87 +98285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [49857] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(200), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - aux_sym_number_token1, - ACTIONS(208), 1, - aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(228), 1, - sym_word, - ACTIONS(230), 1, - anon_sym_BANG, - ACTIONS(991), 1, - sym__special_character, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1003), 1, - sym_test_operator, - ACTIONS(3210), 1, - anon_sym_BQUOTE, - STATE(1485), 1, - aux_sym__literal_repeat1, - STATE(1637), 1, - sym__expression, - ACTIONS(133), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(987), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(995), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(135), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1387), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [49949] = 5, + [50109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, - sym__special_character, - STATE(1089), 1, - aux_sym__literal_repeat1, - ACTIONS(2889), 3, + ACTIONS(1225), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2887), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97714,11 +98314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97730,22 +98331,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, - sym_test_operator, - [50003] = 6, + [50159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, - sym__concat, - STATE(1189), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(3374), 1, + sym__special_character, + STATE(1193), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97763,12 +98364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -97782,17 +98381,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, + [50213] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1095), 1, + sym_word, + ACTIONS(1097), 1, + anon_sym_BANG, + ACTIONS(1107), 1, sym_test_operator, - [50059] = 3, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(3272), 1, + sym__special_character, + STATE(1571), 1, + aux_sym__literal_repeat1, + STATE(1771), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1099), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1105), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1101), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1406), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 5, - sym_file_descriptor, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3174), 1, sym__concat, - sym_variable_name, + STATE(1138), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 4, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1212), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97810,11 +98481,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97828,21 +98497,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, - sym_test_operator, - [50109] = 6, + [50361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3328), 1, - sym__concat, - STATE(967), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(1203), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97851,6 +98518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -97860,10 +98528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97877,22 +98545,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, - sym_test_operator, - [50165] = 5, + [50411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 1, + ACTIONS(3298), 1, sym__special_character, - STATE(1213), 1, + STATE(1193), 1, aux_sym__literal_repeat1, - ACTIONS(2939), 4, + ACTIONS(2969), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(2937), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97910,7 +98578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -97928,20 +98595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [50219] = 6, + [50465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3330), 1, - sym__concat, - STATE(967), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(1221), 5, sym_file_descriptor, - sym__brace_start, - ACTIONS(1184), 37, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97950,6 +98613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -97959,10 +98623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -97978,17 +98642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [50275] = 3, + [50515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 5, + ACTIONS(1229), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1204), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -97997,6 +98661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98006,7 +98671,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [50565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98025,66 +98736,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [50615] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(181), 1, + sym_word, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(194), 1, + anon_sym_BANG, + ACTIONS(198), 1, + anon_sym_DOLLAR, + ACTIONS(204), 1, + aux_sym_number_token1, + ACTIONS(206), 1, + aux_sym_number_token2, + ACTIONS(210), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(222), 1, + sym_test_operator, + ACTIONS(224), 1, + sym__brace_start, + ACTIONS(951), 1, + sym__special_character, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + STATE(1458), 1, + aux_sym__literal_repeat1, + STATE(1631), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(947), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(955), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - [50325] = 24, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [50757] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(181), 1, sym_word, - ACTIONS(312), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(314), 1, + ACTIONS(194), 1, anon_sym_BANG, - ACTIONS(318), 1, + ACTIONS(198), 1, anon_sym_DOLLAR, - ACTIONS(324), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(330), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, + ACTIONS(222), 1, + sym_test_operator, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(1063), 1, + ACTIONS(951), 1, sym__special_character, - ACTIONS(1065), 1, + ACTIONS(953), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + STATE(1458), 1, + aux_sym__literal_repeat1, + STATE(1636), 1, + sym__expression, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(947), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(955), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1347), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [50849] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(346), 1, + sym_word, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_BANG, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(383), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, anon_sym_BQUOTE, - STATE(1439), 1, + ACTIONS(3228), 1, + sym__special_character, + STATE(1550), 1, aux_sym__literal_repeat1, - STATE(1756), 1, + STATE(1790), 1, sym__expression, - ACTIONS(151), 2, + ACTIONS(272), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, + ACTIONS(367), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(153), 3, + ACTIONS(274), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1773), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1521), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98094,10 +98987,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [50417] = 24, + [50941] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -98109,50 +99002,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(1061), 1, sym_word, - ACTIONS(1107), 1, + ACTIONS(1063), 1, anon_sym_BANG, - ACTIONS(1113), 1, + ACTIONS(1069), 1, sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1073), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1450), 1, + STATE(1427), 1, sym__expression, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1109), 2, + ACTIONS(1065), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1115), 2, + ACTIONS(1071), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, + ACTIONS(1067), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1446), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98162,10 +99055,57 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [50509] = 24, + [51033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [51083] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -98177,50 +99117,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1119), 1, + ACTIONS(1061), 1, sym_word, - ACTIONS(1121), 1, + ACTIONS(1063), 1, anon_sym_BANG, - ACTIONS(1127), 1, + ACTIONS(1069), 1, sym__special_character, - ACTIONS(1131), 1, + ACTIONS(1073), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1450), 1, + STATE(1780), 1, sym__expression, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1123), 2, + ACTIONS(1065), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1129), 2, + ACTIONS(1071), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 3, + ACTIONS(1067), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1548), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98230,65 +99170,65 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [50601] = 24, + [51175] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(183), 1, + ACTIONS(181), 1, sym_word, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(196), 1, + ACTIONS(194), 1, anon_sym_BANG, - ACTIONS(200), 1, + ACTIONS(198), 1, anon_sym_DOLLAR, - ACTIONS(206), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(212), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, + ACTIONS(222), 1, + sym_test_operator, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(993), 1, + ACTIONS(951), 1, + sym__special_character, + ACTIONS(953), 1, anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, + ACTIONS(959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1081), 1, - sym__special_character, - ACTIONS(1085), 1, - sym_test_operator, - ACTIONS(3210), 1, + ACTIONS(3253), 1, anon_sym_BQUOTE, - STATE(1485), 1, - aux_sym__literal_repeat1, - STATE(1768), 1, + STATE(1427), 1, sym__expression, + STATE(1458), 1, + aux_sym__literal_repeat1, ACTIONS(93), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(987), 2, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1083), 2, + ACTIONS(955), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, ACTIONS(95), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1491), 9, + STATE(1347), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98298,66 +99238,115 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [50693] = 25, - ACTIONS(63), 1, + [51267] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(365), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(369), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(1031), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [51323] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(181), 1, + sym_word, + ACTIONS(192), 1, anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(194), 1, anon_sym_BANG, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - ACTIONS(3332), 1, - sym_word, - ACTIONS(3336), 1, + ACTIONS(198), 1, + anon_sym_DOLLAR, + ACTIONS(204), 1, + aux_sym_number_token1, + ACTIONS(206), 1, + aux_sym_number_token2, + ACTIONS(210), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(222), 1, sym_test_operator, - STATE(1443), 1, + ACTIONS(224), 1, + sym__brace_start, + ACTIONS(951), 1, + sym__special_character, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + STATE(1458), 1, aux_sym__literal_repeat1, - STATE(1866), 1, + STATE(1634), 1, sym__expression, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1037), 2, + ACTIONS(93), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(3334), 2, + ACTIONS(947), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(955), 2, sym_raw_string, sym_ansi_c_string, - STATE(1418), 2, - sym_ternary_expression, - sym_postfix_expression, - ACTIONS(1039), 3, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(95), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1696), 4, + STATE(1520), 6, sym_binary_expression, + sym_ternary_expression, sym_unary_expression, + sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1432), 9, + STATE(1347), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98367,65 +99356,65 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [50787] = 24, + [51415] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(198), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(1029), 1, + ACTIONS(228), 1, sym_word, - ACTIONS(1031), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, + ACTIONS(230), 1, anon_sym_BANG, - ACTIONS(1047), 1, + ACTIONS(234), 1, sym_test_operator, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1091), 1, sym__special_character, - STATE(1488), 1, - aux_sym__literal_repeat1, - STATE(1686), 1, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + STATE(1427), 1, sym__expression, - ACTIONS(348), 2, + STATE(1458), 1, + aux_sym__literal_repeat1, + ACTIONS(133), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1037), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1045), 2, + ACTIONS(1093), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1039), 3, + ACTIONS(135), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1706), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1441), 9, + STATE(1499), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98435,20 +99424,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [50879] = 6, + [51507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3176), 1, aux_sym_concatenation_token1, - ACTIONS(3216), 1, + ACTIONS(3178), 1, sym__concat, - STATE(1215), 1, + STATE(1187), 1, aux_sym_concatenation_repeat1, - ACTIONS(3042), 3, + ACTIONS(2969), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3040), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98466,7 +99457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98484,21 +99474,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [50935] = 6, + [51563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, + ACTIONS(1221), 6, + sym_file_descriptor, sym__concat, - STATE(1212), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 3, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1219), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [51613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3034), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98507,8 +99539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98516,7 +99551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98534,39 +99568,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [50991] = 3, + [51663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 3, + ACTIONS(1203), 6, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(2861), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -98580,67 +99613,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, - sym_test_operator, - [51041] = 24, - ACTIONS(63), 1, + [51713] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(1269), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(365), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(369), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(1029), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1031), 1, + [51763] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1113), 1, + sym_word, + ACTIONS(1115), 1, anon_sym_BANG, - ACTIONS(1047), 1, + ACTIONS(1121), 1, + sym__special_character, + ACTIONS(1125), 1, sym_test_operator, - ACTIONS(3182), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - STATE(1488), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1848), 1, sym__expression, - ACTIONS(348), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1037), 2, + ACTIONS(1117), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1045), 2, + ACTIONS(1123), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1039), 3, + ACTIONS(1119), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1706), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1441), 9, + STATE(1541), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98650,10 +99730,60 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51133] = 24, + [51855] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [51911] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -98665,50 +99795,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, + ACTIONS(1095), 1, sym_word, - ACTIONS(1093), 1, + ACTIONS(1097), 1, anon_sym_BANG, - ACTIONS(1103), 1, + ACTIONS(1107), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(3224), 1, + ACTIONS(3272), 1, sym__special_character, - STATE(1587), 1, + STATE(1571), 1, aux_sym__literal_repeat1, - STATE(1801), 1, + STATE(1791), 1, sym__expression, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1095), 2, + ACTIONS(1099), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1101), 2, + ACTIONS(1105), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1097), 3, + ACTIONS(1101), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1436), 9, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98718,18 +99848,24 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51225] = 3, + [52003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 4, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1187), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1159), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -98739,14 +99875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98764,11 +99898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [51275] = 24, + [52059] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -98780,50 +99913,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, + ACTIONS(1095), 1, sym_word, - ACTIONS(1107), 1, + ACTIONS(1097), 1, anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1107), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1791), 1, + ACTIONS(3272), 1, + sym__special_character, + STATE(1427), 1, sym__expression, - ACTIONS(1059), 2, + STATE(1571), 1, + aux_sym__literal_repeat1, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1109), 2, + ACTIONS(1099), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1115), 2, + ACTIONS(1105), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, + ACTIONS(1101), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1446), 9, + STATE(1406), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52151] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(3213), 1, + sym__special_character, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(3377), 1, + sym_word, + ACTIONS(3381), 1, + sym_test_operator, + STATE(1425), 1, + aux_sym__literal_repeat1, + STATE(1860), 1, + sym__expression, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1049), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(3379), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1520), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1051), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1649), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1424), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98833,16 +100035,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51367] = 3, + [52245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, + ACTIONS(1185), 5, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1224), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -98851,6 +100053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -98860,7 +100063,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -98878,67 +100080,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [51417] = 24, - ACTIONS(63), 1, + [52295] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(183), 1, - sym_word, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(196), 1, - anon_sym_BANG, - ACTIONS(200), 1, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1188), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(206), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(208), 1, aux_sym_number_token2, - ACTIONS(212), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(993), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [52351] = 25, + ACTIONS(63), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1081), 1, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(1045), 1, + anon_sym_LPAREN, + ACTIONS(1047), 1, + anon_sym_BANG, + ACTIONS(3213), 1, sym__special_character, - ACTIONS(1085), 1, - sym_test_operator, - ACTIONS(3210), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - STATE(1485), 1, + ACTIONS(3383), 1, + sym_word, + ACTIONS(3387), 1, + sym_test_operator, + STATE(1460), 1, aux_sym__literal_repeat1, - STATE(1762), 1, + STATE(1860), 1, sym__expression, - ACTIONS(93), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(987), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1049), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(3385), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(95), 3, + STATE(1520), 2, + sym_ternary_expression, + sym_postfix_expression, + ACTIONS(1051), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1670), 4, sym_binary_expression, - sym_ternary_expression, sym_unary_expression, - sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1491), 9, + STATE(1430), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98948,7 +100201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51509] = 24, + [52445] = 24, ACTIONS(63), 1, sym_comment, ACTIONS(308), 1, @@ -98965,48 +100218,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1063), 1, + ACTIONS(1031), 1, sym__special_character, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, - sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - STATE(1439), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1788), 1, + STATE(1820), 1, sym__expression, ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1795), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1422), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99016,18 +100269,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [51601] = 5, - ACTIONS(3), 1, + [52537] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(3326), 1, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1061), 1, + sym_word, + ACTIONS(1063), 1, + anon_sym_BANG, + ACTIONS(1069), 1, sym__special_character, - STATE(1089), 1, + ACTIONS(1073), 1, + sym_test_operator, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, aux_sym__literal_repeat1, - ACTIONS(2939), 3, + STATE(1806), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1065), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1067), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1416), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3005), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99036,9 +100355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99046,11 +100367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99062,19 +100383,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, - sym_test_operator, - [51655] = 3, + [52679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, + ACTIONS(1245), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1242), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99092,7 +100413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99111,17 +100431,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [51705] = 3, + [52729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 5, - sym_file_descriptor, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, sym__concat, + STATE(1187), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1246), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99139,11 +100464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99158,17 +100481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [51755] = 3, + [52785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, + ACTIONS(1269), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1242), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99186,7 +100510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99205,17 +100528,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [52835] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1113), 1, + sym_word, + ACTIONS(1115), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + sym__special_character, + ACTIONS(1125), 1, sym_test_operator, - [51805] = 3, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1427), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1117), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1119), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1541), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [52927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 5, + ACTIONS(3308), 1, + sym__special_character, + STATE(1156), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1196), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99226,6 +100620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99233,13 +100629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99252,21 +100645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [51855] = 6, + [52981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3338), 1, - sym__concat, - STATE(1063), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1265), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 36, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99284,10 +100674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99302,20 +100692,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [51911] = 5, - ACTIONS(3), 1, + [53031] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(3340), 1, - sym__special_character, - STATE(1213), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 4, - sym_file_descriptor, - sym_variable_name, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 36, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1061), 1, + sym_word, + ACTIONS(1063), 1, + anon_sym_BANG, + ACTIONS(1069), 1, + sym__special_character, + ACTIONS(1073), 1, + sym_test_operator, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1766), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1065), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1067), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1416), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 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(1259), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99333,11 +100789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99349,41 +100806,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, + [53173] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1061), 1, + sym_word, + ACTIONS(1063), 1, + anon_sym_BANG, + ACTIONS(1069), 1, + sym__special_character, + ACTIONS(1073), 1, sym_test_operator, - [51965] = 3, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1823), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1065), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1067), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1416), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 5, + ACTIONS(2809), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1170), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99398,21 +100922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52015] = 6, + [53315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3343), 1, - sym__concat, - STATE(1063), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1225), 7, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 36, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99430,10 +100951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99448,17 +100969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52071] = 3, + [53365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 5, + ACTIONS(1265), 6, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1216), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99467,6 +100988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99476,7 +100998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99495,11 +101016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52121] = 24, + [53415] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(192), 1, anon_sym_LPAREN, ACTIONS(318), 1, anon_sym_DOLLAR, @@ -99511,50 +101031,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, + ACTIONS(1061), 1, sym_word, - ACTIONS(1093), 1, + ACTIONS(1063), 1, anon_sym_BANG, - ACTIONS(1103), 1, + ACTIONS(1069), 1, + sym__special_character, + ACTIONS(1073), 1, sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(3224), 1, - sym__special_character, - STATE(1450), 1, - sym__expression, - STATE(1587), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - ACTIONS(1059), 2, + STATE(1774), 1, + sym__expression, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1095), 2, + ACTIONS(1065), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1101), 2, + ACTIONS(1071), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1097), 3, + ACTIONS(1067), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1520), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1436), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99564,11 +101084,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [52213] = 24, + [53507] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(194), 1, + ACTIONS(308), 1, + sym_word, + ACTIONS(312), 1, anon_sym_LPAREN, + ACTIONS(314), 1, + anon_sym_BANG, ACTIONS(318), 1, anon_sym_DOLLAR, ACTIONS(324), 1, @@ -99577,52 +101101,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(340), 1, + sym_test_operator, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1031), 1, + sym__special_character, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - sym_test_operator, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(3224), 1, - sym__special_character, - STATE(1587), 1, + STATE(1420), 1, aux_sym__literal_repeat1, - STATE(1796), 1, + STATE(1757), 1, sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1095), 2, + ACTIONS(151), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1101), 2, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1035), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1097), 3, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(153), 3, anon_sym_TILDE, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - STATE(1418), 6, + STATE(1763), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(1436), 9, + STATE(1439), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99632,16 +101152,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [52305] = 3, + [53599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 5, + ACTIONS(1249), 7, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1200), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99659,7 +101181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -99678,21 +101199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52355] = 6, + [53649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1215), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1203), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99701,6 +101217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -99710,10 +101227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99727,21 +101244,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [53699] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(192), 1, + anon_sym_LPAREN, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, + aux_sym_number_token1, + ACTIONS(326), 1, + aux_sym_number_token2, + ACTIONS(330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(342), 1, + sym__brace_start, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1113), 1, sym_word, + ACTIONS(1115), 1, + anon_sym_BANG, + ACTIONS(1121), 1, + sym__special_character, + ACTIONS(1125), 1, sym_test_operator, - [52411] = 6, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + STATE(1420), 1, + aux_sym__literal_repeat1, + STATE(1847), 1, + sym__expression, + ACTIONS(1027), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1117), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1123), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1119), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1520), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1541), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [53791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, - sym__concat, - STATE(1189), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2977), 2, + ACTIONS(1253), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2973), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99759,10 +101343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99776,22 +101360,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, - sym_test_operator, - [52467] = 6, + [53841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, - sym__concat, - STATE(1187), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2991), 2, + ACTIONS(3308), 1, + sym__special_character, + STATE(1156), 1, + aux_sym__literal_repeat1, + ACTIONS(2997), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2989), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99802,6 +101385,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99809,12 +101394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99826,17 +101409,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, - sym_test_operator, - [52523] = 3, + [53895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(1261), 6, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99845,11 +101429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99857,10 +101439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99875,17 +101457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52573] = 3, + [53945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 3, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + STATE(1254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2819), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2817), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(2817), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99893,9 +101481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -99904,9 +101490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -99922,17 +101506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52623] = 3, + [54000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 5, + ACTIONS(3389), 1, + sym__special_character, + STATE(1286), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 6, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1270), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -99950,13 +101538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -99969,85 +101554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52673] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym_word, - ACTIONS(1107), 1, - anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1798), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1109), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1115), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1111), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1446), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [52765] = 3, + [54053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 5, + ACTIONS(3005), 5, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1208), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100058,6 +101574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100065,11 +101583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100084,360 +101600,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [52815] = 24, + [54102] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(308), 1, - sym_word, - ACTIONS(312), 1, + ACTIONS(1285), 1, anon_sym_LPAREN, - ACTIONS(314), 1, - anon_sym_BANG, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1063), 1, - sym__special_character, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1075), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1769), 1, - sym__expression, - ACTIONS(151), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1067), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(153), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1795), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - 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, - [52907] = 25, - ACTIONS(63), 1, - sym_comment, - ACTIONS(361), 1, + STATE(1349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3391), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1147), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(1031), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_BANG, - ACTIONS(3182), 1, anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - ACTIONS(3345), 1, sym_word, - ACTIONS(3349), 1, + ACTIONS(1156), 24, + sym_file_descriptor, sym_test_operator, - STATE(1454), 1, - aux_sym__literal_repeat1, - STATE(1866), 1, - sym__expression, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1037), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(3347), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1418), 2, - sym_ternary_expression, - sym_postfix_expression, - ACTIONS(1039), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1715), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53001] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym_word, - ACTIONS(1107), 1, - anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1761), 1, - sym__expression, - ACTIONS(1059), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1109), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1115), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1111), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1446), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53093] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym_word, - ACTIONS(1107), 1, - anon_sym_BANG, - ACTIONS(1113), 1, sym__special_character, - ACTIONS(1117), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1812), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1109), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1115), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1111), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1446), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53185] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(3224), 1, - sym__special_character, - STATE(1587), 1, - aux_sym__literal_repeat1, - STATE(1772), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1095), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1097), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1436), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53277] = 5, + [54157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3393), 1, sym__special_character, - STATE(1233), 1, + STATE(1253), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(1275), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100446,10 +101670,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100457,7 +101680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100473,86 +101695,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [53331] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(361), 1, - anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, - aux_sym_number_token1, - ACTIONS(371), 1, - aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(1029), 1, - sym_word, - ACTIONS(1031), 1, - anon_sym_LPAREN, - ACTIONS(1033), 1, - anon_sym_BANG, - ACTIONS(1047), 1, - sym_test_operator, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(3198), 1, - sym__special_character, - STATE(1488), 1, - aux_sym__literal_repeat1, - STATE(1650), 1, - sym__expression, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1037), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1045), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1039), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1441), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53423] = 3, + [54210] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(3396), 1, + sym__concat, + STATE(711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1180), 39, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100560,19 +101722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -100587,21 +101745,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, - sym_test_operator, - [53473] = 3, + [54265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 4, + ACTIONS(2977), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2817), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100610,15 +101766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100636,19 +101792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [53523] = 3, + [54314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 4, + ACTIONS(3260), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1180), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100658,14 +101814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100682,37 +101836,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, + [54363] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1346), 1, + aux_sym_concatenation_repeat1, + ACTIONS(949), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 14, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1169), 24, sym_test_operator, - [53573] = 3, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym__special_character, + [54416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1168), 3, + ACTIONS(2977), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100729,19 +101930,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, - sym_test_operator, - [53623] = 5, + [54465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(3398), 1, sym__special_character, - STATE(1239), 1, + STATE(1259), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 2, + ACTIONS(1275), 5, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -100752,8 +101956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100761,7 +101963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -100779,18 +101980,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [53677] = 3, + [54518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 4, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(3401), 1, + sym__concat, + STATE(711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2861), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100799,7 +102005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -100808,9 +102013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -100826,109 +102029,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [53727] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(194), 1, - anon_sym_LPAREN, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1105), 1, - sym_word, - ACTIONS(1107), 1, - anon_sym_BANG, - ACTIONS(1113), 1, - sym__special_character, - ACTIONS(1117), 1, - sym_test_operator, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - STATE(1439), 1, - aux_sym__literal_repeat1, - STATE(1767), 1, - sym__expression, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1109), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1115), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1111), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1418), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(1446), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [53819] = 6, + [54573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + STATE(1254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, sym_file_descriptor, - ACTIONS(3367), 2, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + 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, - ACTIONS(3359), 14, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -100944,35 +102078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [53875] = 5, + [54628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + STATE(1260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2809), 5, sym_file_descriptor, - ACTIONS(2592), 2, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2578), 17, + aux_sym_heredoc_redirect_token1, + ACTIONS(2807), 33, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - ACTIONS(3306), 21, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -100980,26 +102103,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - [53928] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [54683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 2, + ACTIONS(3389), 1, + sym__special_character, + STATE(1286), 1, + aux_sym__literal_repeat1, + ACTIONS(2997), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 39, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101010,8 +102152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101019,12 +102159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101036,18 +102174,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, - sym_test_operator, - [53977] = 3, + [54736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 4, + ACTIONS(1169), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3243), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101058,6 +102195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101065,7 +102204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101082,44 +102220,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [54026] = 5, + [54785] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - sym__special_character, - STATE(1278), 1, - aux_sym__literal_repeat1, - ACTIONS(3042), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3040), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101132,16 +102271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [54079] = 5, + [54842] = 5, ACTIONS(63), 1, sym_comment, - STATE(1247), 1, + STATE(1266), 1, aux_sym_concatenation_repeat1, - ACTIONS(3371), 2, + ACTIONS(3403), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1170), 13, + ACTIONS(1183), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -101155,7 +102293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1175), 25, + ACTIONS(1185), 25, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -101180,15 +102319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - sym_test_operator, - [54132] = 3, + [54895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(2977), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101197,10 +102337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101208,7 +102347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101225,24 +102363,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, - sym_test_operator, - [54181] = 6, + [54944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(1275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(222), 3, + ACTIONS(3260), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(189), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 36, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -101250,16 +102384,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -101275,18 +102411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [54236] = 5, + [54993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, - sym__special_character, - STATE(1277), 1, - aux_sym__literal_repeat1, - ACTIONS(2977), 2, + ACTIONS(1169), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2973), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101295,7 +102430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101305,11 +102439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101323,23 +102457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [54289] = 6, + [55042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(1276), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1168), 3, + ACTIONS(3389), 1, + sym__special_character, + STATE(1286), 1, + aux_sym__literal_repeat1, + ACTIONS(3065), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1159), 35, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 33, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -101347,68 +102481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + 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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [54344] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - sym_file_descriptor, - ACTIONS(3367), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3361), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3359), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101421,16 +102505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [54399] = 3, + [55095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 4, + ACTIONS(3264), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3247), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101448,7 +102533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101467,20 +102551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [54448] = 5, + [55144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3376), 1, - sym__special_character, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 4, + ACTIONS(1169), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1276), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101489,6 +102569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101498,11 +102579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101514,21 +102595,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, - sym_test_operator, - [54501] = 5, + [55193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, - sym__special_character, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(3062), 4, + ACTIONS(3264), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3060), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101539,6 +102617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101546,11 +102626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101563,19 +102643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [54554] = 5, + [55242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - sym__special_character, - STATE(1278), 1, - aux_sym__literal_repeat1, - ACTIONS(3062), 3, + ACTIONS(3260), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3060), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101594,11 +102671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101610,43 +102687,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, - sym_test_operator, - [54607] = 5, + [55291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - sym__special_character, - STATE(1278), 1, - aux_sym__literal_repeat1, - ACTIONS(2939), 3, + ACTIONS(3306), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2592), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 36, + ACTIONS(2584), 16, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101659,17 +102716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [54660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1180), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(3304), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101679,6 +102726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101686,34 +102735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - sym_test_operator, - [54709] = 3, + [55344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 3, + ACTIONS(1169), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101722,9 +102754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -101732,7 +102765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101751,18 +102783,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [54758] = 3, + [55393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 4, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + STATE(1254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(218), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2947), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(187), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -101770,17 +102808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -101795,72 +102831,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, - sym_test_operator, - [54807] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1286), 1, - aux_sym_concatenation_repeat1, - ACTIONS(989), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 14, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1182), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [54860] = 5, + [55448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, - sym__special_character, - STATE(1254), 1, - aux_sym__literal_repeat1, - ACTIONS(3042), 4, + ACTIONS(2949), 1, + aux_sym_concatenation_token1, + ACTIONS(2951), 1, + sym__concat, + STATE(1260), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1156), 5, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3040), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(1147), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_EQ_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -101868,19 +102857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -101893,40 +102881,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [54913] = 6, + [55503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(1275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(3264), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 36, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -101941,21 +102925,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, - sym_test_operator, - [54968] = 5, + [55552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(3406), 1, sym__special_character, - STATE(1254), 1, + STATE(1288), 1, aux_sym__literal_repeat1, - ACTIONS(2939), 4, + ACTIONS(2997), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2937), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -101964,6 +102949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -101973,7 +102959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -101990,19 +102975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55021] = 5, + [55605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3381), 1, - sym__special_character, - STATE(1268), 1, - aux_sym__literal_repeat1, - ACTIONS(2977), 3, + ACTIONS(3069), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2973), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102013,6 +102995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102020,11 +103004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102036,23 +103020,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, - sym_test_operator, - [55074] = 6, + [55654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(2951), 1, sym__concat, - STATE(1275), 1, + STATE(1254), 1, aux_sym_concatenation_repeat1, - ACTIONS(2859), 3, + ACTIONS(2823), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2857), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(2821), 33, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -102070,7 +103054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -102087,21 +103070,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55129] = 6, + [55709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(2949), 1, aux_sym_concatenation_token1, - ACTIONS(2953), 1, + ACTIONS(2951), 1, sym__concat, - STATE(1276), 1, + STATE(1260), 1, aux_sym_concatenation_repeat1, - ACTIONS(2863), 3, + ACTIONS(2805), 5, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2861), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(2803), 33, anon_sym_LPAREN_LPAREN, anon_sym_EQ_EQ, anon_sym_AMP_AMP, @@ -102119,7 +103103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -102136,19 +103119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55184] = 5, + [55764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3408), 1, sym__special_character, - STATE(1268), 1, + STATE(1259), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(3021), 5, sym_file_descriptor, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1276), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102166,7 +103150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -102184,15 +103167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [55237] = 3, + [55817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3410), 1, + sym__special_character, + STATE(1253), 1, + aux_sym__literal_repeat1, + ACTIONS(3021), 4, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3243), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102201,10 +103188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102212,12 +103198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102229,16 +103213,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, - sym_test_operator, - [55286] = 3, + [55870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 3, + ACTIONS(3412), 1, + sym__special_character, + STATE(1286), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3247), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 33, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102249,8 +103240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -102258,12 +103247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102276,64 +103263,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55335] = 6, - ACTIONS(63), 1, + [55923] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, - anon_sym_LPAREN, - STATE(1292), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1159), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1168), 24, + ACTIONS(3406), 1, + sym__special_character, + STATE(1288), 1, + aux_sym__literal_repeat1, + ACTIONS(3065), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 34, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [55390] = 3, + sym_word, + [55976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 3, + ACTIONS(3415), 1, + sym__special_character, + STATE(1288), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3247), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(1273), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102352,12 +103343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102369,17 +103358,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, - sym_test_operator, - [55439] = 3, + [56029] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3406), 1, + sym__special_character, + STATE(1288), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3243), 38, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102398,12 +103391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102415,39 +103406,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [55488] = 3, + [56082] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3418), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102463,40 +103457,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55537] = 6, + [56140] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(3388), 1, - sym__concat, - STATE(754), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3421), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - 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, + ACTIONS(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102512,40 +103507,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55592] = 6, + [56198] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(3390), 1, - sym__concat, - STATE(754), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3424), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1190), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - 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, + ACTIONS(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102561,18 +103557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55647] = 5, + [56256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, - sym__special_character, - STATE(1277), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 2, + ACTIONS(3264), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1276), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -102581,7 +103576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -102591,11 +103585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102607,44 +103601,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [55700] = 5, - ACTIONS(3), 1, + [56304] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3395), 1, - sym__special_character, - STATE(1278), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 3, + STATE(1349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3391), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2803), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2805), 24, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1276), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [56356] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, + sym_file_descriptor, + ACTIONS(3427), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -102657,37 +103699,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [56414] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1215), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1217), 27, + sym__concat, sym_test_operator, - [55753] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [56462] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3430), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3044), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102703,37 +103794,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55802] = 3, + [56520] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3433), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3034), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102749,36 +103844,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55851] = 3, + [56578] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3436), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102793,42 +103893,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, - sym_test_operator, - [55900] = 6, + [56636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(1276), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2819), 3, + ACTIONS(1169), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2817), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102844,23 +103939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [55955] = 6, + [56684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - aux_sym_concatenation_token1, - ACTIONS(2953), 1, - sym__concat, - STATE(1275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2811), 3, + ACTIONS(1169), 5, sym_file_descriptor, - sym__bare_dollar, + sym_test_operator, sym__brace_start, - ACTIONS(2809), 35, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 35, anon_sym_LPAREN_LPAREN, - anon_sym_EQ_EQ, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -102868,16 +103958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -102892,19 +103982,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, - sym_test_operator, - [56010] = 7, + [56732] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3398), 1, + ACTIONS(3439), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -102913,7 +104006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -102922,10 +104015,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -102942,11 +104034,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [56790] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3442), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1183), 14, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1185), 23, sym_test_operator, - [56066] = 3, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [56842] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 13, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -102960,8 +104098,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1240), 27, + ACTIONS(1207), 27, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -102987,17 +104126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - sym_test_operator, - [56114] = 6, + [56890] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(989), 1, - aux_sym_concatenation_token1, - ACTIONS(3401), 1, - sym__concat, - STATE(1367), 1, + STATE(1443), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 14, + ACTIONS(949), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -103008,11 +104145,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1186), 23, + ACTIONS(1169), 24, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -103035,16 +104172,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [56168] = 5, + sym__special_character, + [56942] = 5, ACTIONS(63), 1, sym_comment, - STATE(1510), 1, + STATE(1372), 1, aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, + ACTIONS(3391), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1180), 13, + ACTIONS(2821), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2823), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [56994] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1235), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -103058,7 +104237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1182), 24, + ACTIONS(1237), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -103079,20 +104260,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, + anon_sym_COLON, + aux_sym_concatenation_token1, + [57042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3005), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [56220] = 6, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [57090] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(989), 1, - aux_sym_concatenation_token1, - ACTIONS(3403), 1, - sym__concat, - STATE(1367), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 14, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -103103,12 +104324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1192), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1207), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -103128,40 +104349,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [56274] = 5, - ACTIONS(63), 1, + anon_sym_COLON, + aux_sym_concatenation_token1, + [57138] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1293), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, - sym__concat, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(1180), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1182), 24, + ACTIONS(3098), 1, + sym__concat, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 32, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -103169,44 +104388,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [56326] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [57192] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3445), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3243), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -103222,134 +104453,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [56374] = 5, - ACTIONS(63), 1, + [57250] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1291), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3405), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1175), 24, + ACTIONS(1169), 6, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 34, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [56426] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3386), 1, - aux_sym_concatenation_token1, - ACTIONS(3408), 1, - sym__concat, - STATE(1291), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, - anon_sym_EQ_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1192), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [56480] = 6, - ACTIONS(63), 1, + sym_word, + [57298] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3410), 1, + ACTIONS(3098), 1, sym__concat, - STATE(1291), 1, + STATE(1342), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1186), 24, + ACTIONS(2977), 5, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 32, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -103357,24 +104531,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [56534] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [57352] = 5, ACTIONS(63), 1, sym_comment, - STATE(1440), 1, + STATE(1493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1041), 2, + ACTIONS(1029), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1180), 14, + ACTIONS(1167), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -103388,8 +104568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1182), 23, + ACTIONS(1169), 24, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -103409,21 +104589,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [56586] = 3, + sym__special_character, + [57404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 4, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, + sym__concat, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3034), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -103431,7 +104617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -103439,9 +104624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -103456,19 +104639,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, - sym_test_operator, - [56634] = 7, + [57458] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3412), 1, + ACTIONS(3448), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -103477,7 +104663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103486,10 +104672,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -103506,65 +104691,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [56690] = 5, - ACTIONS(63), 1, + [57516] = 8, + ACTIONS(3), 1, sym_comment, - STATE(1492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 13, - anon_sym_EQ, - anon_sym_LT_LT, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, + sym_file_descriptor, + ACTIONS(3451), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(3345), 8, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1182), 24, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3343), 10, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, - sym_test_operator, - [56742] = 7, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [57574] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3415), 1, + ACTIONS(3454), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -103573,7 +104763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103582,10 +104772,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -103602,16 +104791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [56798] = 3, + [57632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 4, + ACTIONS(3260), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3243), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103629,7 +104819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -103647,18 +104836,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [56846] = 7, + [57680] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3418), 1, + ACTIONS(3457), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -103667,7 +104858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103676,10 +104867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -103696,18 +104886,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [56902] = 7, + [57738] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3421), 1, + ACTIONS(3460), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -103716,7 +104908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103725,10 +104917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -103745,18 +104936,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [57796] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1223), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1225), 27, + sym__concat, sym_test_operator, - [56958] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [57844] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3424), 1, + ACTIONS(3463), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -103765,7 +105003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103774,10 +105012,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -103794,40 +105031,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [57902] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1263), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1265), 27, + sym__concat, sym_test_operator, - [57014] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [57950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(1169), 4, sym_file_descriptor, - ACTIONS(3427), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -103842,19 +105119,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, - sym_test_operator, - [57070] = 5, + [57998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 2, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, + sym__concat, + STATE(1342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2973), 5, + sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3308), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(2578), 17, + aux_sym_heredoc_redirect_token1, + ACTIONS(2971), 32, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -103869,9 +105167,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, + [58052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3306), 19, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103879,6 +105187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -103888,42 +105197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [57122] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - sym_file_descriptor, - ACTIONS(3430), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3361), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -103939,40 +105214,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [57178] = 7, + [58100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3098), 1, + sym__concat, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2963), 5, sym_file_descriptor, - ACTIONS(3433), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(2961), 32, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -103987,19 +105260,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, - sym_test_operator, - [57234] = 7, + [58154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3436), 1, + ACTIONS(3466), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -104008,7 +105284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104017,10 +105293,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104037,16 +105312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [57290] = 5, + [58212] = 5, ACTIONS(63), 1, sym_comment, - STATE(1292), 1, + STATE(1349), 1, aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, + ACTIONS(3391), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1159), 13, + ACTIONS(1147), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -104060,8 +105334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1168), 24, + ACTIONS(1156), 24, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -104084,16 +105359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [57342] = 5, + [58264] = 5, ACTIONS(63), 1, sym_comment, - STATE(1293), 1, + STATE(1372), 1, aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, + ACTIONS(3391), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(189), 13, + ACTIONS(1167), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -104107,8 +105381,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(222), 24, + ACTIONS(1169), 24, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -104131,84 +105406,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [57394] = 6, + [58316] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(1347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3469), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - sym_test_operator, - [57448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3249), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3247), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -104224,18 +105456,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [57496] = 7, + [58374] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3439), 1, + ACTIONS(3472), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -104244,7 +105478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104253,10 +105487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104273,16 +105506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [57552] = 5, + [58432] = 3, ACTIONS(63), 1, sym_comment, - STATE(1416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(989), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 13, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -104296,8 +105523,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1182), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1229), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -104317,41 +105545,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [57604] = 6, + anon_sym_COLON, + aux_sym_concatenation_token1, + [58480] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(1347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3475), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2937), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -104366,20 +105600,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, - sym_test_operator, - [57658] = 7, + [58538] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3442), 1, - ts_builtin_sym_end, - ACTIONS(3367), 2, + ACTIONS(3478), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -104388,7 +105623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104397,10 +105632,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104417,18 +105651,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [57714] = 7, + [58596] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3444), 1, + ACTIONS(3481), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -104437,7 +105673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104446,10 +105682,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104466,16 +105701,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [58654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [57770] = 5, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [58702] = 5, ACTIONS(63), 1, sym_comment, - STATE(1292), 1, + STATE(1372), 1, aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, + ACTIONS(3391), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2817), 13, + ACTIONS(187), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -104489,8 +105768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2819), 24, + ACTIONS(218), 24, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -104513,16 +105793,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [58754] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1231), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1233), 27, + sym__concat, sym_test_operator, - [57822] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [58802] = 5, ACTIONS(63), 1, sym_comment, - STATE(1293), 1, + STATE(1341), 1, aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, + ACTIONS(3484), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2809), 13, + ACTIONS(1183), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -104536,8 +105860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2811), 24, + ACTIONS(1185), 24, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -104560,21 +105885,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [57874] = 6, + [58854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3096), 1, aux_sym_concatenation_token1, - ACTIONS(3078), 1, + ACTIONS(3487), 1, sym__concat, - STATE(1346), 1, + STATE(917), 1, aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1179), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 34, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 32, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104590,7 +105916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104608,35 +105933,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [57928] = 3, + [58908] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 2, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3489), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1180), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -104651,20 +105982,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, - sym_test_operator, - [57976] = 7, + [58966] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3447), 1, + ACTIONS(3492), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -104673,7 +106005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104682,10 +106014,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104702,18 +106033,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [59024] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(949), 1, + aux_sym_concatenation_token1, + ACTIONS(3495), 1, + sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 14, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1179), 23, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [59078] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(949), 1, + aux_sym_concatenation_token1, + ACTIONS(3497), 1, + sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 14, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1173), 23, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [59132] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(949), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1149), 14, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1283), 23, sym_test_operator, - [58032] = 7, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [59184] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3450), 1, + ACTIONS(3499), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -104722,7 +106198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104731,10 +106207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104751,16 +106226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58088] = 5, + [59242] = 6, ACTIONS(63), 1, sym_comment, - STATE(1292), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, - sym__concat, + ACTIONS(3391), 1, aux_sym_concatenation_token1, - ACTIONS(2861), 13, + ACTIONS(3502), 1, + sym__concat, + STATE(1341), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -104774,8 +106249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2863), 24, + ACTIONS(1179), 24, sym_file_descriptor, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -104798,85 +106274,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [58140] = 5, - ACTIONS(63), 1, + [59296] = 8, + ACTIONS(3), 1, sym_comment, - STATE(1293), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3386), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2857), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(2859), 24, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - sym__bare_dollar, + ACTIONS(3504), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, + sym_variable_name, + sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3345), 8, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [58192] = 6, + sym_word, + [59354] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(1347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2889), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3507), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2887), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -104891,65 +106373,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [58246] = 3, - ACTIONS(3), 1, + [59412] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(2949), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2947), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(1469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1029), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1169), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym__special_character, + [59464] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1259), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + anon_sym_CARET, + ACTIONS(1261), 27, + sym__concat, sym_test_operator, - [58294] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [59512] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3453), 1, + ACTIONS(3510), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -104958,7 +106488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104967,10 +106497,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -104987,84 +106516,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58350] = 6, + [59570] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3078), 1, - sym__concat, - STATE(1346), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2877), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3513), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2873), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - sym_test_operator, - [58404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2947), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -105080,36 +106566,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58452] = 3, + [59628] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 3, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3516), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3044), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -105125,36 +106616,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58500] = 3, + [59686] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 4, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, + ACTIONS(3519), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1180), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -105170,18 +106666,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [59744] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1211), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1213), 27, + sym__concat, sym_test_operator, - [58548] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [59792] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3456), 1, + ACTIONS(3522), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -105190,7 +106733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105199,10 +106742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105219,18 +106761,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58604] = 7, + [59850] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3459), 1, + ACTIONS(3525), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -105239,7 +106783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105248,10 +106792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105268,83 +106811,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58660] = 5, + [59908] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(2592), 2, + ACTIONS(3528), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, sym_variable_name, - sym__brace_start, - ACTIONS(2578), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - ACTIONS(3306), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + sym__brace_start, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [58712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 4, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3044), 36, - anon_sym_LPAREN_LPAREN, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -105360,15 +106861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58760] = 3, + [59966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 3, + ACTIONS(2977), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3034), 37, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 34, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -105377,7 +106880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105387,7 +106889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -105405,18 +106906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58808] = 7, + [60014] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3462), 1, + ACTIONS(3531), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -105425,7 +106928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105434,10 +106937,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105454,18 +106956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58864] = 7, + [60072] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3465), 1, + ACTIONS(3534), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -105474,7 +106978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105483,10 +106987,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105503,39 +107006,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58920] = 6, + [60130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3069), 6, sym_file_descriptor, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(3359), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -105551,67 +107051,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [58974] = 7, - ACTIONS(3), 1, + [60178] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3364), 1, - sym_file_descriptor, - ACTIONS(3468), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(1251), 13, + anon_sym_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_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3359), 11, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1253), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [60226] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1418), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1029), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 14, + anon_sym_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_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + anon_sym_CARET, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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(1169), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [60278] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1247), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1249), 27, + sym__concat, sym_test_operator, - [59030] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [60326] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3471), 1, + ACTIONS(3537), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -105620,7 +107210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105629,10 +107219,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105649,18 +107238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59086] = 7, + [60384] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3474), 1, + ACTIONS(3540), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -105669,7 +107260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105678,10 +107269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105698,39 +107288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59142] = 7, + [60442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, - sym_file_descriptor, - ACTIONS(3477), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(2592), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, + ACTIONS(3306), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(2584), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105747,16 +107316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1180), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(3304), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105764,7 +107324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -105774,181 +107333,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59246] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, - sym_file_descriptor, - ACTIONS(3480), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3361), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59302] = 6, - ACTIONS(3), 1, + [60494] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3391), 1, aux_sym_concatenation_token1, - ACTIONS(3483), 1, + ACTIONS(3543), 1, sym__concat, - STATE(793), 1, + STATE(1341), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1190), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1171), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - 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_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, - sym_test_operator, - [59356] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3074), 1, - aux_sym_concatenation_token1, - ACTIONS(3485), 1, - sym__concat, - STATE(793), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1173), 24, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(1184), 34, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - sym_test_operator, - [59410] = 7, + [60548] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3487), 1, + ACTIONS(3545), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -105957,7 +107405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -105966,10 +107414,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -105986,18 +107433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59466] = 7, + [60606] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3490), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106006,19 +107453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106035,18 +107482,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59522] = 7, + [60662] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3493), 1, + ACTIONS(3548), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106055,7 +107504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106064,10 +107513,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106084,18 +107532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59578] = 7, + [60720] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3496), 1, + ACTIONS(3551), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106104,7 +107554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106113,10 +107563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106133,18 +107582,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59634] = 7, + [60778] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3499), 1, + ACTIONS(3554), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106153,7 +107604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106162,10 +107613,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106182,67 +107632,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59690] = 7, - ACTIONS(3), 1, + [60836] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3364), 1, - sym_file_descriptor, - ACTIONS(3502), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3361), 8, - anon_sym_GT_GT, + STATE(1372), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3391), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2817), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2819), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59746] = 7, + [60888] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3505), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3348), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106251,7 +107700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106260,10 +107709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106280,18 +107728,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [60944] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1404), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1053), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 14, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + sym__special_character, + ACTIONS(1169), 23, sym_test_operator, - [59802] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [60996] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3508), 1, + ACTIONS(3557), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106300,7 +107797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106309,10 +107806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106329,16 +107825,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [59858] = 5, + [61054] = 3, ACTIONS(63), 1, sym_comment, - STATE(1448), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, + ACTIONS(1201), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1203), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(1180), 14, + [61102] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1219), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -106352,8 +107887,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1182), 23, + ACTIONS(1221), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -106373,92 +107909,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [59910] = 7, - ACTIONS(3), 1, + anon_sym_COLON, + aux_sym_concatenation_token1, + [61150] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3364), 1, - sym_file_descriptor, - ACTIONS(3511), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(3361), 8, - anon_sym_GT_GT, + STATE(1349), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3391), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2807), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2809), 24, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [59966] = 7, + [61202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3005), 5, sym_file_descriptor, - ACTIONS(3514), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -106474,18 +108007,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [61250] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1267), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1269), 27, + sym__concat, sym_test_operator, - [60022] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [61298] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3517), 1, + ACTIONS(3560), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106494,7 +108074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106503,10 +108083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106523,15 +108102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60078] = 5, + [61356] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1053), 1, aux_sym_concatenation_token1, - STATE(1511), 1, + STATE(1515), 1, aux_sym_concatenation_repeat1, - ACTIONS(1180), 14, + ACTIONS(1167), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -106546,8 +108124,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, sym__special_character, - ACTIONS(1182), 24, + ACTIONS(1169), 24, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -106570,18 +108149,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [60130] = 7, + [61408] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3520), 1, + ACTIONS(3563), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106590,7 +108171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106599,10 +108180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106619,18 +108199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60186] = 7, + [61466] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3523), 1, + ACTIONS(3566), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106639,7 +108221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106648,10 +108230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106668,18 +108249,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [61524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2592), 3, + sym_variable_name, sym_test_operator, - [60242] = 7, + sym__brace_start, + ACTIONS(2584), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_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(3304), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [61576] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3526), 1, + ACTIONS(3569), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106688,7 +108318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106697,10 +108327,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106717,66 +108346,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60298] = 7, + [61634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3096), 1, + aux_sym_concatenation_token1, + ACTIONS(3572), 1, + sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, sym_file_descriptor, - ACTIONS(3529), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, - sym__brace_start, - ACTIONS(3361), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, sym_test_operator, - [60354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 3, - sym_file_descriptor, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1180), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -106784,7 +108370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106792,9 +108377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -106811,18 +108394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [60402] = 7, + [61688] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3532), 1, + ACTIONS(3574), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106831,7 +108416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106840,10 +108425,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106860,16 +108444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60458] = 5, + [61746] = 3, ACTIONS(63), 1, sym_comment, - STATE(1367), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3535), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 14, + ACTIONS(1243), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -106880,12 +108458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1175), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1245), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -106905,20 +108483,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [60510] = 7, + anon_sym_COLON, + aux_sym_concatenation_token1, + [61794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3538), 1, + ACTIONS(3577), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106927,7 +108511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106936,10 +108520,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -106956,18 +108539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60566] = 7, + [61852] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, sym_file_descriptor, - ACTIONS(3541), 1, + ACTIONS(3580), 1, anon_sym_RPAREN, - ACTIONS(3367), 2, + ACTIONS(3353), 3, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + ACTIONS(3345), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -106976,7 +108561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3359), 11, + ACTIONS(3343), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106985,10 +108570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, + ACTIONS(3341), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -107005,11 +108589,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [61910] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, + sym_file_descriptor, + ACTIONS(3583), 1, + anon_sym_RPAREN, + ACTIONS(3353), 3, + sym_variable_name, sym_test_operator, - [60622] = 3, + sym__brace_start, + ACTIONS(3345), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [61968] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 13, + ACTIONS(1239), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107023,8 +108656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1210), 27, + ACTIONS(1241), 27, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107050,40 +108684,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - sym_test_operator, - [60670] = 7, + [62016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3069), 5, sym_file_descriptor, - ACTIONS(3544), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -107099,11 +108729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60726] = 3, + [62064] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 13, + ACTIONS(1255), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107117,8 +108746,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1272), 27, + ACTIONS(1257), 27, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107144,11 +108774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - sym_test_operator, - [60774] = 3, + [62112] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 13, + ACTIONS(1183), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107162,8 +108791,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1268), 27, + ACTIONS(1185), 27, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107189,40 +108819,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - sym_test_operator, - [60822] = 7, + [62160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(2977), 5, sym_file_descriptor, - ACTIONS(3547), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -107238,40 +108864,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, + [62208] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + ACTIONS(3586), 1, + sym__concat, + STATE(1519), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1173), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [62261] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + ACTIONS(3588), 1, + anon_sym_RBRACK, + ACTIONS(3590), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1149), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1283), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [62316] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1029), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1149), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1283), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [62367] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_esac, + ACTIONS(3602), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4072), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1914), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3596), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62458] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, sym_test_operator, - [60878] = 7, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3632), 1, + anon_sym_esac, + ACTIONS(3634), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4081), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1916), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3630), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 5, sym_file_descriptor, - ACTIONS(3550), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -107287,18 +109184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60934] = 3, + [62602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 4, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3247), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -107306,7 +109208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -107314,9 +109215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -107332,40 +109231,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [60982] = 7, + [62655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 5, sym_file_descriptor, - ACTIONS(3553), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -107381,40 +109278,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [61038] = 7, + [62708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 5, sym_file_descriptor, - ACTIONS(3556), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_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(3359), 11, - anon_sym_SEMI, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [62761] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 31, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -107430,11 +109372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [61094] = 3, + [62814] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 13, + ACTIONS(1029), 1, + aux_sym_concatenation_token1, + ACTIONS(3636), 1, + sym__concat, + STATE(1266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107448,8 +109395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1264), 27, - sym__concat, + ACTIONS(1179), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107469,17 +109416,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + [62867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 1, aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [61142] = 3, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [62920] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 13, + STATE(1468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1029), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107493,8 +109488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1230), 27, - sym__concat, + ACTIONS(1283), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107514,17 +109509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61190] = 3, + [62971] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 13, + ACTIONS(1079), 1, + anon_sym_RBRACK, + ACTIONS(3638), 1, + sym__special_character, + ACTIONS(3640), 1, + sym__concat, + STATE(1528), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107538,8 +109537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1256), 27, - sym__concat, + ACTIONS(350), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107559,17 +109558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61238] = 3, + [63026] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 13, + ACTIONS(1029), 1, + aux_sym_concatenation_token1, + ACTIONS(3642), 1, + sym__concat, + STATE(1266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107583,8 +109583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1252), 27, - sym__concat, + ACTIONS(1173), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107604,17 +109604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61286] = 3, + [63079] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 13, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107628,8 +109628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1222), 27, + ACTIONS(1283), 24, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107649,17 +109650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61334] = 3, + [63130] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 13, + ACTIONS(3644), 1, + sym__special_character, + STATE(1426), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107673,8 +109674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1214), 27, - sym__concat, + ACTIONS(350), 24, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107695,16 +109696,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, + [63181] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1525), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3646), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2961), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(2963), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [63232] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1526), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3646), 2, + sym__concat, aux_sym_concatenation_token1, + ACTIONS(2971), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(2973), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [61382] = 3, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [63283] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 13, + ACTIONS(3650), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107715,11 +109805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 27, - sym__concat, + ACTIONS(3648), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107739,17 +109831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61430] = 3, + [63330] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 13, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + ACTIONS(3652), 1, + anon_sym_RBRACK, + ACTIONS(3654), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107763,8 +109860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 27, - sym__concat, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107784,22 +109881,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61478] = 5, + [63385] = 7, ACTIONS(63), 1, sym_comment, - STATE(1288), 1, - aux_sym_concatenation_repeat1, - ACTIONS(989), 2, + ACTIONS(1083), 1, + anon_sym_RBRACK, + ACTIONS(3638), 1, + sym__special_character, + ACTIONS(3656), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1161), 14, + STATE(1528), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107810,12 +109905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(350), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107837,11 +109931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [61530] = 3, + [63440] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 13, + ACTIONS(3658), 1, + sym__special_character, + STATE(1426), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107855,8 +109952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 27, - sym__concat, + ACTIONS(1275), 24, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107877,16 +109974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61578] = 3, + [63491] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 13, + ACTIONS(3650), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107897,11 +109991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1226), 27, - sym__concat, + ACTIONS(3648), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107921,17 +110017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61626] = 3, + [63538] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 13, + ACTIONS(3663), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107942,11 +110035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1202), 27, - sym__concat, + ACTIONS(3661), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -107966,17 +110061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61674] = 3, + [63585] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 13, + ACTIONS(3665), 1, + sym__special_character, + STATE(1429), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -107987,11 +110083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1218), 27, - sym__concat, + ACTIONS(1275), 23, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -108011,17 +110109,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61722] = 3, + [63636] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 13, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + ACTIONS(3668), 1, + anon_sym_RBRACK, + ACTIONS(3670), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108035,8 +110136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1175), 27, - sym__concat, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -108056,46 +110157,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61770] = 7, + [63691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3178), 1, + sym__concat, + STATE(1465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 5, sym_file_descriptor, - ACTIONS(3559), 1, - anon_sym_RPAREN, - ACTIONS(3367), 2, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_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(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, @@ -108111,195 +110206,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [61826] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1204), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1206), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61874] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1196), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1198), 27, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - sym_test_operator, - [61922] = 6, - ACTIONS(63), 1, + [63744] = 25, + ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, - aux_sym_concatenation_token1, - ACTIONS(3564), 1, - sym__concat, - STATE(1504), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3606), 1, sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1192), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, sym__brace_start, + ACTIONS(3674), 1, + anon_sym_esac, + ACTIONS(3676), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4221), 1, + sym_last_case_item, + ACTIONS(3594), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1903), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, sym_raw_string, sym_ansi_c_string, + sym_word, + ACTIONS(3672), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63835] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(3624), 1, sym_test_operator, - [61975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3566), 1, - sym__concat, - STATE(967), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, - sym_file_descriptor, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(1190), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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(3680), 1, + anon_sym_esac, + ACTIONS(3682), 1, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4217), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1889), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3678), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [63926] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3606), 1, sym__special_character, + ACTIONS(3608), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3614), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, anon_sym_BQUOTE, + ACTIONS(3620), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3686), 1, + anon_sym_esac, + ACTIONS(3688), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4326), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + STATE(1896), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [62028] = 3, + ACTIONS(3684), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64017] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 13, + ACTIONS(1183), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -108313,9 +110421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1206), 26, + ACTIONS(1185), 26, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -108339,55 +110448,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [62075] = 3, - ACTIONS(63), 1, + [64064] = 25, + ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1202), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, sym__brace_start, + ACTIONS(3692), 1, + anon_sym_esac, + ACTIONS(3694), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4027), 1, + sym_last_case_item, + ACTIONS(3594), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(3622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [62122] = 3, + STATE(1909), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3690), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64155] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 14, + STATE(1562), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1029), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108398,13 +110533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1169), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -108426,103 +110559,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [62169] = 6, + sym__special_character, + [64206] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, - sym__concat, - STATE(1397), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2991), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2989), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3606), 1, sym__special_character, + ACTIONS(3608), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3614), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, anon_sym_BQUOTE, + ACTIONS(3620), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, + ACTIONS(3624), 1, sym_test_operator, - [62222] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1272), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, sym__brace_start, + ACTIONS(3698), 1, + anon_sym_esac, + ACTIONS(3700), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4328), 1, + sym_last_case_item, + ACTIONS(3594), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(3622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [62269] = 3, + STATE(1900), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3696), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64297] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 14, + STATE(1508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1029), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108533,13 +110645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1230), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1283), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -108559,14 +110669,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [62316] = 3, + [64348] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 14, + ACTIONS(1075), 1, + anon_sym_RBRACK, + ACTIONS(3638), 1, + sym__special_character, + ACTIONS(3702), 1, + sym__concat, + STATE(1528), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108577,13 +110694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(350), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -108605,59 +110720,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [62363] = 6, - ACTIONS(3), 1, + [64403] = 7, + ACTIONS(63), 1, sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, + ACTIONS(1087), 1, + anon_sym_RBRACK, + ACTIONS(3638), 1, + sym__special_character, + ACTIONS(3704), 1, sym__concat, - STATE(1458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2977), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(2973), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1528), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(350), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [64458] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3606), 1, sym__special_character, + ACTIONS(3608), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3614), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, anon_sym_BQUOTE, + ACTIONS(3620), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3708), 1, + anon_sym_esac, + ACTIONS(3710), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4295), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + STATE(1892), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - sym_test_operator, - [62416] = 3, + ACTIONS(3706), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64549] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 14, + ACTIONS(949), 1, + aux_sym_concatenation_token1, + ACTIONS(3712), 1, + sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108668,12 +110854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1222), 25, - sym__concat, + ACTIONS(1173), 23, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -108696,12 +110881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [62463] = 3, + [64602] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 14, + ACTIONS(1201), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108716,8 +110899,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1210), 25, + ACTIONS(1203), 25, sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -108741,11 +110925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [62510] = 3, + [64649] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 14, + ACTIONS(949), 1, + aux_sym_concatenation_token1, + ACTIONS(3714), 1, + sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108756,12 +110945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1252), 25, - sym__concat, + ACTIONS(1179), 23, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -108784,56 +110972,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [62557] = 3, + [64702] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 13, - anon_sym_EQ_EQ, + ACTIONS(1255), 14, + anon_sym_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_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1257), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [64749] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1240), 26, - sym_file_descriptor, - sym__concat, - sym__bare_dollar, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, sym__brace_start, + ACTIONS(3718), 1, + anon_sym_esac, + ACTIONS(3720), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4122), 1, + sym_last_case_item, + ACTIONS(3594), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1893), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, sym_raw_string, sym_ansi_c_string, + sym_word, + ACTIONS(3716), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64840] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3724), 1, + anon_sym_esac, + ACTIONS(3726), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4112), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [62604] = 3, + STATE(1890), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3722), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [64931] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 14, + ACTIONS(1183), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108848,8 +111166,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1256), 25, + ACTIONS(1185), 25, sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -108873,11 +111192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [62651] = 3, + [64978] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 14, + ACTIONS(1267), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108892,8 +111210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1264), 25, + ACTIONS(1269), 25, sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -108917,11 +111236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [62698] = 3, + [65025] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 13, + ACTIONS(1205), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -108935,9 +111253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1226), 26, + ACTIONS(1207), 26, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -108961,16 +111280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [62745] = 5, + [65072] = 3, ACTIONS(63), 1, sym_comment, - STATE(1598), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 13, + ACTIONS(1211), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -108981,10 +111294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1182), 23, + ACTIONS(1213), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109006,12 +111323,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, + aux_sym_concatenation_token1, + [65119] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1235), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1237), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [62796] = 3, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [65166] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 14, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + ACTIONS(3728), 1, + anon_sym_RBRACK, + ACTIONS(3730), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109022,13 +111390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1268), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109050,12 +111416,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [62843] = 3, + [65221] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 13, + ACTIONS(1205), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -109069,9 +111433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1198), 26, + ACTIONS(1207), 26, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -109095,17 +111460,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [62890] = 6, + [65268] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(1251), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - ACTIONS(3568), 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, + [65315] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1247), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1249), 26, + sym_file_descriptor, sym__concat, - STATE(1367), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [65362] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3732), 1, + sym__special_character, + STATE(1429), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109116,10 +111566,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1186), 23, + ACTIONS(350), 23, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -109142,11 +111594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [62943] = 3, + [65413] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 14, + ACTIONS(1239), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109161,8 +111612,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1214), 25, + ACTIONS(1241), 25, sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -109186,11 +111638,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, + [65460] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1109), 1, + anon_sym_RBRACK, + ACTIONS(3638), 1, + sym__special_character, + ACTIONS(3734), 1, + sym__concat, + STATE(1528), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(350), 22, sym_test_operator, - [62990] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [65515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1161), 14, + ACTIONS(1247), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109205,7 +111704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 25, + ACTIONS(1249), 25, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -109226,15 +111727,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, + [65562] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3174), 1, + sym__concat, + STATE(1523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 32, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [65615] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3736), 1, + sym__concat, + STATE(962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [63037] = 3, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [65668] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 13, + ACTIONS(1259), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -109248,9 +111841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1175), 26, + ACTIONS(1261), 26, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -109274,11 +111868,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [65715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 1, + aux_sym_concatenation_token1, + ACTIONS(3738), 1, + sym__concat, + STATE(962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [63084] = 3, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [65768] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 13, + ACTIONS(1243), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -109292,9 +111932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1218), 26, + ACTIONS(1245), 26, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -109318,17 +111959,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [65815] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1239), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1241), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [63131] = 6, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [65862] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1029), 1, aux_sym_concatenation_token1, - ACTIONS(3570), 1, + ACTIONS(3740), 1, sym__concat, - STATE(1247), 1, + STATE(1266), 1, aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, + ACTIONS(1177), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109342,7 +112026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1192), 23, + ACTIONS(1179), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109362,19 +112047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [63184] = 5, + anon_sym_COLON, + [65915] = 6, ACTIONS(63), 1, sym_comment, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, - sym__concat, + ACTIONS(1029), 1, aux_sym_concatenation_token1, - ACTIONS(1161), 13, + ACTIONS(3742), 1, + sym__concat, + STATE(1266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109388,7 +112073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 23, + ACTIONS(1173), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109408,41 +112094,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [63235] = 5, + anon_sym_COLON, + [65968] = 3, ACTIONS(63), 1, sym_comment, - STATE(1396), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3562), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3034), 12, + ACTIONS(1215), 13, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3036), 24, + ACTIONS(1217), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -109450,6 +112132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109457,55 +112141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [63286] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3574), 14, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3572), 25, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [63333] = 3, + [66015] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 13, + ACTIONS(1219), 13, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -109519,9 +112158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1210), 26, + ACTIONS(1221), 26, sym_file_descriptor, sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -109545,11 +112185,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [66062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 1, + aux_sym_concatenation_token1, + ACTIONS(3174), 1, + sym__concat, + STATE(1522), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3015), 4, + sym_file_descriptor, sym_test_operator, - [63380] = 3, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3013), 32, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [66115] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 14, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + ACTIONS(3744), 1, + anon_sym_RBRACK, + ACTIONS(3746), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109560,13 +112254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1198), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109588,12 +112280,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + [66170] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 1, aux_sym_concatenation_token1, + ACTIONS(3174), 1, + sym__concat, + STATE(1523), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3021), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(3019), 32, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [66223] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, sym_test_operator, - [63427] = 3, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3750), 1, + anon_sym_esac, + ACTIONS(3752), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4131), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1918), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3748), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [66314] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 14, + ACTIONS(3756), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109608,8 +112411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1272), 25, - sym__concat, + ACTIONS(3754), 25, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -109630,66 +112433,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [63474] = 5, + anon_sym_COLON, + [66361] = 3, ACTIONS(63), 1, sym_comment, - STATE(1442), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1041), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1161), 13, - anon_sym_EQ, + ACTIONS(1211), 13, + anon_sym_EQ_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1288), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1213), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [66408] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1223), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1225), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [63525] = 6, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [66455] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1061), 1, - aux_sym_concatenation_token1, - ACTIONS(3576), 1, - sym__concat, - STATE(1247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, + ACTIONS(1205), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109700,10 +112539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1192), 23, + ACTIONS(1207), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109725,18 +112568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [63578] = 6, + aux_sym_concatenation_token1, + [66502] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(989), 1, - aux_sym_concatenation_token1, - ACTIONS(3578), 1, - sym__concat, - STATE(1367), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, + ACTIONS(1235), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109747,10 +112583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1192), 23, + ACTIONS(1237), 25, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -109773,15 +112612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [63631] = 5, + aux_sym_concatenation_token1, + [66549] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3580), 1, - sym__special_character, - STATE(1431), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 14, + ACTIONS(1219), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109796,7 +112631,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1281), 23, + ACTIONS(1221), 25, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -109819,19 +112656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [63682] = 7, + aux_sym_concatenation_token1, + [66596] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, - aux_sym_concatenation_token1, - ACTIONS(3583), 1, - anon_sym_RBRACK, - ACTIONS(3585), 1, - sym__concat, - STATE(1513), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1161), 13, + ACTIONS(1243), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109842,10 +112671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(1245), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109867,19 +112700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [63737] = 7, + aux_sym_concatenation_token1, + [66643] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, - aux_sym_concatenation_token1, - ACTIONS(3587), 1, - anon_sym_RBRACK, - ACTIONS(3589), 1, - sym__concat, - STATE(1513), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1161), 13, + ACTIONS(1205), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -109890,10 +112715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(1207), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -109915,16 +112744,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + aux_sym_concatenation_token1, + [66690] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1267), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1269), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [63792] = 5, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [66737] = 5, ACTIONS(63), 1, sym_comment, - STATE(1479), 1, + STATE(1525), 1, aux_sym_concatenation_repeat1, - ACTIONS(3591), 2, + ACTIONS(3646), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2887), 12, + ACTIONS(1167), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -109937,9 +112810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2889), 24, + ACTIONS(1169), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -109961,37 +112835,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [66788] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1255), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1257), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [63843] = 5, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [66835] = 5, ACTIONS(63), 1, sym_comment, - STATE(1477), 1, + STATE(1512), 1, aux_sym_concatenation_repeat1, - ACTIONS(3591), 2, + ACTIONS(3758), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2873), 12, + ACTIONS(3067), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(2877), 24, + ACTIONS(3069), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -109999,7 +112918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110007,57 +112925,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [66886] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1263), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1265), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [63894] = 5, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [66933] = 5, ACTIONS(63), 1, sym_comment, - STATE(1447), 1, + STATE(1510), 1, aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, + ACTIONS(3758), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1161), 13, - anon_sym_EQ, + ACTIONS(3063), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1288), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3065), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [63945] = 3, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [66984] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 14, + ACTIONS(1053), 1, + aux_sym_concatenation_token1, + ACTIONS(3760), 1, + sym__concat, + STATE(1519), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110068,13 +113035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1206), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1179), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110094,31 +113059,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + [67037] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1525), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3646), 2, + sym__concat, aux_sym_concatenation_token1, + ACTIONS(2967), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(2969), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [63992] = 3, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [67088] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 13, - anon_sym_EQ_EQ, + STATE(1526), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3646), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2975), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, 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(1214), 26, + ACTIONS(2977), 24, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -110132,7 +113146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -110141,15 +113154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [64039] = 5, + [67139] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(3593), 1, - sym__special_character, - STATE(1470), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, + ACTIONS(1029), 1, + aux_sym_concatenation_token1, + ACTIONS(3762), 1, + sym__concat, + STATE(1266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110163,7 +113177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 24, + ACTIONS(1173), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110186,18 +113201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [64090] = 6, + [67192] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, - aux_sym_concatenation_token1, - ACTIONS(3595), 1, - sym__concat, - STATE(1503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, + ACTIONS(1251), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110208,10 +113215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1186), 23, + ACTIONS(1253), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110231,18 +113242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [64143] = 5, + aux_sym_concatenation_token1, + [67239] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, - aux_sym_concatenation_token1, - STATE(1513), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1161), 13, + ACTIONS(1215), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110253,11 +113259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 24, + ACTIONS(1217), 25, sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110277,69 +113286,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [64194] = 6, + aux_sym_concatenation_token1, + [67286] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, - aux_sym_concatenation_token1, - ACTIONS(3597), 1, - sym__concat, - STATE(1503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, - anon_sym_EQ, + ACTIONS(1201), 13, + anon_sym_EQ_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1192), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1203), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [67333] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1231), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1233), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [64247] = 7, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [67380] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_RBRACK, - ACTIONS(3599), 1, + ACTIONS(3638), 1, sym__special_character, - ACTIONS(3601), 1, - sym__concat, - STATE(1517), 1, + STATE(1528), 1, aux_sym__literal_repeat1, - ACTIONS(187), 13, + ACTIONS(185), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110353,7 +113398,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 22, + ACTIONS(350), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110373,21 +113420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [64302] = 7, + [67431] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, - aux_sym_concatenation_token1, - ACTIONS(3603), 1, - anon_sym_RBRACK, - ACTIONS(3605), 1, - sym__concat, - STATE(1513), 1, + STATE(1445), 1, aux_sym_concatenation_repeat1, - ACTIONS(1161), 13, + ACTIONS(949), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110401,7 +113445,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(1283), 23, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110423,11 +113469,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, + [67482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2592), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(2584), 15, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_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(3304), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [67533] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1227), 13, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1229), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - [64357] = 3, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [67580] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3609), 14, + ACTIONS(1259), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110442,7 +113577,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3607), 25, + ACTIONS(1261), 25, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -110463,20 +113600,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, + [67627] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1512), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3758), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3003), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3005), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [64404] = 5, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [67678] = 5, ACTIONS(63), 1, sym_comment, - STATE(1429), 1, + STATE(1510), 1, aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, + ACTIONS(3758), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1161), 13, + ACTIONS(2995), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2997), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [67729] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1263), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110487,10 +113709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 23, + ACTIONS(1265), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110512,18 +113738,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, + aux_sym_concatenation_token1, + [67776] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3350), 1, + sym_file_descriptor, + ACTIONS(3353), 3, + sym_variable_name, sym_test_operator, - [64455] = 6, + sym__brace_start, + ACTIONS(3345), 9, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_BQUOTE, + ACTIONS(3343), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(3341), 15, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_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, + [67831] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1061), 1, - aux_sym_concatenation_token1, - ACTIONS(3611), 1, - sym__concat, - STATE(1247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, + ACTIONS(1223), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110534,10 +113801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1192), 23, + ACTIONS(1225), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110557,20 +113828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [64508] = 6, + aux_sym_concatenation_token1, + [67878] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1061), 1, + ACTIONS(1029), 1, aux_sym_concatenation_token1, - ACTIONS(3613), 1, + ACTIONS(3764), 1, sym__concat, - STATE(1247), 1, + STATE(1266), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, + ACTIONS(1177), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110584,7 +113854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1186), 23, + ACTIONS(1179), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110604,58 +113875,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + [67931] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3606), 1, + sym__special_character, + ACTIONS(3608), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, sym_test_operator, - [64561] = 3, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3768), 1, + anon_sym_esac, + ACTIONS(3770), 1, + aux_sym_heredoc_redirect_token1, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4132), 1, + sym_last_case_item, + ACTIONS(3594), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1919), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(3592), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(3766), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [68022] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 14, - anon_sym_EQ, + ACTIONS(3758), 1, + aux_sym_concatenation_token1, + ACTIONS(3772), 1, + sym__concat, + STATE(1513), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1202), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1173), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64608] = 3, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [68075] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3609), 14, + ACTIONS(1231), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110670,7 +114009,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3607), 25, + ACTIONS(1233), 25, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -110691,135 +114032,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [64655] = 6, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [68122] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3758), 1, aux_sym_concatenation_token1, - ACTIONS(3615), 1, + ACTIONS(3774), 1, sym__concat, - STATE(1063), 1, + STATE(1513), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1177), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1179), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [64708] = 24, - ACTIONS(3), 1, + [68175] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3625), 1, - anon_sym_esac, - ACTIONS(3627), 1, + STATE(1513), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3776), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1183), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(3629), 1, sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, aux_sym_number_token1, - ACTIONS(3635), 1, aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, + sym_word, + ACTIONS(1185), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, sym__brace_start, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4191), 1, - sym_last_case_item, - ACTIONS(3619), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1901), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, + [68226] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3781), 1, + anon_sym_DQUOTE, + STATE(2080), 1, + sym_string, + ACTIONS(3783), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1135), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(3779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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(3621), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [64797] = 7, + [68281] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1053), 1, aux_sym_concatenation_token1, - ACTIONS(3653), 1, - anon_sym_RBRACK, - ACTIONS(3655), 1, + ACTIONS(3785), 1, sym__concat, - STATE(1513), 1, + STATE(1519), 1, aux_sym_concatenation_repeat1, - ACTIONS(1161), 13, + ACTIONS(1171), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110833,7 +114199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(1173), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110853,35 +114220,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [64852] = 7, - ACTIONS(63), 1, + [68334] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 1, - anon_sym_RBRACK, - ACTIONS(3599), 1, - sym__special_character, - ACTIONS(3657), 1, - sym__concat, - STATE(1517), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3781), 1, + anon_sym_DQUOTE, + STATE(2080), 1, + sym_string, + ACTIONS(3783), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 4, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(3779), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 22, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [68389] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3758), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1169), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [68440] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1227), 14, + anon_sym_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_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 22, + ACTIONS(1229), 25, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110903,11 +114360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [64907] = 3, + aux_sym_concatenation_token1, + [68487] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 14, + STATE(1519), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3787), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1183), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110918,13 +114380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, + ACTIONS(1185), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -110944,14 +114404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [64954] = 3, + [68538] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 14, + ACTIONS(1149), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -110966,8 +114425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1218), 25, - sym__concat, + ACTIONS(1283), 25, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -110988,22 +114447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [65001] = 7, + anon_sym_COLON, + [68585] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_RBRACK, - ACTIONS(3599), 1, - sym__special_character, - ACTIONS(3659), 1, + STATE(1490), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1053), 2, sym__concat, - STATE(1517), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, + aux_sym_concatenation_token1, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -111017,7 +114473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 22, + ACTIONS(1283), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -111037,22 +114494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [65056] = 6, + [68636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3172), 1, aux_sym_concatenation_token1, - ACTIONS(3661), 1, + ACTIONS(3790), 1, sym__concat, - STATE(967), 1, + STATE(1016), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(1179), 4, sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1184), 34, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 32, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111068,7 +114527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -111086,327 +114544,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [65109] = 6, + [68689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, + ACTIONS(3172), 1, aux_sym_concatenation_token1, - ACTIONS(3663), 1, + ACTIONS(3792), 1, sym__concat, - STATE(1063), 1, + STATE(1016), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1173), 4, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1190), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65162] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3667), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4357), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1892), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3665), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65251] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3671), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4256), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1883), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3669), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65340] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3675), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4305), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1893), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3673), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65429] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, sym__brace_start, - ACTIONS(3679), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4260), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1874), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3677), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [65518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - aux_sym_concatenation_token1, - ACTIONS(3241), 1, - sym__concat, - STATE(1458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, - sym_file_descriptor, - sym__brace_start, - ACTIONS(1180), 34, + ACTIONS(1171), 32, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111422,7 +114574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -111440,84 +114591,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - sym_test_operator, - [65571] = 5, + [68742] = 6, ACTIONS(63), 1, sym_comment, - STATE(1474), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3562), 2, - sym__concat, + ACTIONS(1053), 1, aux_sym_concatenation_token1, - ACTIONS(3060), 12, + ACTIONS(3794), 1, + sym__concat, + STATE(1519), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3062), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1179), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_STAR_STAR, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [65622] = 5, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [68795] = 6, ACTIONS(63), 1, sym_comment, - STATE(1396), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3562), 2, - sym__concat, + ACTIONS(3646), 1, aux_sym_concatenation_token1, - ACTIONS(3044), 12, + ACTIONS(3796), 1, + sym__concat, + STATE(1527), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(3046), 24, + ACTIONS(1173), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -111525,6 +114677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111532,28 +114685,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [65673] = 3, + [68848] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 13, - anon_sym_EQ_EQ, + ACTIONS(3646), 1, + aux_sym_concatenation_token1, + ACTIONS(3798), 1, + sym__concat, + STATE(1527), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, 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(1268), 26, + ACTIONS(1179), 24, sym_file_descriptor, - sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -111567,7 +114724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -111576,82 +114732,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [65720] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1170), 14, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1175), 25, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [65767] = 5, + [68901] = 5, ACTIONS(63), 1, sym_comment, - STATE(1474), 1, + STATE(1527), 1, aux_sym_concatenation_repeat1, - ACTIONS(3562), 2, + ACTIONS(3800), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1180), 12, + ACTIONS(1183), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(1182), 24, + ACTIONS(1185), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -111659,6 +114770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111666,15 +114778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [65818] = 5, + [68952] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3803), 1, sym__special_character, - STATE(1470), 1, + STATE(1528), 1, aux_sym__literal_repeat1, - ACTIONS(1276), 13, + ACTIONS(1273), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -111688,7 +114799,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1281), 24, + ACTIONS(1275), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -111708,132 +114821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [65869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3044), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [65922] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3686), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4186), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1905), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3684), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [66011] = 5, + [69003] = 3, ACTIONS(63), 1, sym_comment, - STATE(1473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3688), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 12, + ACTIONS(1255), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -111846,9 +114840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1175), 24, + ACTIONS(1257), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -111862,6 +114858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -111870,39 +114867,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66062] = 6, + [69049] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3806), 1, aux_sym_concatenation_token1, - ACTIONS(3691), 1, + ACTIONS(3808), 1, sym__concat, - STATE(1504), 1, + STATE(1591), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 12, + ACTIONS(1171), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1186), 24, + ACTIONS(1173), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -111910,6 +114905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111917,11 +114913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66115] = 3, + [69101] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3695), 14, + ACTIONS(1201), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -111932,12 +114927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3693), 25, - anon_sym_RPAREN_RPAREN, + ACTIONS(1203), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -111957,89 +114952,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym_test_operator, - [66162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3214), 1, aux_sym_concatenation_token1, - ACTIONS(3216), 1, + [69147] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1219), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1221), 25, sym__concat, - STATE(1451), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(1180), 33, - anon_sym_LPAREN_LPAREN, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [69193] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1167), 14, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, + anon_sym_AMP, + anon_sym_CARET, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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(1169), 24, + sym__concat, sym_test_operator, - [66215] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [69239] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3591), 1, - aux_sym_concatenation_token1, - ACTIONS(3697), 1, - sym__concat, - STATE(1473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 12, + ACTIONS(1201), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(1192), 24, + ACTIONS(1203), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -112047,7 +115077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112055,82 +115085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66268] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3701), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4052), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1898), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3699), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [66357] = 6, + [69285] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3591), 1, - aux_sym_concatenation_token1, - ACTIONS(3703), 1, - sym__concat, - STATE(1473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 12, + ACTIONS(1205), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -112143,9 +115101,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1186), 24, + ACTIONS(1207), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -112159,6 +115119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -112167,16 +115128,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66410] = 5, + [69331] = 3, ACTIONS(63), 1, sym_comment, - STATE(1477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3591), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2947), 12, + ACTIONS(1235), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -112189,9 +115144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2949), 24, + ACTIONS(1237), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -112205,6 +115162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -112213,16 +115171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66461] = 5, + [69377] = 3, ACTIONS(63), 1, sym_comment, - STATE(1479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3591), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2937), 12, + ACTIONS(1259), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -112235,9 +115187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2939), 24, + ACTIONS(1261), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -112251,6 +115205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -112259,170 +115214,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66512] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, - anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3707), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4335), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1896), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3705), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [66601] = 3, + [69423] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 13, - anon_sym_EQ_EQ, + ACTIONS(1255), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1222), 26, - sym_file_descriptor, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1257), 25, sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [66648] = 5, + [69469] = 3, ACTIONS(63), 1, sym_comment, - STATE(1479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3591), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 12, + ACTIONS(1183), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1182), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1185), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [66699] = 5, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [69515] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3709), 1, + ACTIONS(3810), 1, sym__special_character, - STATE(1431), 1, + STATE(1540), 1, aux_sym__literal_repeat1, - ACTIONS(187), 14, + ACTIONS(1273), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -112433,12 +115318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1275), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -112458,65 +115342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [66750] = 3, + [69565] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 13, - anon_sym_EQ_EQ, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1264), 26, - sym_file_descriptor, + STATE(1561), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1029), 2, sym__concat, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [66797] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1041), 1, aux_sym_concatenation_token1, - ACTIONS(3711), 1, - anon_sym_RBRACK, - ACTIONS(3713), 1, - sym__concat, - STATE(1513), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1161), 13, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -112530,7 +115367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -112552,15 +115390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [66852] = 5, + [69615] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3599), 1, - sym__special_character, - STATE(1517), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, + ACTIONS(1243), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -112574,8 +115407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 24, + ACTIONS(1245), 25, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -112598,28 +115432,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [66903] = 3, + aux_sym_concatenation_token1, + [69661] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 13, - anon_sym_EQ_EQ, + ACTIONS(1205), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, 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(1230), 26, + ACTIONS(1207), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -112642,63 +115476,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [66950] = 6, - ACTIONS(3), 1, + [69707] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1451), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3040), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1255), 12, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1257), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67003] = 5, + [69753] = 4, ACTIONS(63), 1, sym_comment, - STATE(1430), 1, - aux_sym_concatenation_repeat1, - ACTIONS(989), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1161), 13, + ACTIONS(3817), 1, + anon_sym_LBRACK, + ACTIONS(3815), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -112712,54 +115538,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 23, + ACTIONS(3813), 24, anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [67054] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1061), 1, - aux_sym_concatenation_token1, - ACTIONS(3715), 1, - sym__concat, - STATE(1247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1186), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -112782,34 +115563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - sym_test_operator, - [67107] = 3, + [69801] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 13, - anon_sym_EQ_EQ, + ACTIONS(1183), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 26, + ACTIONS(1185), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -112818,65 +115599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [67154] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3308), 1, - sym_file_descriptor, - ACTIONS(2592), 2, - sym_variable_name, - sym__brace_start, - ACTIONS(2578), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_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, - sym_test_operator, - ACTIONS(3306), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [67205] = 3, + [69847] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 13, + ACTIONS(3819), 1, + sym__special_character, + STATE(1613), 1, + aux_sym__literal_repeat1, + ACTIONS(187), 12, anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, @@ -112888,11 +115625,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(1248), 26, + ACTIONS(218), 24, sym_file_descriptor, - sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -112907,43 +115643,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [67252] = 3, + [69897] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 13, - anon_sym_EQ_EQ, + ACTIONS(1267), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1269), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [69943] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1267), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 26, + ACTIONS(1269), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -112952,7 +115730,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -112960,38 +115737,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [69989] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3821), 1, + sym__special_character, + STATE(1540), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(350), 23, sym_test_operator, - [67299] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [70039] = 3, ACTIONS(63), 1, sym_comment, - STATE(1474), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3562), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3040), 12, + ACTIONS(1215), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(3042), 24, + ACTIONS(1217), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -112999,6 +115816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113006,11 +115825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [67350] = 3, + [70085] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 14, + ACTIONS(1251), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -113021,13 +115839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1226), 25, + ACTIONS(1253), 25, sym__concat, - anon_sym_RPAREN_RPAREN, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -113047,225 +115864,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [67397] = 6, - ACTIONS(3), 1, + [70131] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1451), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(2937), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1211), 12, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [67450] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, + ACTIONS(1213), 26, sym_file_descriptor, - ACTIONS(3367), 2, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3361), 9, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_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_BQUOTE, - ACTIONS(3359), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(3357), 16, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67503] = 24, - ACTIONS(3), 1, + [70177] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(1215), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(3629), 1, sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, aux_sym_number_token1, - ACTIONS(3635), 1, aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3719), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4329), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1897), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(3717), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [67592] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1217), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(2947), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, 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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67645] = 5, + [70223] = 3, ACTIONS(63), 1, sym_comment, - STATE(1503), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3721), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 13, + ACTIONS(1211), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -113279,7 +115971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1175), 23, + ACTIONS(1213), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -113302,16 +115996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [67696] = 5, + aux_sym_concatenation_token1, + [70269] = 3, ACTIONS(63), 1, sym_comment, - STATE(1504), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3724), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 12, + ACTIONS(1219), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -113324,9 +116013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1175), 24, + ACTIONS(1221), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -113341,6 +116032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113348,11 +116040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [67747] = 3, + [70315] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 14, + ACTIONS(1259), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -113363,13 +116054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1240), 25, + ACTIONS(1261), 25, sym__concat, - anon_sym_RPAREN_RPAREN, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -113389,228 +116079,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [67794] = 7, + [70361] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(3599), 1, - sym__special_character, - ACTIONS(3727), 1, + STATE(1619), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3823), 2, sym__concat, - STATE(1517), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(3019), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(350), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [67849] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, aux_sym_number_token1, - ACTIONS(3635), 1, aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, - sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(3731), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4034), 1, - sym_last_case_item, - ACTIONS(3619), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1904), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3729), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [67938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1451), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 3, + ACTIONS(3021), 23, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3060), 33, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [67991] = 7, - ACTIONS(3), 1, + [70411] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - STATE(2060), 1, - sym_string, - ACTIONS(3737), 2, + STATE(1614), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3013), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, + sym_word, + ACTIONS(3015), 23, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3733), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 23, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68046] = 6, + [70461] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1061), 1, - aux_sym_concatenation_token1, - ACTIONS(3739), 1, - sym__concat, - STATE(1247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, + ACTIONS(1167), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -113624,7 +116190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1186), 23, + ACTIONS(1169), 25, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -113647,17 +116214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [68099] = 6, + anon_sym_COLON, + sym__special_character, + [70507] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1029), 1, aux_sym_concatenation_token1, - ACTIONS(3741), 1, + ACTIONS(3825), 1, sym__concat, - STATE(1503), 1, + STATE(1266), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, + ACTIONS(1177), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -113671,7 +116239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1186), 23, + ACTIONS(1179), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -113691,67 +116260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [68152] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3214), 1, - aux_sym_concatenation_token1, - ACTIONS(3216), 1, - sym__concat, - STATE(1459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 3, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - ACTIONS(3034), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [68205] = 6, + [70559] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1041), 1, + ACTIONS(1029), 1, aux_sym_concatenation_token1, - ACTIONS(3743), 1, + ACTIONS(3827), 1, sym__concat, - STATE(1503), 1, + STATE(1266), 1, aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, + ACTIONS(1171), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -113765,7 +116285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1192), 23, + ACTIONS(1173), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -113785,37 +116306,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [68258] = 3, + [70611] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 13, - anon_sym_EQ_EQ, + ACTIONS(1223), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1252), 26, + ACTIONS(1225), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -113824,7 +116344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -113832,193 +116351,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [68305] = 7, - ACTIONS(3), 1, + [70657] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - STATE(2060), 1, - sym_string, - ACTIONS(3737), 2, + ACTIONS(1223), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, + sym_word, + ACTIONS(1225), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3733), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 23, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_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_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [68360] = 24, - ACTIONS(3), 1, + [70703] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(1239), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(3629), 1, sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, aux_sym_number_token1, - ACTIONS(3635), 1, aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, + sym_word, + ACTIONS(1241), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, sym__brace_start, - ACTIONS(3747), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4273), 1, - sym_last_case_item, - ACTIONS(3619), 2, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1878), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(3745), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68449] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3749), 1, - sym__special_character, - STATE(1517), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1281), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [68500] = 3, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [70749] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 13, - anon_sym_EQ_EQ, + ACTIONS(1243), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1256), 26, + ACTIONS(1245), 26, sym_file_descriptor, sym__concat, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -114027,7 +116473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114035,84 +116480,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [68547] = 24, - ACTIONS(3), 1, + [70795] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(1227), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(3629), 1, - sym__special_character, - ACTIONS(3631), 1, - anon_sym_DQUOTE, - ACTIONS(3633), 1, aux_sym_number_token1, - ACTIONS(3635), 1, aux_sym_number_token2, - ACTIONS(3637), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3641), 1, anon_sym_BQUOTE, - ACTIONS(3643), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3647), 1, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1229), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, sym__brace_start, - ACTIONS(3754), 1, - anon_sym_esac, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4272), 1, - sym_last_case_item, - ACTIONS(3619), 2, anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3645), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1876), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(3617), 3, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(3752), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68636] = 7, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [70841] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1087), 1, - anon_sym_RBRACK, - ACTIONS(3599), 1, - sym__special_character, - ACTIONS(3756), 1, - sym__concat, - STATE(1517), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, + ACTIONS(1263), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114126,7 +116540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 22, + ACTIONS(1265), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -114146,13 +116562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [68691] = 3, + aux_sym_concatenation_token1, + [70887] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 12, + ACTIONS(1227), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -114165,10 +116582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1226), 26, + ACTIONS(1229), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -114191,97 +116609,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [68737] = 3, + [70933] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 14, - anon_sym_EQ, + ACTIONS(1231), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_AMP_GT, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1182), 24, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1233), 26, + sym_file_descriptor, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + sym_variable_name, sym_test_operator, - [68783] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1272), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym_test_operator, - [68829] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [70979] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 13, + ACTIONS(3829), 1, + sym__special_character, + STATE(1610), 1, + aux_sym__literal_repeat1, + ACTIONS(185), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -114295,8 +116673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1210), 25, - sym__concat, + ACTIONS(350), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -114316,59 +116694,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [68875] = 4, + [71029] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3762), 1, - sym__concat, - ACTIONS(3760), 13, - anon_sym_EQ, + ACTIONS(1231), 12, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3758), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1233), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [68923] = 3, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [71075] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1247), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -114381,10 +116756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1240), 26, + ACTIONS(1249), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -114407,251 +116783,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [68969] = 3, + [71121] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1218), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [69015] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1170), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1175), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [69061] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3768), 1, - anon_sym_LBRACK, - ACTIONS(3766), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3764), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [69109] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3774), 1, - sym__concat, - ACTIONS(3772), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3770), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [69157] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1196), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1198), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [69203] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 12, + ACTIONS(3806), 1, + aux_sym_concatenation_token1, + ACTIONS(3831), 1, + sym__concat, + STATE(1591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1272), 26, + ACTIONS(1179), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -114659,7 +116821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114667,34 +116829,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69249] = 3, + [71173] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 12, + STATE(1574), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3806), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3067), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1202), 26, + ACTIONS(3069), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -114702,7 +116866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114710,34 +116874,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69295] = 3, + [71223] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 12, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3806), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3063), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1175), 26, + ACTIONS(3065), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -114745,7 +116911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114753,34 +116919,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69341] = 3, + [71273] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 12, + STATE(1619), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(1198), 26, + ACTIONS(1169), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -114788,7 +116956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114796,11 +116964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69387] = 3, + [71323] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 12, + ACTIONS(1251), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -114813,10 +116980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1206), 26, + ACTIONS(1253), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -114839,77 +117007,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69433] = 3, + [71369] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1226), 25, + STATE(1574), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3806), 2, sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [69479] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1216), 12, + ACTIONS(3003), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1218), 26, + ACTIONS(3005), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -114917,7 +117044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114925,54 +117052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69525] = 3, + [71419] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1214), 26, - sym_file_descriptor, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3806), 2, sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, 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, - sym_test_operator, - [69571] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1208), 12, + ACTIONS(2995), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -114983,12 +117071,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1210), 26, + ACTIONS(2997), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115002,7 +117089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -115011,11 +117097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69617] = 3, + [71469] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 13, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115029,8 +117114,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1214), 25, + ACTIONS(1207), 25, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115054,54 +117140,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [69663] = 3, + [71515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 12, + ACTIONS(1235), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1218), 26, - sym_file_descriptor, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1237), 25, sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [69709] = 3, + [71561] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 12, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3806), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115112,12 +117202,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1175), 26, + ACTIONS(1169), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115131,7 +117220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -115140,11 +117228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [69755] = 3, + [71611] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 13, + ACTIONS(1239), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115158,8 +117245,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1240), 25, + ACTIONS(1241), 25, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115183,54 +117271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [69801] = 3, + [71657] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1210), 26, - sym_file_descriptor, + ACTIONS(3837), 1, sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [69847] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1220), 13, + ACTIONS(3835), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115244,8 +117290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1222), 25, - sym__concat, + ACTIONS(3833), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115265,63 +117312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [69893] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1266), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1268), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [69939] = 5, + anon_sym_COLON, + [71705] = 4, ACTIONS(63), 1, sym_comment, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1061), 2, + ACTIONS(3843), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1161), 13, + ACTIONS(3841), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115335,7 +117334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(3839), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115357,11 +117358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [69989] = 3, + anon_sym_COLON, + [71753] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 13, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115375,7 +117376,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1182), 25, + ACTIONS(1207), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115395,32 +117398,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - sym_test_operator, - [70035] = 3, + aux_sym_concatenation_token1, + [71799] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 12, + ACTIONS(3819), 1, + sym__special_character, + STATE(1613), 1, + aux_sym__literal_repeat1, + ACTIONS(2821), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, 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(1226), 26, + ACTIONS(2823), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115434,64 +117439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [70081] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3780), 1, - sym__concat, - ACTIONS(3778), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3776), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [70129] = 3, + [71849] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1251), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115504,10 +117463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1240), 26, + ACTIONS(1253), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115530,17 +117490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70175] = 6, + [71895] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3782), 1, - aux_sym_concatenation_token1, - ACTIONS(3784), 1, - sym__concat, - STATE(1562), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 11, + ACTIONS(1247), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115551,10 +117504,13 @@ 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(1186), 24, + ACTIONS(1249), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115568,6 +117524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -115576,16 +117533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70227] = 5, + [71941] = 5, ACTIONS(63), 1, sym_comment, - STATE(1560), 1, + STATE(1591), 1, aux_sym_concatenation_repeat1, - ACTIONS(3786), 2, + ACTIONS(3845), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1180), 12, + ACTIONS(1183), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115596,10 +117552,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1182), 23, + ACTIONS(1185), 24, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115621,17 +117578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70277] = 6, + [71991] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3782), 1, - aux_sym_concatenation_token1, - ACTIONS(3788), 1, - sym__concat, - STATE(1562), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 11, + ACTIONS(1201), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115642,10 +117592,13 @@ 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(1192), 24, + ACTIONS(1203), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115659,6 +117612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -115667,34 +117621,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70329] = 3, + [72037] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(3819), 1, + sym__special_character, + STATE(1613), 1, + aux_sym__literal_repeat1, + ACTIONS(2817), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1222), 26, + ACTIONS(2819), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -115702,19 +117658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [70375] = 3, + [72087] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 13, + ACTIONS(1247), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -115728,8 +117683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1230), 25, + ACTIONS(1249), 25, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -115753,36 +117709,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - sym_test_operator, - [70421] = 5, + [72133] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3790), 1, - sym__special_character, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(189), 12, - anon_sym_EQ_EQ, + ACTIONS(1205), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(222), 24, + ACTIONS(1207), 26, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -115790,19 +117744,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [70471] = 3, + [72179] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3852), 1, + sym__concat, + ACTIONS(3850), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3848), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [72227] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 12, + ACTIONS(1243), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115815,10 +117812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1264), 26, + ACTIONS(1245), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115841,37 +117839,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70517] = 6, + [72273] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3786), 1, - aux_sym_concatenation_token1, - ACTIONS(3792), 1, - sym__concat, - STATE(1566), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 12, + ACTIONS(1235), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(1186), 23, + ACTIONS(1237), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -115879,7 +117874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -115887,11 +117882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70569] = 3, + [72319] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 12, + ACTIONS(1239), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115904,10 +117898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1272), 26, + ACTIONS(1241), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115930,16 +117925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70615] = 5, + [72365] = 3, ACTIONS(63), 1, sym_comment, - STATE(1562), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3794), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 11, + ACTIONS(1183), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115950,10 +117939,13 @@ 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(1175), 24, + ACTIONS(1185), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -115967,6 +117959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -115975,17 +117968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70665] = 6, + [72411] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3786), 1, - aux_sym_concatenation_token1, - ACTIONS(3797), 1, - sym__concat, - STATE(1566), 1, + STATE(1601), 1, aux_sym_concatenation_repeat1, - ACTIONS(1190), 12, + ACTIONS(3854), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1183), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -115998,8 +117989,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1192), 23, + ACTIONS(1185), 23, sym_file_descriptor, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116021,11 +118013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70717] = 3, + [72461] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(1205), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116038,10 +118029,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1230), 26, + ACTIONS(1207), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116064,11 +118056,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70763] = 3, + [72507] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 12, + ACTIONS(1267), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116081,10 +118072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1202), 26, + ACTIONS(1269), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116107,16 +118099,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70809] = 5, + [72553] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3861), 1, + sym__concat, + ACTIONS(3859), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3857), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [72601] = 5, ACTIONS(63), 1, sym_comment, - STATE(1566), 1, + STATE(1530), 1, aux_sym_concatenation_repeat1, - ACTIONS(3799), 2, + ACTIONS(3806), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1170), 12, + ACTIONS(2967), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116127,10 +118162,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1175), 23, + ACTIONS(2969), 24, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116152,76 +118188,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70859] = 3, + [72651] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 12, + ACTIONS(1231), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1198), 26, - sym_file_descriptor, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1233), 25, sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, 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, + [72697] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1227), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1229), 25, + sym__concat, sym_test_operator, - [70905] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [72743] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 12, + ACTIONS(1263), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(1256), 26, + ACTIONS(1265), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -116230,7 +118310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116238,11 +118317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [70951] = 3, + [72789] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 13, + ACTIONS(1167), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116253,11 +118331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1202), 25, - sym__concat, + ACTIONS(1169), 24, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116277,38 +118357,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, + sym__special_character, + [72835] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3863), 1, + sym__special_character, + STATE(1610), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1275), 23, sym_test_operator, - [70997] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [72885] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 12, + STATE(1574), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3806), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2975), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 26, + ACTIONS(2977), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -116316,7 +118442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116324,34 +118450,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [72935] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1223), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1225), 25, + sym__concat, sym_test_operator, - [71043] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [72981] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 12, + ACTIONS(3866), 1, + sym__special_character, + STATE(1613), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1248), 26, + ACTIONS(1275), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -116359,42 +118530,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [71089] = 3, + [73031] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 12, + ACTIONS(3823), 1, + aux_sym_concatenation_token1, + ACTIONS(3869), 1, + sym__concat, + STATE(1601), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(1244), 26, + ACTIONS(1179), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -116402,7 +118576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116410,11 +118584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71135] = 3, + [73083] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 12, + ACTIONS(1219), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116427,10 +118600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1206), 26, + ACTIONS(1221), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116453,13 +118627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71181] = 4, + [73129] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3806), 1, - sym__concat, - ACTIONS(3804), 13, + ACTIONS(1215), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116473,9 +118644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3802), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1217), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -116495,18 +118666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [71229] = 5, + aux_sym_concatenation_token1, + [73175] = 3, ACTIONS(63), 1, sym_comment, - STATE(1563), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3786), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2989), 12, + ACTIONS(1211), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116519,8 +118686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2991), 23, + ACTIONS(1213), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116534,6 +118704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -116542,36 +118713,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71279] = 5, + [73221] = 3, ACTIONS(63), 1, sym_comment, - STATE(1560), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3786), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2973), 12, + ACTIONS(1259), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, 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(2977), 23, + ACTIONS(1261), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -116579,7 +118748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116587,16 +118756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71329] = 5, + [73267] = 6, ACTIONS(63), 1, sym_comment, - STATE(1553), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3782), 2, - sym__concat, + ACTIONS(3823), 1, aux_sym_concatenation_token1, - ACTIONS(3060), 11, + ACTIONS(3871), 1, + sym__concat, + STATE(1601), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116607,10 +118776,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3062), 24, + ACTIONS(1173), 23, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116632,30 +118802,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71379] = 5, + [73319] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3790), 1, - sym__special_character, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(2809), 12, - anon_sym_EQ_EQ, + ACTIONS(1263), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, 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(2811), 24, + ACTIONS(1265), 26, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116669,67 +118836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [71429] = 3, + [73365] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 14, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1182), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - sym_test_operator, - [71475] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1555), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3782), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3044), 11, + ACTIONS(1205), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116741,9 +118860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(3046), 24, + ACTIONS(1207), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116757,6 +118878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -116765,11 +118887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71525] = 3, + [73410] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 12, + ACTIONS(1219), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116782,10 +118903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1214), 26, + ACTIONS(1221), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116808,11 +118929,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71571] = 3, + [73455] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 13, + ACTIONS(3873), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + STATE(3846), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -116826,10 +118957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1206), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -116847,38 +118975,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [71617] = 3, + [73510] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 12, + ACTIONS(1239), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1252), 26, + ACTIONS(1241), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -116887,6 +119010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116894,16 +119018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71663] = 5, + [73555] = 3, ACTIONS(63), 1, sym_comment, - STATE(1555), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3782), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2947), 11, + ACTIONS(1247), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -116915,9 +119033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2949), 24, + ACTIONS(1249), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -116931,6 +119051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -116939,75 +119060,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71713] = 5, + [73600] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3808), 1, - sym__special_character, - STATE(1585), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1281), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1167), 12, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [71763] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1553), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3782), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2937), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(2939), 24, + ACTIONS(1169), 25, sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -117026,18 +119098,14 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [71813] = 5, + [73645] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3811), 1, - sym__special_character, - STATE(1585), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, + ACTIONS(3887), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117051,7 +119119,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 23, + ACTIONS(3885), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117071,104 +119141,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [71863] = 3, + anon_sym_COLON, + [73690] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 12, + ACTIONS(3887), 13, + anon_sym_EQ, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1256), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [71909] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1262), 12, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1264), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3885), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [71955] = 5, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [73735] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3813), 1, - sym__special_character, - STATE(1590), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 13, + ACTIONS(3891), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117182,7 +119203,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1281), 23, + ACTIONS(3889), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117202,149 +119225,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [72005] = 5, + anon_sym_COLON, + [73780] = 8, ACTIONS(63), 1, sym_comment, - STATE(1553), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3782), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3040), 11, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3893), 1, + anon_sym_RPAREN_RPAREN, + STATE(3792), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, + anon_sym_EQ, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3042), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72055] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(1555), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3782), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3034), 11, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3036), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3881), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72105] = 5, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [73835] = 6, ACTIONS(63), 1, sym_comment, - STATE(1553), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3782), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 11, + ACTIONS(3903), 1, + anon_sym_RPAREN, + ACTIONS(3901), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3895), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(3897), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1182), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3899), 16, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72155] = 3, + anon_sym_STAR_STAR, + [73886] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 13, + ACTIONS(1167), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117358,8 +119337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1252), 25, - sym__concat, + sym__special_character, + ACTIONS(1169), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117379,15 +119359,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72201] = 3, + [73931] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 13, + ACTIONS(3905), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(3909), 1, + anon_sym_RPAREN, + ACTIONS(3911), 1, + anon_sym_QMARK, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3901), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3897), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117401,10 +119392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1256), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3899), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117415,26 +119404,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72247] = 5, + [73986] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(3816), 1, - sym__special_character, - STATE(1590), 1, - aux_sym__literal_repeat1, - ACTIONS(187), 13, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3901), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3913), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(3897), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117448,9 +119437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(350), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3899), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117461,70 +119449,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [72297] = 3, + [74037] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 12, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3917), 1, + anon_sym_RPAREN_RPAREN, + STATE(3874), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1268), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3881), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [72343] = 6, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [74092] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1061), 1, - aux_sym_concatenation_token1, - ACTIONS(3818), 1, - sym__concat, - STATE(1247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 13, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3901), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3913), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(3897), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117538,9 +119529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1186), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3899), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117551,20 +119541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [72395] = 3, + [74143] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 12, + ACTIONS(1201), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -117577,10 +119562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1252), 26, + ACTIONS(1203), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -117603,57 +119588,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [72441] = 6, + [74188] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1061), 1, - aux_sym_concatenation_token1, - ACTIONS(3820), 1, - sym__concat, - STATE(1247), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1192), 22, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3919), 1, + anon_sym_RPAREN_RPAREN, + STATE(3866), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [72493] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1262), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117667,10 +119616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1264), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117688,34 +119634,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72539] = 5, + [74243] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3790), 1, - sym__special_character, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(2857), 12, - anon_sym_EQ_EQ, + ACTIONS(1219), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(2859), 24, + ACTIONS(1221), 26, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -117729,19 +119668,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [72589] = 3, + [74288] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(3921), 1, + sym__special_character, + STATE(1640), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -117751,13 +119694,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(1222), 26, + ACTIONS(1275), 24, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -117771,20 +119713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [72635] = 3, + [74337] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 12, + ACTIONS(1255), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -117797,10 +119737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1244), 26, + ACTIONS(1257), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -117823,11 +119763,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [72681] = 3, + [74382] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3924), 1, + anon_sym_RPAREN_RPAREN, + STATE(3820), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117841,10 +119791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1268), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117862,15 +119809,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72727] = 3, + [74437] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3926), 1, + anon_sym_RPAREN_RPAREN, + STATE(3858), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117884,10 +119838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 25, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117905,15 +119856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72773] = 3, + [74492] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 13, + ACTIONS(3588), 1, + anon_sym_RBRACK, + ACTIONS(3928), 1, + sym__concat, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117927,8 +119878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1248), 25, - sym__concat, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117948,15 +119899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72819] = 3, + [74541] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 13, + ACTIONS(1259), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -117970,8 +119918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1244), 25, - sym__concat, + ACTIONS(1261), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -117991,15 +119940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - sym_test_operator, - [72865] = 3, + anon_sym_COLON, + [74586] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 12, + ACTIONS(1183), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -118012,10 +119959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1248), 26, + ACTIONS(1185), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -118038,54 +119985,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [72911] = 3, + [74631] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 12, + ACTIONS(3728), 1, + anon_sym_RBRACK, + ACTIONS(3930), 1, + sym__concat, + ACTIONS(1149), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1244), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1283), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [72957] = 3, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [74680] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(1243), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -118096,12 +120043,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(1230), 26, + ACTIONS(1245), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -118124,67 +120071,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [73003] = 5, + [74725] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3822), 1, - sym__special_character, - STATE(1612), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 12, - anon_sym_EQ_EQ, + ACTIONS(3652), 1, + anon_sym_RBRACK, + ACTIONS(3932), 1, + sym__concat, + ACTIONS(1149), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1281), 24, - sym_file_descriptor, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1283), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73053] = 8, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [74774] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3825), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - STATE(3790), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3663), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118198,7 +120132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3661), 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, @@ -118216,22 +120154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - [73108] = 8, + anon_sym_QMARK, + [74819] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3837), 1, - anon_sym_RPAREN_RPAREN, - STATE(3896), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3650), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118245,7 +120174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3648), 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, @@ -118263,11 +120196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - [73163] = 3, + anon_sym_QMARK, + [74864] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 13, + ACTIONS(3850), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118281,7 +120216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1252), 24, + ACTIONS(3848), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -118306,10 +120241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [73208] = 3, + [74909] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3695), 13, + ACTIONS(3650), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118323,8 +120258,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3693), 24, + ACTIONS(3648), 24, sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118347,11 +120283,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [73253] = 3, + [74954] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3934), 1, + anon_sym_RPAREN_RPAREN, + STATE(3902), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118365,11 +120311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1256), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118388,12 +120330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [73298] = 3, + [75009] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 11, + ACTIONS(1211), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -118405,10 +120345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1264), 26, + ACTIONS(1213), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -118431,11 +120372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [73343] = 3, + [75054] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3936), 1, + anon_sym_RPAREN_RPAREN, + STATE(3798), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118449,11 +120400,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1230), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(3881), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [75109] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1267), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(1269), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [75154] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3938), 1, + anon_sym_RPAREN_RPAREN, + STATE(3819), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(3877), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118472,23 +120508,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [73388] = 8, + [75209] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(1267), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1269), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [75254] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3839), 1, + ACTIONS(3940), 1, anon_sym_RPAREN_RPAREN, - STATE(3868), 1, + STATE(3818), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118502,7 +120578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118521,10 +120597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [73443] = 3, + [75309] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 13, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118538,7 +120614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1264), 24, + ACTIONS(1207), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -118563,21 +120639,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [73488] = 8, + [75354] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3841), 1, + ACTIONS(3942), 1, anon_sym_RPAREN_RPAREN, - STATE(3841), 1, + STATE(3803), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118591,7 +120667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118610,25 +120686,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [73543] = 3, + [75409] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 11, + ACTIONS(2807), 12, + anon_sym_EQ_EQ, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1256), 26, + ACTIONS(2809), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -118642,31 +120719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [73588] = 8, + [75454] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3843), 1, - anon_sym_RPAREN_RPAREN, - STATE(3853), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(1235), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118680,7 +120745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(1237), 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, @@ -118699,10 +120768,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [73643] = 3, + anon_sym_QMARK, + anon_sym_COLON, + [75499] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3847), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3944), 1, + anon_sym_RPAREN_RPAREN, + STATE(3845), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118716,11 +120798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3845), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118739,12 +120817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [73688] = 3, + [75554] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 11, + ACTIONS(1251), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -118756,10 +120832,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1252), 26, + ACTIONS(1253), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -118782,11 +120859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [73733] = 3, + [75599] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 11, + ACTIONS(1183), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -118798,10 +120874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 26, + ACTIONS(1185), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -118824,53 +120901,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [73778] = 3, + [75644] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 11, + ACTIONS(3948), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [73823] = 3, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3946), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [75689] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 11, + ACTIONS(1255), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -118882,10 +120958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 26, + ACTIONS(1257), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -118908,11 +120985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [73868] = 3, + [75734] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3804), 13, + ACTIONS(3668), 1, + anon_sym_RBRACK, + ACTIONS(3950), 1, + sym__concat, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118926,9 +121006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3802), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -118950,11 +121029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [73913] = 3, + [75783] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3851), 13, + ACTIONS(3954), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -118968,7 +121046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3849), 24, + ACTIONS(3952), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -118993,68 +121071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [73958] = 4, + [75828] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3853), 6, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(3829), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3833), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2803), 12, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [74005] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1228), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1230), 26, + ACTIONS(2805), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, + sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -119068,20 +121104,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [74050] = 3, + [75873] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3857), 13, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119095,7 +121130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3855), 24, + ACTIONS(1207), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -119120,25 +121155,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [74095] = 3, + [75918] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 12, - anon_sym_EQ_EQ, + ACTIONS(1205), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1182), 25, + ACTIONS(1207), 26, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -119152,31 +121188,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [74140] = 8, + [75963] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3859), 1, + ACTIONS(3956), 1, anon_sym_RPAREN_RPAREN, - STATE(3903), 1, + STATE(3901), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119190,7 +121225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119209,21 +121244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [74195] = 6, + [76018] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3869), 1, - anon_sym_RPAREN, - ACTIONS(3867), 3, + ACTIONS(3962), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3861), 4, - anon_sym_RPAREN_RPAREN, + ACTIONS(3895), 5, + sym__concat, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(3863), 13, + ACTIONS(3958), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119237,7 +121271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3865), 16, + ACTIONS(3960), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119253,22 +121288,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [74246] = 8, + [76067] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3911), 1, anon_sym_QMARK, - ACTIONS(3871), 1, + ACTIONS(3964), 1, anon_sym_RPAREN_RPAREN, - STATE(3821), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3966), 1, + anon_sym_RPAREN, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3901), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3897), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119282,7 +121318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3899), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119293,33 +121330,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [74301] = 3, + [76122] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(2861), 12, - anon_sym_EQ_EQ, + ACTIONS(1259), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, 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(2863), 25, + ACTIONS(1261), 25, sym_file_descriptor, - sym__bare_dollar, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -119333,20 +121368,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [76167] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1211), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(1213), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - [74346] = 3, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [76212] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 11, + ACTIONS(1235), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -119358,10 +121434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1222), 26, + ACTIONS(1237), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -119384,22 +121461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [74391] = 6, + [76257] = 8, ACTIONS(63), 1, sym_comment, ACTIONS(3875), 1, - anon_sym_RPAREN, - ACTIONS(3867), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3873), 4, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3968), 1, anon_sym_RPAREN_RPAREN, + STATE(3887), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(3863), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119413,7 +121489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3865), 16, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119424,27 +121500,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [74442] = 8, + anon_sym_EQ_TILDE, + [76312] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3877), 1, + ACTIONS(3970), 1, anon_sym_RPAREN_RPAREN, - STATE(3810), 1, + STATE(3854), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119458,7 +121536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119477,21 +121555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [74497] = 8, + [76367] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3879), 1, + ACTIONS(3972), 1, anon_sym_RPAREN_RPAREN, - STATE(3813), 1, + STATE(3841), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119505,7 +121583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119524,21 +121602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [74552] = 8, + [76422] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3881), 1, + ACTIONS(3974), 1, anon_sym_RPAREN_RPAREN, - STATE(3877), 1, + STATE(3829), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119552,7 +121630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119571,52 +121649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [74607] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1212), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1214), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [74652] = 3, + [76477] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3778), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3976), 1, + anon_sym_RPAREN_RPAREN, + STATE(3848), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119630,11 +121677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3776), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119653,12 +121696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [74697] = 3, + [76532] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 12, + ACTIONS(1215), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -119669,11 +121710,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(1206), 25, + ACTIONS(1217), 26, sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -119696,21 +121738,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [76577] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1201), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1203), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - [74742] = 5, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [76622] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3887), 3, + ACTIONS(3909), 1, + anon_sym_RPAREN, + ACTIONS(3911), 1, + anon_sym_QMARK, + ACTIONS(3964), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3901), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3873), 5, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(3883), 13, + ACTIONS(3897), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119724,7 +121810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3885), 16, + ACTIONS(3899), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119740,21 +121827,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [74791] = 5, + [76677] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3887), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3873), 5, - sym__concat, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3978), 1, + anon_sym_RPAREN_RPAREN, + STATE(3886), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(3883), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119768,7 +121855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3885), 16, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119779,26 +121866,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [74840] = 5, + anon_sym_EQ_TILDE, + [76732] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3887), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3861), 5, - sym__concat, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3980), 1, + anon_sym_RPAREN_RPAREN, + STATE(3825), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(3883), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119812,7 +121902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3885), 16, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119823,16 +121913,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [74889] = 3, + anon_sym_EQ_TILDE, + [76787] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3609), 13, + ACTIONS(3962), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3913), 5, + sym__concat, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(3958), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119846,10 +121948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3607), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3960), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119860,21 +121960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [74934] = 3, + [76836] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 12, + ACTIONS(1263), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -119887,9 +121981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1244), 25, + ACTIONS(1265), 25, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -119912,22 +122007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [74979] = 8, + [76881] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3889), 1, + ACTIONS(3982), 1, anon_sym_RPAREN_RPAREN, - STATE(3905), 1, + STATE(3875), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -119941,7 +122035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -119960,105 +122054,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [75034] = 8, + [76936] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3891), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(3895), 1, - anon_sym_RPAREN, - ACTIONS(3897), 1, - anon_sym_QMARK, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3867), 3, + ACTIONS(3962), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3863), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3865), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [75089] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3899), 1, - sym__special_character, - STATE(1655), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1281), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75138] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3587), 1, - anon_sym_RBRACK, - ACTIONS(3902), 1, + ACTIONS(3913), 5, sym__concat, - ACTIONS(1161), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(3958), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120072,9 +122081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3960), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120085,31 +122093,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [75187] = 8, + [76985] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3904), 1, + ACTIONS(3984), 1, anon_sym_RPAREN_RPAREN, - STATE(3859), 1, + STATE(3791), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120123,7 +122126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120142,67 +122145,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [75242] = 7, - ACTIONS(3), 1, + [77040] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - STATE(2381), 1, - sym_string, - ACTIONS(1145), 2, + ACTIONS(3986), 1, + sym__special_character, + STATE(1696), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1275), 25, sym_file_descriptor, sym_variable_name, - ACTIONS(3910), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3906), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 22, - anon_sym_SEMI, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [77089] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1239), 12, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + 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(1241), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_AMP, - [75295] = 8, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [77134] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3912), 1, - anon_sym_RPAREN_RPAREN, - STATE(3860), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3859), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120216,7 +122248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3857), 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, @@ -120235,10 +122271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [75350] = 3, + anon_sym_QMARK, + anon_sym_COLON, + [77179] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 12, + ACTIONS(1223), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120251,9 +122289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1248), 25, + ACTIONS(1225), 25, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120276,11 +122315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [75395] = 3, + [77224] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 11, + ACTIONS(1243), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120291,11 +122329,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(1214), 26, + ACTIONS(1245), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120318,63 +122357,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [75440] = 3, + [77269] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 12, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3989), 1, + anon_sym_RPAREN_RPAREN, + STATE(3795), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1244), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3881), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [77324] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1215), 13, + anon_sym_EQ, + anon_sym_LT_LT, anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75485] = 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1217), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [77369] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(3993), 1, anon_sym_DQUOTE, - STATE(2381), 1, + STATE(2468), 1, sym_string, - ACTIONS(1141), 2, + ACTIONS(1139), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(3910), 2, + ACTIONS(3995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3906), 9, + ACTIONS(3991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -120384,7 +122469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 22, + ACTIONS(1137), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120407,10 +122492,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [75538] = 3, + [77422] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 11, + ACTIONS(1259), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120422,10 +122507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1268), 26, + ACTIONS(1261), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120448,57 +122534,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [75583] = 3, - ACTIONS(63), 1, + [77467] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1196), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1198), 26, + ACTIONS(3993), 1, + anon_sym_DQUOTE, + STATE(2468), 1, + sym_string, + ACTIONS(1135), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(3995), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3991), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 22, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [75628] = 5, + anon_sym_AMP, + [77520] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(3997), 1, + anon_sym_RPAREN_RPAREN, + STATE(3813), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3881), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [77575] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3914), 1, + ACTIONS(3999), 1, sym__special_character, - STATE(1655), 1, + STATE(1640), 1, aux_sym__literal_repeat1, - ACTIONS(2937), 11, + ACTIONS(2967), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120510,9 +122646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2939), 24, + ACTIONS(2969), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120534,11 +122671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [75677] = 3, + [77624] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4001), 1, + anon_sym_RPAREN_RPAREN, + STATE(3852), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120552,11 +122699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1268), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120575,12 +122718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [75722] = 3, + [77679] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3918), 13, + ACTIONS(4005), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120594,7 +122735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3916), 24, + ACTIONS(4003), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -120619,57 +122760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [75767] = 8, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3920), 1, - anon_sym_RPAREN_RPAREN, - STATE(3887), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3833), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [75822] = 3, + [77724] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 12, + ACTIONS(1205), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120682,9 +122776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1252), 25, + ACTIONS(1207), 25, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120707,11 +122802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [75867] = 3, + [77769] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 12, + ACTIONS(1235), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120724,9 +122818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1222), 25, + ACTIONS(1237), 25, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120749,11 +122844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [75912] = 3, + [77814] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 11, + ACTIONS(1205), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120764,11 +122858,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(1272), 26, + ACTIONS(1207), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120791,22 +122886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [75957] = 8, + [77859] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3922), 1, - anon_sym_RPAREN_RPAREN, - STATE(3844), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(4009), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120820,7 +122903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4007), 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, @@ -120839,10 +122926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [76012] = 3, + anon_sym_QMARK, + anon_sym_COLON, + [77904] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 12, + ACTIONS(3999), 1, + sym__special_character, + STATE(1640), 1, + aux_sym__literal_repeat1, + ACTIONS(2961), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -120852,12 +122945,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(1256), 25, + ACTIONS(2963), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -120871,73 +122964,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [76057] = 3, + [77953] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 12, + ACTIONS(1149), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1198), 25, - sym_file_descriptor, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1283), 24, sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76102] = 8, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [77998] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3924), 1, + ACTIONS(4011), 1, anon_sym_RPAREN_RPAREN, - STATE(3798), 1, + STATE(3873), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -120951,7 +123042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -120970,94 +123061,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [76157] = 3, + [78053] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 12, + ACTIONS(4015), 13, + anon_sym_EQ, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1264), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76202] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1200), 12, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1202), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4013), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76247] = 3, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [78098] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3928), 13, + ACTIONS(4015), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121071,7 +123120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3926), 24, + ACTIONS(4013), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -121096,10 +123145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [76292] = 3, + [78143] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 14, + ACTIONS(4019), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121113,8 +123162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1182), 23, + ACTIONS(4017), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121134,67 +123184,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [76337] = 3, + anon_sym_COLON, + [78188] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 11, + ACTIONS(1231), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1206), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1233), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76382] = 8, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [78233] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(4021), 1, anon_sym_RPAREN_RPAREN, - STATE(3833), 1, + STATE(3859), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121208,7 +123257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121227,52 +123276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [76437] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1266), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1268), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76482] = 3, + [78288] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3934), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4023), 1, + anon_sym_RPAREN_RPAREN, + STATE(3860), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121286,11 +123304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3932), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121309,12 +123323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [76527] = 3, + [78343] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 11, + ACTIONS(1263), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -121326,10 +123338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1202), 26, + ACTIONS(1265), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -121352,11 +123365,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [76572] = 3, + [78388] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3609), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4025), 1, + anon_sym_RPAREN_RPAREN, + STATE(3862), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121370,10 +123393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3607), 24, - sym__concat, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121391,25 +123411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [76617] = 8, + [78443] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3936), 1, + ACTIONS(4027), 1, anon_sym_RPAREN_RPAREN, - STATE(3906), 1, + STATE(3917), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121423,7 +123440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121442,63 +123459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [76672] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1272), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [76717] = 6, + [78498] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3875), 1, - anon_sym_RPAREN, - ACTIONS(3867), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(3863), 13, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121512,7 +123476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3865), 16, + ACTIONS(1229), 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, @@ -121523,16 +123491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [76768] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [78543] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3928), 13, + ACTIONS(1263), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121546,7 +123518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3926), 24, + ACTIONS(1265), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -121571,21 +123543,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [76813] = 8, + [78588] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3938), 1, + ACTIONS(4029), 1, anon_sym_RPAREN_RPAREN, - STATE(3898), 1, + STATE(3884), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121599,7 +123571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121618,31 +123590,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [76868] = 3, + [78643] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(2817), 12, - anon_sym_EQ_EQ, + ACTIONS(4031), 1, + sym__special_character, + STATE(1696), 1, + aux_sym__literal_repeat1, + ACTIONS(3063), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2819), 25, + ACTIONS(3065), 25, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -121650,7 +123626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121659,11 +123634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [76913] = 3, + [78692] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 14, + ACTIONS(4035), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121677,8 +123651,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - sym__special_character, - ACTIONS(1182), 23, + ACTIONS(4033), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -121698,25 +123673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [76958] = 8, + anon_sym_COLON, + [78737] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3940), 1, + ACTIONS(4037), 1, anon_sym_RPAREN_RPAREN, - STATE(3865), 1, + STATE(3868), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121730,7 +123704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -121749,142 +123723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77013] = 3, + [78792] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3944), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3942), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [77058] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3583), 1, - anon_sym_RBRACK, - ACTIONS(3946), 1, - sym__concat, - ACTIONS(1161), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1288), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [77107] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3950), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3948), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [77152] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3952), 1, - sym__special_character, - STATE(1733), 1, - aux_sym__literal_repeat1, - ACTIONS(3040), 10, + ACTIONS(1223), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -121894,55 +123736,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3042), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [77201] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3914), 1, - sym__special_character, - STATE(1655), 1, - aux_sym__literal_repeat1, - ACTIONS(2887), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2889), 24, + ACTIONS(1225), 26, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -121956,19 +123756,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [77250] = 3, + [78837] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3847), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4039), 1, + anon_sym_RPAREN_RPAREN, + STATE(3907), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -121982,11 +123793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3845), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122005,23 +123812,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [77295] = 8, + [78892] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3954), 1, + ACTIONS(4041), 1, anon_sym_RPAREN_RPAREN, - STATE(3838), 1, + STATE(3915), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122035,7 +123840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122054,21 +123859,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77350] = 8, + [78947] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3956), 1, + ACTIONS(4043), 1, anon_sym_RPAREN_RPAREN, - STATE(3872), 1, + STATE(3889), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122082,7 +123887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122101,10 +123906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77405] = 3, + [79002] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1231), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122117,9 +123922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1240), 25, + ACTIONS(1233), 25, sym_file_descriptor, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122142,22 +123948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [77450] = 8, + [79047] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(4045), 6, anon_sym_RPAREN_RPAREN, - STATE(3816), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122171,7 +123972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122190,10 +123991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77505] = 3, + [79094] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4047), 1, + anon_sym_RPAREN_RPAREN, + STATE(3837), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122207,11 +124019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1222), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122230,12 +124038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [77550] = 3, + [79149] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1161), 13, + ACTIONS(3744), 1, + anon_sym_RBRACK, + ACTIONS(4049), 1, + sym__concat, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122249,8 +124059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 24, - sym__concat, + ACTIONS(1283), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -122270,25 +124080,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [77595] = 8, + [79198] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3960), 1, + ACTIONS(4051), 1, anon_sym_RPAREN_RPAREN, - STATE(3837), 1, + STATE(3810), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122302,7 +124110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122321,21 +124129,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77650] = 8, + [79253] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(1247), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(1249), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [79298] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1251), 12, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + 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(1253), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [79343] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3962), 1, + ACTIONS(4053), 1, anon_sym_RPAREN_RPAREN, - STATE(3822), 1, + STATE(3865), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122349,7 +124241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122368,21 +124260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77705] = 8, + [79398] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3964), 1, - anon_sym_RPAREN_RPAREN, - STATE(3823), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(1167), 14, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122396,7 +124277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + sym__special_character, + ACTIONS(1169), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122414,11 +124299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - [77760] = 3, + anon_sym_QMARK, + [79443] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 11, + ACTIONS(1227), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122429,11 +124316,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(1240), 26, + ACTIONS(1229), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122456,22 +124344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [77805] = 8, + [79488] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3966), 1, - anon_sym_RPAREN_RPAREN, - STATE(3801), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(1223), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122485,7 +124361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(1225), 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, @@ -122504,21 +124384,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77860] = 8, + anon_sym_QMARK, + anon_sym_COLON, + [79533] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3968), 1, + ACTIONS(4055), 1, anon_sym_RPAREN_RPAREN, - STATE(3894), 1, + STATE(3805), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122532,7 +124414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122551,10 +124433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [77915] = 3, + [79588] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 11, + ACTIONS(1215), 12, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122565,11 +124447,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(1226), 26, + ACTIONS(1217), 25, sym_file_descriptor, sym__concat, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122592,15 +124475,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [79633] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1147), 12, + anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1156), 25, + sym_file_descriptor, sym_test_operator, - [77960] = 5, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [79678] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(4031), 1, sym__special_character, - STATE(1733), 1, + STATE(1696), 1, aux_sym__literal_repeat1, - ACTIONS(3060), 10, + ACTIONS(2995), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122611,9 +124535,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3062), 25, + ACTIONS(2997), 25, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122636,15 +124561,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [78009] = 5, + [79727] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_RBRACK, - ACTIONS(3970), 1, - sym__concat, - ACTIONS(1161), 13, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4057), 1, + anon_sym_RPAREN_RPAREN, + STATE(3836), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122658,9 +124589,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(3881), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [79782] = 8, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4059), 1, + anon_sym_RPAREN_RPAREN, + STATE(3808), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(3877), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122679,54 +124655,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [78058] = 3, + [79837] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 12, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4061), 1, + anon_sym_RPAREN_RPAREN, + STATE(3918), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(3879), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3877), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1226), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(3881), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [78103] = 3, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [79892] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 11, + ACTIONS(1231), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122738,10 +124717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1175), 26, + ACTIONS(1233), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122764,11 +124744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [78148] = 3, + [79937] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 11, + ACTIONS(1227), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122780,10 +124759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1218), 26, + ACTIONS(1229), 26, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122806,22 +124786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [78193] = 8, + [79982] = 8, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(3972), 1, + ACTIONS(4063), 1, anon_sym_RPAREN_RPAREN, - STATE(3864), 1, + STATE(3912), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122835,7 +124814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122854,10 +124833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [78248] = 3, + [80037] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3976), 13, + ACTIONS(4069), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3895), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(4065), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -122871,11 +124859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3974), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4067), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -122886,20 +124871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [78293] = 3, + [80085] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 12, + ACTIONS(4071), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(2995), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122909,12 +124893,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(1230), 25, + ACTIONS(2997), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122928,20 +124911,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, + [80133] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3343), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(3345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3341), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3348), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(3350), 6, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3353), 13, + sym_variable_name, sym_test_operator, - [78338] = 3, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [80185] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 1, + anon_sym_DQUOTE, + STATE(2468), 1, + sym_string, + ACTIONS(1135), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(3995), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3991), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80237] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 12, + ACTIONS(3258), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -122951,12 +125022,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(1210), 25, + ACTIONS(3260), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -122970,31 +125041,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, + [80281] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3003), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3005), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [78383] = 8, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [80325] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3978), 1, - anon_sym_RPAREN_RPAREN, - STATE(3878), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123008,7 +125108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(1283), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123026,26 +125129,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [78438] = 3, + anon_sym_QMARK, + [80369] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1159), 12, - anon_sym_EQ_EQ, + ACTIONS(3262), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1168), 25, + ACTIONS(3264), 25, sym_file_descriptor, - sym__bare_dollar, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -123068,22 +125173,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [80413] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2975), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(2977), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [78483] = 8, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [80457] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(4079), 1, anon_sym_QMARK, - ACTIONS(3980), 1, - anon_sym_RPAREN_RPAREN, - STATE(3855), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(4081), 1, + anon_sym_COLON, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(4077), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123097,7 +125242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123108,76 +125254,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [78538] = 8, - ACTIONS(63), 1, + [80509] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(3993), 1, + anon_sym_DQUOTE, + STATE(2468), 1, + sym_string, + ACTIONS(1139), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(3995), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3991), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(3982), 1, - anon_sym_RPAREN_RPAREN, - STATE(3852), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, - anon_sym_EQ, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3833), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + [80561] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4083), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1275), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [78593] = 8, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [80609] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(77), 1, + anon_sym_RBRACK, + ACTIONS(4094), 1, anon_sym_QMARK, - ACTIONS(3984), 1, - anon_sym_RPAREN_RPAREN, - STATE(3848), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(4088), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(4092), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4086), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123191,7 +125375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4090), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123202,29 +125387,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [78648] = 8, + [80661] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3986), 1, - anon_sym_RPAREN_RPAREN, - STATE(3827), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(4096), 1, + sym__special_character, + STATE(1770), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1275), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [80709] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4103), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3895), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(4099), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123238,7 +125461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4101), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123249,39 +125473,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [78703] = 3, + [80757] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 11, + ACTIONS(3067), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1210), 26, + ACTIONS(3069), 25, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123289,24 +125511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [78748] = 5, + [80801] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3711), 1, - anon_sym_RBRACK, - ACTIONS(3988), 1, - sym__concat, - ACTIONS(1161), 13, + ACTIONS(1149), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123320,7 +125536,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, + ACTIONS(1283), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -123340,24 +125557,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [78797] = 8, + [80845] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3990), 1, - anon_sym_RPAREN_RPAREN, - STATE(3794), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(4077), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3895), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123371,7 +125586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123382,29 +125598,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + [80893] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4103), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3913), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(4099), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4101), 16, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + [80941] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4077), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - [78852] = 8, + ACTIONS(3913), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(4073), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4075), 16, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + [80989] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(77), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4105), 1, anon_sym_QMARK, - ACTIONS(3992), 1, - anon_sym_RPAREN_RPAREN, - STATE(3781), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(4103), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4099), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123418,7 +125717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4101), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123429,22 +125729,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + [81041] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + STATE(2517), 1, + sym_string, + ACTIONS(4111), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4107), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81093] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 1, + sym_file_descriptor, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + STATE(2517), 1, + sym_string, + ACTIONS(4111), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4107), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81145] = 7, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_QMARK, + ACTIONS(4113), 1, + anon_sym_COLON, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4077), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4073), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4075), 16, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [78907] = 5, + [81197] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3994), 1, + ACTIONS(4071), 1, sym__special_character, - STATE(1733), 1, + STATE(1768), 1, aux_sym__literal_repeat1, - ACTIONS(1276), 10, + ACTIONS(3063), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -123455,16 +125887,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1281), 25, + ACTIONS(3065), 24, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -123480,22 +125912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [78956] = 8, + [81245] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3997), 1, - anon_sym_RPAREN_RPAREN, - STATE(3854), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(4103), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3913), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + ACTIONS(4099), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123509,7 +125938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4101), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123520,29 +125950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [79011] = 8, + [81293] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(4119), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3913), 4, anon_sym_RPAREN_RPAREN, - STATE(3788), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + anon_sym_QMARK, + ACTIONS(4115), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123556,7 +125981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4117), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123567,29 +125993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [79066] = 8, + [81341] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(4001), 1, - anon_sym_RPAREN_RPAREN, - STATE(3907), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(4092), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3895), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(4086), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123603,7 +126024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4090), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123614,29 +126036,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [79121] = 8, + [81389] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, + ACTIONS(4123), 1, + anon_sym_RPAREN, + ACTIONS(4125), 1, anon_sym_QMARK, - ACTIONS(4003), 1, - anon_sym_RPAREN_RPAREN, - STATE(3787), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, + ACTIONS(4121), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(4069), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4065), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123650,7 +126069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4067), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123661,31 +126081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [79176] = 8, + [81441] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3891), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(3897), 1, - anon_sym_QMARK, - ACTIONS(4005), 1, - anon_sym_RPAREN, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3867), 3, + ACTIONS(4119), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3863), 13, + ACTIONS(3913), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(4115), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123699,7 +126112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3865), 16, + ACTIONS(4117), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123715,22 +126129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [79231] = 8, + [81489] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(4007), 1, - anon_sym_RPAREN_RPAREN, - STATE(3893), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3756), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123744,7 +126146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3754), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123762,22 +126167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [79286] = 8, + anon_sym_QMARK, + [81533] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(4009), 1, - anon_sym_RPAREN_RPAREN, - STATE(3797), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3650), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123791,7 +126187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3648), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123809,15 +126208,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - [79341] = 5, + anon_sym_QMARK, + [81577] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3603), 1, + ACTIONS(129), 1, anon_sym_RBRACK, - ACTIONS(4011), 1, - sym__concat, - ACTIONS(1161), 13, + ACTIONS(4094), 1, + anon_sym_QMARK, + ACTIONS(4088), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4092), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4086), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123831,9 +126239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4090), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123844,115 +126251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [79390] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1170), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1175), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79435] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1216), 12, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - 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(1218), 25, - sym_file_descriptor, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79480] = 8, + [81629] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(4013), 1, - anon_sym_RPAREN_RPAREN, - STATE(3815), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(3650), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -123966,7 +126273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(3648), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123984,24 +126294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - [79535] = 8, + anon_sym_QMARK, + [81673] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3895), 1, - anon_sym_RPAREN, - ACTIONS(3897), 1, + ACTIONS(129), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4105), 1, anon_sym_QMARK, - ACTIONS(4015), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(3893), 2, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3867), 3, + ACTIONS(4103), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3863), 13, + ACTIONS(4099), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124015,7 +126325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3865), 16, + ACTIONS(4101), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124031,22 +126342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [79590] = 7, + [81725] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(4127), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4129), 1, anon_sym_QMARK, - ACTIONS(4025), 1, - anon_sym_COLON, - ACTIONS(3893), 2, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4021), 3, + ACTIONS(4119), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(4115), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124060,7 +126370,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(4117), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124076,13 +126387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [79642] = 4, + [81777] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4027), 1, - anon_sym_LBRACK, - ACTIONS(3766), 13, + ACTIONS(3663), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124096,7 +126404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3764), 22, + ACTIONS(3661), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124116,15 +126425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [79688] = 4, + [81821] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4029), 1, + ACTIONS(4131), 1, sym__concat, - ACTIONS(3804), 13, + ACTIONS(3835), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124138,7 +126447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3802), 22, + ACTIONS(3833), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124161,21 +126470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [79734] = 7, + [81867] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_RPAREN, - ACTIONS(4041), 1, - anon_sym_QMARK, - ACTIONS(4033), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4037), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4031), 13, + ACTIONS(4133), 1, + sym__concat, + ACTIONS(3841), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124189,7 +126489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(3839), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124200,79 +126502,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [79786] = 5, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [81913] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4043), 1, - sym__special_character, - STATE(1750), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1281), 23, - sym_file_descriptor, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [79834] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3243), 11, + ACTIONS(1167), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3245), 25, + ACTIONS(1169), 25, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -124280,7 +126545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124289,22 +126553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [79878] = 7, + [81957] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_RBRACK, - ACTIONS(4054), 1, - anon_sym_QMARK, - ACTIONS(4048), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4052), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4046), 13, + ACTIONS(3650), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124318,7 +126570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4050), 16, + ACTIONS(3648), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124329,16 +126584,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [79930] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [82001] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3574), 13, + ACTIONS(3650), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124352,7 +126611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3572), 23, + ACTIONS(3648), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -124375,52 +126635,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [79974] = 3, + [82045] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 11, + ACTIONS(4077), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3913), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + ACTIONS(4073), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1182), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4075), 16, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80018] = 3, + anon_sym_STAR_STAR, + [82093] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1161), 13, + ACTIONS(141), 1, + anon_sym_RBRACK, + ACTIONS(4094), 1, + anon_sym_QMARK, + ACTIONS(4088), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4092), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4086), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124434,9 +126706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4090), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124447,30 +126718,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [80062] = 5, + [82145] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4037), 3, + ACTIONS(4069), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3861), 4, + ACTIONS(3913), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_RPAREN, anon_sym_QMARK, - ACTIONS(4031), 13, + ACTIONS(4065), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124484,7 +126749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(4067), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124500,22 +126766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80110] = 7, + [82193] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4056), 1, - anon_sym_COLON, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4021), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(4135), 1, + sym__concat, + ACTIONS(3859), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124529,7 +126785,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(3857), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124540,68 +126798,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80162] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [82239] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3247), 11, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4137), 1, + anon_sym_RPAREN, + ACTIONS(4121), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4069), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4065), 13, + anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(3249), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(4067), 16, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80206] = 7, + anon_sym_STAR_STAR, + [82291] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4079), 1, anon_sym_QMARK, - ACTIONS(4058), 1, - anon_sym_RPAREN, - ACTIONS(4033), 2, + ACTIONS(4139), 1, + anon_sym_COLON, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4037), 3, + ACTIONS(4077), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4031), 13, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124615,7 +126881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124631,20 +126898,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80258] = 5, + [82343] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4064), 3, + ACTIONS(141), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4105), 1, + anon_sym_QMARK, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4103), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4060), 13, + ACTIONS(4099), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124658,7 +126926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4062), 16, + ACTIONS(4101), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124674,22 +126943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80306] = 7, + [82395] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(4079), 1, anon_sym_QMARK, - ACTIONS(4066), 1, + ACTIONS(4141), 1, anon_sym_COLON, - ACTIONS(3893), 2, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4021), 3, + ACTIONS(4077), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124703,7 +126971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124719,20 +126988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80358] = 5, + [82447] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4064), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4060), 13, + ACTIONS(4143), 1, + sym__concat, + ACTIONS(3850), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124746,7 +127007,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4062), 16, + ACTIONS(3848), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124757,47 +127020,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80406] = 7, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [82493] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3359), 2, + ACTIONS(4145), 1, + sym__special_character, + STATE(1770), 1, + aux_sym__literal_repeat1, + ACTIONS(3019), 11, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(3361), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3357), 6, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3364), 6, + ACTIONS(3021), 23, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3442), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(3367), 13, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DQUOTE, sym_raw_string, @@ -124807,22 +127073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [80458] = 7, + [82541] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4074), 1, + ACTIONS(3905), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4129), 1, anon_sym_QMARK, - ACTIONS(3893), 2, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4072), 3, + ACTIONS(4119), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4068), 13, + ACTIONS(4115), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124836,7 +127101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4070), 16, + ACTIONS(4117), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124852,20 +127118,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + [82593] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1167), 11, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1169), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [80510] = 5, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82637] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4072), 3, + ACTIONS(4079), 1, + anon_sym_QMARK, + ACTIONS(4147), 1, + anon_sym_COLON, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4077), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3861), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, - anon_sym_QMARK, - ACTIONS(4068), 13, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124879,7 +127187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4070), 16, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124895,22 +127204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80558] = 7, + [82689] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4076), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4078), 1, - anon_sym_QMARK, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4064), 3, + ACTIONS(4119), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4060), 13, + ACTIONS(3895), 4, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + ACTIONS(4115), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124924,7 +127230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4062), 16, + ACTIONS(4117), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124940,20 +127247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80610] = 5, + [82737] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4021), 3, + ACTIONS(4069), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3861), 4, + ACTIONS(3913), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(4017), 13, + ACTIONS(4065), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -124967,7 +127273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(4067), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124983,20 +127290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80658] = 5, + [82785] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4064), 3, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4149), 1, + anon_sym_RPAREN, + ACTIONS(4121), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4069), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3861), 4, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4060), 13, + ACTIONS(4065), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125010,7 +127318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4062), 16, + ACTIONS(4067), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125026,22 +127335,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + [82837] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4071), 1, + sym__special_character, + STATE(1768), 1, + aux_sym__literal_repeat1, + ACTIONS(2967), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2969), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - [80706] = 7, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82885] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(4080), 1, - anon_sym_RPAREN, - ACTIONS(4033), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4037), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4031), 13, + ACTIONS(4151), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125055,7 +127403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125066,27 +127414,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80758] = 7, + anon_sym_EQ_TILDE, + [82935] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4015), 1, + ACTIONS(3964), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(4078), 1, + ACTIONS(4129), 1, anon_sym_QMARK, - ACTIONS(3893), 2, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4064), 3, + ACTIONS(4119), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4060), 13, + ACTIONS(4115), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125100,7 +127450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4062), 16, + ACTIONS(4117), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125116,11 +127467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80810] = 3, + [82987] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3695), 13, + ACTIONS(3663), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125134,7 +127484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3693), 23, + ACTIONS(3661), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125157,22 +127508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [80854] = 7, + [83031] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4074), 1, - anon_sym_QMARK, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4072), 3, + ACTIONS(4092), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4068), 13, + ACTIONS(3913), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(4086), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125186,7 +127534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4070), 16, + ACTIONS(4090), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125202,11 +127551,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [80906] = 3, + [83079] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(3695), 13, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4153), 1, + anon_sym_RPAREN, + ACTIONS(4121), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4069), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4065), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125220,9 +127579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3693), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4067), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125233,75 +127591,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [80950] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(1808), 1, - aux_sym__literal_repeat1, - ACTIONS(3060), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3062), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [80998] = 7, + [83131] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK, - ACTIONS(4054), 1, - anon_sym_QMARK, - ACTIONS(4048), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4052), 3, + ACTIONS(4092), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4046), 13, + ACTIONS(3913), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(4086), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125315,7 +127622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4050), 16, + ACTIONS(4090), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125331,20 +127639,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81050] = 5, + [83179] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4037), 3, + ACTIONS(4079), 1, + anon_sym_QMARK, + ACTIONS(4155), 1, + anon_sym_COLON, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4077), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(4031), 13, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125358,7 +127667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125374,20 +127684,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81098] = 5, + [83231] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4021), 3, + ACTIONS(4079), 1, + anon_sym_QMARK, + ACTIONS(4157), 1, + anon_sym_COLON, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4077), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(4017), 13, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125401,7 +127712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125417,22 +127729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81146] = 7, + [83283] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3891), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4078), 1, - anon_sym_QMARK, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4064), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4060), 13, + ACTIONS(3756), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125446,7 +127746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4062), 16, + ACTIONS(3754), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125457,66 +127760,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81198] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3034), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3036), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [81242] = 5, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [83327] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4052), 3, + ACTIONS(4079), 1, + anon_sym_QMARK, + ACTIONS(4159), 1, + anon_sym_COLON, + ACTIONS(3907), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4077), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3861), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(4046), 13, + ACTIONS(4073), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125530,7 +127798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4050), 16, + ACTIONS(4075), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125546,11 +127815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81290] = 3, + [83379] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3609), 13, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(3815), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125564,7 +127834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3607), 23, + ACTIONS(3813), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125584,23 +127854,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [81334] = 5, + [83425] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4021), 3, + ACTIONS(4125), 1, + anon_sym_QMARK, + ACTIONS(4163), 1, + anon_sym_RPAREN, + ACTIONS(4121), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4069), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - ACTIONS(4017), 13, + ACTIONS(4065), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125614,7 +127885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(4067), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125630,22 +127902,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + [83477] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, sym_test_operator, - [81382] = 7, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4167), 1, + anon_sym_esac, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4287), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1891), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83562] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_RBRACK, - ACTIONS(4054), 1, - anon_sym_QMARK, - ACTIONS(4048), 2, + ACTIONS(1263), 13, + anon_sym_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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1265), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4052), 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(4046), 13, + anon_sym_QMARK, + [83605] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4035), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125659,7 +128020,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4050), 16, + ACTIONS(4033), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125670,20 +128033,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [83648] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, sym_test_operator, - [81434] = 5, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4183), 1, + anon_sym_esac, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4054), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1899), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83733] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + STATE(2467), 1, + sym_string, + ACTIONS(1135), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4189), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4185), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83784] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4084), 1, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3692), 1, + anon_sym_esac, + ACTIONS(4169), 1, sym__special_character, - STATE(1750), 1, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, aux_sym__literal_repeat1, - ACTIONS(2973), 11, + STATE(3885), 1, + sym_concatenation, + STATE(4027), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1909), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83869] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2975), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -125693,10 +128222,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2977), 23, + ACTIONS(2977), 25, sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -125710,6 +128240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125718,13 +128249,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [83912] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, sym_test_operator, - [81482] = 4, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3708), 1, + anon_sym_esac, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4295), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1892), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [83997] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + STATE(2467), 1, + sym_string, + ACTIONS(1139), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4189), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4185), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [84048] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4086), 1, - sym__concat, - ACTIONS(3760), 13, + ACTIONS(1259), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125738,7 +128371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3758), 22, + ACTIONS(1261), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125761,12 +128394,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [81528] = 4, + [84091] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(4088), 1, - sym__concat, - ACTIONS(3772), 13, + ACTIONS(3343), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(3345), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3341), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3348), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(3350), 6, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3353), 14, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [84142] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4019), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125780,7 +128455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3770), 22, + ACTIONS(4017), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125803,10 +128478,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [81574] = 3, + [84185] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4191), 1, + anon_sym_esac, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4283), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1911), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84270] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + STATE(2517), 1, + sym_string, + ACTIONS(4111), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4107), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [84321] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3574), 13, + ACTIONS(4015), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125820,7 +128600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3572), 23, + ACTIONS(4013), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -125840,23 +128620,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [81618] = 5, + [84364] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4037), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4199), 1, anon_sym_RPAREN, + ACTIONS(4201), 1, anon_sym_QMARK, - ACTIONS(4031), 13, + ACTIONS(4195), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4193), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125870,7 +128647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(4197), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125881,20 +128658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81666] = 5, + anon_sym_EQ_TILDE, + [84413] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(1808), 1, - aux_sym__literal_repeat1, - ACTIONS(3040), 10, + ACTIONS(3262), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -125905,9 +128680,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3042), 24, + ACTIONS(3264), 25, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -125921,6 +128697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125929,20 +128706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [81714] = 5, + [84456] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4052), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3873), 4, + ACTIONS(3883), 1, + anon_sym_QMARK, + ACTIONS(4203), 1, + anon_sym_COLON, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(4046), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -125956,7 +128730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4050), 16, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125967,27 +128741,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81762] = 7, + anon_sym_EQ_TILDE, + [84505] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(3883), 1, anon_sym_QMARK, - ACTIONS(4090), 1, + ACTIONS(4205), 1, anon_sym_COLON, - ACTIONS(3893), 2, + ACTIONS(3879), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4021), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(3877), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126001,7 +128773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(3881), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126012,115 +128784,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [81814] = 7, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + [84554] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - STATE(2381), 1, - sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(3910), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3906), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3913), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4211), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4207), 13, + anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81866] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - STATE(2381), 1, - sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(3910), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(3906), 9, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_AMP, - [81918] = 5, + anon_sym_CARET, + ACTIONS(4209), 16, + 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + [84601] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4052), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3873), 4, + ACTIONS(3913), 3, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(4046), 13, + ACTIONS(4211), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4207), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126134,7 +128859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4050), 16, + ACTIONS(4209), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126150,11 +128876,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + [84648] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3632), 1, + anon_sym_esac, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4081), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1916), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84733] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, sym_test_operator, - [81966] = 3, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3718), 1, + anon_sym_esac, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4122), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1893), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84818] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1161), 13, + ACTIONS(4009), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126168,7 +129015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1288), 23, + ACTIONS(4007), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -126191,22 +129038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [82010] = 7, + [84861] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4074), 1, - anon_sym_QMARK, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4072), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4068), 13, + ACTIONS(4005), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126220,7 +129055,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4070), 16, + ACTIONS(4003), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126231,16 +129068,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [84904] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3600), 1, + anon_sym_esac, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, sym_test_operator, - [82062] = 3, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4072), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1914), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84989] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(3609), 13, + ACTIONS(4201), 1, + anon_sym_QMARK, + ACTIONS(4213), 1, + anon_sym_RPAREN, + ACTIONS(4195), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4193), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126254,9 +129163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3607), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4197), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126274,25 +129181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [82106] = 7, + [85038] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4092), 1, - anon_sym_COLON, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4021), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(3850), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126306,7 +129199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(3848), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126317,109 +129212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [82158] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4082), 1, - sym__special_character, - STATE(1808), 1, - aux_sym__literal_repeat1, - ACTIONS(2937), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2939), 24, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82206] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2947), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(2949), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [82250] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4072), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - ACTIONS(4068), 13, + [85081] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3954), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126433,7 +129239,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4070), 16, + ACTIONS(3952), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126444,25 +129252,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [82298] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4072), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(3873), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - ACTIONS(4068), 13, + [85124] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3948), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126476,7 +129279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4070), 16, + ACTIONS(3946), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126487,16 +129292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [82346] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [85167] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 11, + ACTIONS(3258), 10, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -126506,11 +129315,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1182), 25, + ACTIONS(3260), 25, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, @@ -126533,153 +129342,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [82390] = 7, - ACTIONS(3), 1, + [85210] = 24, + ACTIONS(63), 1, sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(4096), 1, - anon_sym_DQUOTE, - STATE(2487), 1, - sym_string, - ACTIONS(4098), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4094), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82442] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1145), 1, - sym_file_descriptor, - ACTIONS(4096), 1, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, anon_sym_DQUOTE, - STATE(2487), 1, - sym_string, - ACTIONS(4098), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4094), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4215), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82494] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3609), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3607), 23, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym_test_operator, - [82538] = 7, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4044), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1913), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85295] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4100), 1, - anon_sym_RPAREN, - ACTIONS(4033), 2, + ACTIONS(3907), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4037), 3, + ACTIONS(3962), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4031), 13, + ACTIONS(3958), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126693,7 +129429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(3960), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126709,56 +129446,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [82590] = 5, + [85344] = 24, ACTIONS(63), 1, sym_comment, - ACTIONS(4102), 1, - sym__special_character, - STATE(1808), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1281), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, anon_sym_BQUOTE, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4219), 1, + anon_sym_esac, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4038), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [82638] = 4, + STATE(1888), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85429] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4105), 1, - sym__concat, - ACTIONS(3778), 13, + ACTIONS(3859), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126772,7 +129524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3776), 22, + ACTIONS(3857), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -126795,21 +129547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [82684] = 7, + [85472] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4107), 1, - anon_sym_COLON, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4021), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(1231), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126823,7 +129564,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(1233), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126834,16 +129577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [82736] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [85515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3609), 13, + ACTIONS(1227), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126857,7 +129604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3607), 23, + ACTIONS(1229), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -126880,22 +129627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym_test_operator, - [82780] = 7, + [85558] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4109), 1, - anon_sym_COLON, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4021), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(1223), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126909,7 +129644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(1225), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126920,27 +129657,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [85601] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3003), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3005), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85644] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, sym_test_operator, - [82832] = 7, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(3724), 1, + anon_sym_esac, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4112), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1890), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85729] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4041), 1, - anon_sym_QMARK, - ACTIONS(4111), 1, - anon_sym_RPAREN, - ACTIONS(4033), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4037), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4031), 13, + ACTIONS(3067), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3069), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85772] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1215), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126954,7 +129825,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4035), 16, + ACTIONS(1217), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -126965,27 +129838,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [85815] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(2584), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3304), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(3306), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(2592), 14, + sym_variable_name, sym_test_operator, - [82884] = 7, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85862] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4113), 1, - anon_sym_COLON, - ACTIONS(3893), 2, + ACTIONS(3895), 3, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4021), 3, + anon_sym_QMARK, + ACTIONS(4211), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, - ACTIONS(4017), 13, + ACTIONS(4207), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -126999,7 +129915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4019), 16, + ACTIONS(4209), 16, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127015,19 +129932,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - sym_test_operator, - [82936] = 6, - ACTIONS(63), 1, + [85909] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3835), 1, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + STATE(2467), 1, + sym_string, + ACTIONS(4189), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1139), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4185), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(3831), 2, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85960] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4045), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4115), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(3829), 13, + anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(4193), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127041,7 +129998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(4197), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127060,31 +130017,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [82986] = 3, + [86005] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3044), 11, + ACTIONS(1167), 11, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(3046), 25, + ACTIONS(1169), 24, sym_file_descriptor, - sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -127092,6 +130048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127100,61 +130057,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [83030] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3847), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3845), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [83073] = 7, + [86048] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, + ACTIONS(4187), 1, anon_sym_DQUOTE, - STATE(2376), 1, + STATE(2467), 1, sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(4121), 2, + ACTIONS(4189), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, + ACTIONS(1135), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(4185), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -127164,7 +130081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 20, + ACTIONS(1127), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -127184,16 +130101,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [83124] = 4, + [86099] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3853), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_RPAREN, - anon_sym_QMARK, - ACTIONS(4123), 13, + ACTIONS(3891), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127207,7 +130118,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4125), 18, + ACTIONS(3889), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127225,11 +130138,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [83169] = 3, + anon_sym_QMARK, + [86142] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1167), 10, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1169), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86185] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3778), 13, + ACTIONS(3887), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127243,7 +130198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3776), 22, + ACTIONS(3885), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -127266,61 +130221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [83212] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - STATE(2376), 1, - sym_string, - ACTIONS(4121), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1145), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(4117), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83263] = 6, + [86228] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4129), 1, - anon_sym_RPAREN, - ACTIONS(4131), 1, - anon_sym_QMARK, - ACTIONS(4127), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4123), 13, + ACTIONS(3887), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127334,7 +130238,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(4125), 18, + ACTIONS(3885), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127352,11 +130258,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [83312] = 3, + anon_sym_QMARK, + [86271] = 24, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4221), 1, + anon_sym_esac, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4037), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1897), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86356] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3851), 13, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127370,7 +130339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3849), 22, + ACTIONS(1207), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -127393,17 +130362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [83355] = 6, + [86399] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3835), 1, - anon_sym_QMARK, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, + ACTIONS(1235), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127417,7 +130379,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3833), 18, + ACTIONS(1237), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127435,11 +130399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [83404] = 3, + anon_sym_QMARK, + [86442] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3928), 13, + ACTIONS(1205), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127453,7 +130419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3926), 22, + ACTIONS(1207), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -127476,10 +130442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [83447] = 3, + [86485] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3804), 13, + ACTIONS(4015), 13, anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, @@ -127493,7 +130459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(3802), 22, + ACTIONS(4013), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -127516,60 +130482,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [83490] = 3, - ACTIONS(63), 1, + [86528] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 10, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + STATE(2467), 1, + sym_string, + ACTIONS(1135), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4189), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4185), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3249), 25, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [86579] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 1, sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + STATE(2517), 1, + sym_string, + ACTIONS(4111), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4107), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [83533] = 7, + anon_sym_AMP, + [86630] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, + ACTIONS(4187), 1, anon_sym_DQUOTE, - STATE(2376), 1, + STATE(2467), 1, sym_string, - ACTIONS(1145), 2, + ACTIONS(1139), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(4121), 2, + ACTIONS(4189), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, + ACTIONS(4185), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -127579,7 +130593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 20, + ACTIONS(1137), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -127600,58 +130614,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [83584] = 24, + [86681] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(4137), 1, - anon_sym_esac, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4087), 1, + STATE(4061), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1875), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127661,58 +130673,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83669] = 24, + [86763] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - ACTIONS(4155), 1, - anon_sym_esac, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4168), 1, + STATE(4112), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1900), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127722,102 +130732,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83754] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - STATE(2376), 1, - sym_string, - ACTIONS(4121), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1141), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(4117), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83805] = 24, + [86845] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(3679), 1, - anon_sym_esac, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4260), 1, + STATE(4054), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1874), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127827,58 +130791,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83890] = 24, + [86927] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(3671), 1, - anon_sym_esac, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4256), 1, + STATE(4223), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1883), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127888,58 +130850,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [83975] = 24, + [87009] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - ACTIONS(4157), 1, - anon_sym_esac, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4236), 1, + STATE(4283), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1903), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -127949,58 +130909,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84060] = 24, + [87091] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(3731), 1, - anon_sym_esac, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4034), 1, + STATE(4037), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1904), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128010,138 +130968,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84145] = 3, - ACTIONS(63), 1, + [87173] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1139), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1222), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_BQUOTE, + [87223] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [84188] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3928), 13, - anon_sym_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_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3926), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [84231] = 24, + anon_sym_BQUOTE, + [87273] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - ACTIONS(4159), 1, - anon_sym_esac, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4319), 1, + STATE(4295), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1882), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128151,98 +131113,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84316] = 3, + [87355] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3944), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3942), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [84359] = 24, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - ACTIONS(4161), 1, - anon_sym_esac, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4320), 1, + STATE(4151), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1899), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128252,58 +131172,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84444] = 24, + [87437] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(1135), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [87487] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - ACTIONS(4163), 1, - anon_sym_esac, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4237), 1, + STATE(4154), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1890), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128313,58 +131274,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84529] = 24, + [87569] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(3719), 1, - anon_sym_esac, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4329), 1, + STATE(4027), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1897), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128374,140 +131333,155 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84614] = 3, - ACTIONS(63), 1, + [87651] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 11, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(4235), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4237), 1, anon_sym_DOLLAR, + ACTIONS(4239), 1, + sym__special_character, + ACTIONS(4241), 1, + anon_sym_DQUOTE, + ACTIONS(4243), 1, aux_sym_number_token1, + ACTIONS(4245), 1, aux_sym_number_token2, + ACTIONS(4247), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4249), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1182), 24, - sym_file_descriptor, + ACTIONS(4251), 1, + anon_sym_BQUOTE, + ACTIONS(4253), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4257), 1, + sym_test_operator, + ACTIONS(4259), 1, sym__brace_start, + STATE(2877), 1, + aux_sym__literal_repeat1, + ACTIONS(4231), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4255), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [84657] = 5, - ACTIONS(63), 1, + STATE(1912), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4229), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4233), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2519), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87727] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3861), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(1139), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(4169), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4165), 13, - anon_sym_EQ, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4167), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [84704] = 24, + [87777] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(3707), 1, - anon_sym_esac, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4335), 1, + STATE(4122), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1896), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128517,24 +131491,115 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [84789] = 3, - ACTIONS(63), 1, + [87859] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 13, - anon_sym_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1139), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1230), 22, + [87909] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(4239), 1, + sym__special_character, + ACTIONS(4241), 1, + anon_sym_DQUOTE, + ACTIONS(4243), 1, + aux_sym_number_token1, + ACTIONS(4245), 1, + aux_sym_number_token2, + ACTIONS(4247), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4249), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4251), 1, + anon_sym_BQUOTE, + ACTIONS(4253), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4257), 1, + sym_test_operator, + ACTIONS(4259), 1, + sym__brace_start, + ACTIONS(4263), 1, + aux_sym_heredoc_redirect_token1, + STATE(2877), 1, + aux_sym__literal_repeat1, + ACTIONS(4231), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4255), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1912), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4229), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4261), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2519), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4265), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -128542,6 +131607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -128553,15 +131619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [84832] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3950), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -128569,129 +131626,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3948), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [84875] = 6, - ACTIONS(63), 1, + [88029] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3835), 1, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(4171), 1, - anon_sym_COLON, - ACTIONS(3831), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3829), 13, - anon_sym_EQ, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_AMP, + [88079] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 1, + anon_sym_SLASH, + ACTIONS(4275), 1, + anon_sym_PERCENT, + ACTIONS(4277), 1, + anon_sym_COLON, + ACTIONS(4281), 1, + anon_sym_RBRACE3, + ACTIONS(4283), 1, + anon_sym_AT, + ACTIONS(4285), 1, + anon_sym_STAR2, + STATE(3690), 1, + aux_sym__expansion_body_repeat1, + STATE(4080), 1, + sym__expansion_regex, + STATE(4176), 1, + sym__expansion_operator, + STATE(4177), 1, + sym__expansion_max_length, + STATE(4179), 1, + sym__expansion_regex_removal, + STATE(4180), 1, + sym__expansion_regex_replacement, + STATE(4182), 1, + sym__expansion_expression, + ACTIONS(4271), 2, + anon_sym_COMMA, anon_sym_CARET, - ACTIONS(3833), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [84924] = 24, + ACTIONS(4291), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(4279), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(4289), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(4287), 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, + [88155] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3592), 1, sym_word, - ACTIONS(3623), 1, + ACTIONS(3598), 1, anon_sym_LPAREN, - ACTIONS(3627), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, sym_extglob_pattern, - ACTIONS(3651), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(3701), 1, - anon_sym_esac, - ACTIONS(4139), 1, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, + STATE(3681), 1, aux_sym__literal_repeat1, - STATE(3902), 1, + STATE(3885), 1, sym_concatenation, - STATE(4052), 1, + STATE(4287), 1, sym_last_case_item, - ACTIONS(4135), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, + ACTIONS(4173), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1898), 2, + STATE(1951), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(3628), 9, + STATE(3634), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -128701,60 +131788,20 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [85009] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3857), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3855), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [85052] = 7, + [88237] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, + ACTIONS(4187), 1, anon_sym_DQUOTE, - STATE(2376), 1, + STATE(2467), 1, sym_string, - ACTIONS(1141), 2, + ACTIONS(1139), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(4121), 2, + ACTIONS(4189), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, + ACTIONS(4185), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -128764,7 +131811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 20, + ACTIONS(1137), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128772,7 +131819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -128785,103 +131831,368 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [85103] = 3, + [88287] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_DOLLAR, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1182), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4275), 1, + sym_last_case_item, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1951), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88369] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4303), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4305), 1, + anon_sym_DOLLAR, + ACTIONS(4308), 1, sym__special_character, + ACTIONS(4311), 1, anon_sym_DQUOTE, + ACTIONS(4314), 1, + aux_sym_number_token1, + ACTIONS(4317), 1, + aux_sym_number_token2, + ACTIONS(4320), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4323), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4326), 1, + anon_sym_BQUOTE, + ACTIONS(4329), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4335), 1, + sym_test_operator, + ACTIONS(4338), 1, + sym__brace_start, + STATE(2877), 1, + aux_sym__literal_repeat1, + ACTIONS(4298), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1912), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4295), 3, sym_raw_string, sym_ansi_c_string, + sym_word, + ACTIONS(4301), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2519), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88445] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, anon_sym_BQUOTE, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4053), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [85146] = 7, - ACTIONS(3), 1, + STATE(1951), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88527] = 23, + ACTIONS(63), 1, sym_comment, - ACTIONS(1145), 1, - sym_file_descriptor, - ACTIONS(4096), 1, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, anon_sym_DQUOTE, - STATE(2487), 1, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4038), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1951), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(4098), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4094), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88609] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4237), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 21, + ACTIONS(4239), 1, + sym__special_character, + ACTIONS(4241), 1, + anon_sym_DQUOTE, + ACTIONS(4243), 1, + aux_sym_number_token1, + ACTIONS(4245), 1, + aux_sym_number_token2, + ACTIONS(4247), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4249), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4251), 1, + anon_sym_BQUOTE, + ACTIONS(4253), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4257), 1, + sym_test_operator, + ACTIONS(4259), 1, + sym__brace_start, + ACTIONS(4343), 1, + aux_sym_heredoc_redirect_token1, + STATE(2877), 1, + aux_sym__literal_repeat1, + ACTIONS(4231), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4255), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1912), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4229), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(4341), 3, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_AMP, - [85197] = 7, + STATE(2519), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88685] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4044), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1951), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88767] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(4096), 1, + ACTIONS(4187), 1, anon_sym_DQUOTE, - STATE(2487), 1, + STATE(2467), 1, sym_string, - ACTIONS(4098), 2, + ACTIONS(1135), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4189), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4094), 9, + ACTIONS(4185), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -128891,7 +132202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 21, + ACTIONS(1127), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -128901,8 +132212,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128913,60 +132222,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_AMP, - [85248] = 5, + [88817] = 23, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4072), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1951), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88899] = 23, ACTIONS(63), 1, sym_comment, - ACTIONS(3873), 3, + ACTIONS(3592), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3624), 1, + sym_test_operator, + ACTIONS(3626), 1, + sym_extglob_pattern, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3681), 1, + aux_sym__literal_repeat1, + STATE(3885), 1, + sym_concatenation, + STATE(4081), 1, + sym_last_case_item, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4173), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1951), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3634), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4169), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4165), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4167), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [85295] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4131), 1, - anon_sym_QMARK, - ACTIONS(4173), 1, - anon_sym_RPAREN, - ACTIONS(4127), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4123), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -128974,17 +132374,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4125), 18, + [89022] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1789), 1, + anon_sym_DOLLAR, + ACTIONS(1795), 1, + aux_sym_number_token1, + ACTIONS(1797), 1, + aux_sym_number_token2, + ACTIONS(1801), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1815), 1, + sym__brace_start, + ACTIONS(4345), 1, + sym_word, + ACTIONS(4349), 1, + anon_sym_LPAREN, + ACTIONS(4351), 1, + sym__special_character, + ACTIONS(4353), 1, + anon_sym_DQUOTE, + ACTIONS(4357), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4361), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4365), 1, + sym__comment_word, + ACTIONS(4367), 1, + sym__empty_value, + ACTIONS(4369), 1, + sym_test_operator, + STATE(1197), 1, + aux_sym__literal_repeat1, + ACTIONS(4347), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4355), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4363), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1258), 2, + sym_concatenation, + sym_array, + STATE(886), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89101] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 1, + anon_sym_DQUOTE, + STATE(2741), 1, + sym_string, + ACTIONS(1135), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4373), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4371), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [89150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 32, + 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, @@ -128996,13 +132504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [85344] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1250), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -129010,12 +132511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1252), 22, + [89191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4375), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -129023,6 +132530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -129034,15 +132542,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [85387] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1254), 13, - anon_sym_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -129050,12 +132549,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1256), 22, + [89232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4375), 32, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -129063,2452 +132568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [85430] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3044), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3046), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85473] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3034), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3036), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85516] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2578), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3306), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3308), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(2592), 14, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85563] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3976), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3974), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [85606] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3873), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - ACTIONS(4169), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4165), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(4167), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [85653] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3243), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3245), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85696] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1266), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1268), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [85739] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4175), 1, - anon_sym_QMARK, - ACTIONS(3893), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3887), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3883), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3885), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - sym_test_operator, - [85788] = 7, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3359), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(3361), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3357), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3442), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(3364), 6, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3367), 14, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [85839] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3918), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3916), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [85882] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - STATE(2376), 1, - sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(4121), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85933] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3934), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3932), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [85976] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3847), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(3845), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [86019] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1262), 13, - anon_sym_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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1264), 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_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [86062] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(2947), 10, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2949), 25, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [86105] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4237), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86187] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4401), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86269] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4256), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86351] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4185), 1, - anon_sym_DOLLAR, - ACTIONS(4188), 1, - sym__special_character, - ACTIONS(4191), 1, - anon_sym_DQUOTE, - ACTIONS(4194), 1, - aux_sym_number_token1, - ACTIONS(4197), 1, - aux_sym_number_token2, - ACTIONS(4200), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4203), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4206), 1, - anon_sym_BQUOTE, - ACTIONS(4209), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4215), 1, - sym_test_operator, - ACTIONS(4218), 1, - sym__brace_start, - STATE(2757), 1, - aux_sym__literal_repeat1, - ACTIONS(4180), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1877), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4177), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4183), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - 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, - [86425] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4260), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86507] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(4229), 1, - sym__special_character, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4233), 1, - aux_sym_number_token1, - ACTIONS(4235), 1, - aux_sym_number_token2, - ACTIONS(4237), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4239), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4241), 1, - anon_sym_BQUOTE, - ACTIONS(4243), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4247), 1, - sym_test_operator, - ACTIONS(4249), 1, - sym__brace_start, - STATE(2757), 1, - aux_sym__literal_repeat1, - ACTIONS(4223), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4245), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1877), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4221), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4225), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - 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, - [86581] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(4229), 1, - sym__special_character, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4233), 1, - aux_sym_number_token1, - ACTIONS(4235), 1, - aux_sym_number_token2, - ACTIONS(4237), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4239), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4241), 1, - anon_sym_BQUOTE, - ACTIONS(4243), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4247), 1, - sym_test_operator, - ACTIONS(4249), 1, - sym__brace_start, - STATE(2757), 1, - aux_sym__literal_repeat1, - ACTIONS(4223), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4245), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1877), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4221), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4251), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - 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, - [86655] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(4229), 1, - sym__special_character, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - ACTIONS(4233), 1, - aux_sym_number_token1, - ACTIONS(4235), 1, - aux_sym_number_token2, - ACTIONS(4237), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4239), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4241), 1, - anon_sym_BQUOTE, - ACTIONS(4243), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4247), 1, - sym_test_operator, - ACTIONS(4249), 1, - sym__brace_start, - STATE(2757), 1, - aux_sym__literal_repeat1, - ACTIONS(4223), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4245), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1877), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4221), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(4253), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - 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, - [86729] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4314), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86811] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4236), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86893] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_SLASH, - ACTIONS(4259), 1, - anon_sym_PERCENT, - ACTIONS(4261), 1, - anon_sym_COLON, - ACTIONS(4265), 1, - anon_sym_RBRACE3, - ACTIONS(4267), 1, - anon_sym_AT, - ACTIONS(4269), 1, - anon_sym_STAR2, - STATE(3685), 1, - aux_sym__expansion_body_repeat1, - STATE(4059), 1, - sym__expansion_regex, - STATE(4136), 1, - sym__expansion_operator, - STATE(4137), 1, - sym__expansion_max_length, - STATE(4138), 1, - sym__expansion_regex_removal, - STATE(4139), 1, - sym__expansion_regex_replacement, - STATE(4143), 1, - sym__expansion_expression, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(4275), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(4263), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(4273), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(4271), 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, - [86969] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87019] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [87069] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87119] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - STATE(2376), 1, - sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(4121), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87169] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1145), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87219] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4233), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87301] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87351] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4335), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87433] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4329), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87515] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - STATE(2376), 1, - sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(4121), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87565] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1145), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [87615] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4320), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87697] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4319), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87779] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4087), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87861] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4315), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87943] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4411), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88025] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4052), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4287), 1, - anon_sym_EQ, - ACTIONS(4289), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4285), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [88151] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4232), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88233] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4168), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88315] = 23, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3617), 1, - sym_word, - ACTIONS(3623), 1, - anon_sym_LPAREN, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, - aux_sym_number_token1, - ACTIONS(3635), 1, - aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3649), 1, - sym_extglob_pattern, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, - anon_sym_BQUOTE, - ACTIONS(4149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4153), 1, - sym_test_operator, - STATE(3672), 1, - aux_sym__literal_repeat1, - STATE(3902), 1, - sym_concatenation, - STATE(4034), 1, - sym_last_case_item, - ACTIONS(4135), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4143), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3628), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1198), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1196), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [88438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4293), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4291), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(4295), 27, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - [88483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4301), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4299), 32, - 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_STAR_STAR_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, @@ -131531,203 +132591,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [88524] = 22, + [89273] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4303), 1, + ACTIONS(4379), 1, sym_word, - ACTIONS(4307), 1, + ACTIONS(4383), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4385), 1, anon_sym_DOLLAR, - ACTIONS(4311), 1, + ACTIONS(4387), 1, sym__special_character, - ACTIONS(4313), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4331), 1, + ACTIONS(4407), 1, sym__comment_word, - ACTIONS(4333), 1, - sym_test_operator, - ACTIONS(4335), 1, + ACTIONS(4409), 1, sym__empty_value, - ACTIONS(4337), 1, - sym__brace_start, - STATE(2404), 1, - aux_sym__literal_repeat1, - ACTIONS(4305), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4315), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2622), 2, - sym_concatenation, - sym_array, - STATE(2953), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88603] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_SLASH, - ACTIONS(4259), 1, - anon_sym_PERCENT, - ACTIONS(4261), 1, - anon_sym_COLON, - ACTIONS(4265), 1, - anon_sym_RBRACE3, - ACTIONS(4339), 1, - anon_sym_AT, - STATE(3687), 1, - aux_sym__expansion_body_repeat1, - STATE(4125), 1, - sym__expansion_operator, - STATE(4126), 1, - sym__expansion_max_length, - STATE(4127), 1, - sym__expansion_regex_removal, - STATE(4130), 1, - sym__expansion_regex_replacement, - STATE(4131), 1, - sym__expansion_regex, - STATE(4132), 1, - sym__expansion_expression, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(4275), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(4263), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(4273), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(4271), 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, - [88676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [88717] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1383), 1, - anon_sym_DOLLAR, - ACTIONS(1389), 1, - aux_sym_number_token1, - ACTIONS(1391), 1, - aux_sym_number_token2, - ACTIONS(1395), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1411), 1, - sym__brace_start, - ACTIONS(4341), 1, - sym_word, - ACTIONS(4345), 1, - anon_sym_LPAREN, - ACTIONS(4347), 1, - sym__special_character, - ACTIONS(4349), 1, - anon_sym_DQUOTE, - ACTIONS(4353), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4355), 1, - anon_sym_BQUOTE, - ACTIONS(4357), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4361), 1, - sym__comment_word, - ACTIONS(4363), 1, + ACTIONS(4411), 1, sym_test_operator, - ACTIONS(4365), 1, - sym__empty_value, - STATE(826), 1, + ACTIONS(4413), 1, + sym__brace_start, + STATE(2448), 1, aux_sym__literal_repeat1, - ACTIONS(4343), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4351), 2, + ACTIONS(4391), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4359), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1049), 2, + STATE(2758), 2, sym_concatenation, sym_array, - STATE(652), 9, + STATE(2590), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -131737,203 +132648,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [88796] = 22, + [89352] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 1, - sym_word, - ACTIONS(4371), 1, - anon_sym_LPAREN, - ACTIONS(4373), 1, + ACTIONS(1469), 1, anon_sym_DOLLAR, - ACTIONS(4375), 1, - sym__special_character, - ACTIONS(4377), 1, - anon_sym_DQUOTE, - ACTIONS(4381), 1, + ACTIONS(1475), 1, aux_sym_number_token1, - ACTIONS(4383), 1, + ACTIONS(1477), 1, aux_sym_number_token2, - ACTIONS(4385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4387), 1, + ACTIONS(1481), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4389), 1, - anon_sym_BQUOTE, - ACTIONS(4391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4395), 1, - sym__comment_word, - ACTIONS(4397), 1, - sym_test_operator, - ACTIONS(4399), 1, - sym__empty_value, - ACTIONS(4401), 1, + ACTIONS(1495), 1, sym__brace_start, - STATE(1799), 1, - aux_sym__literal_repeat1, - ACTIONS(4369), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4379), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1873), 2, - sym_concatenation, - sym_array, - STATE(1584), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88875] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_SLASH, - ACTIONS(4259), 1, - anon_sym_PERCENT, - ACTIONS(4261), 1, - anon_sym_COLON, - ACTIONS(4339), 1, - anon_sym_AT, - ACTIONS(4403), 1, - anon_sym_RBRACE3, - STATE(3681), 1, - aux_sym__expansion_body_repeat1, - STATE(4145), 1, - sym__expansion_operator, - STATE(4148), 1, - sym__expansion_max_length, - STATE(4149), 1, - sym__expansion_regex_removal, - STATE(4150), 1, - sym__expansion_regex_replacement, - STATE(4151), 1, - sym__expansion_regex, - STATE(4154), 1, - sym__expansion_expression, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(4275), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(4263), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(4273), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(4271), 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, - [88948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4405), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [88989] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 1, + ACTIONS(4415), 1, sym_word, - ACTIONS(4413), 1, + ACTIONS(4419), 1, anon_sym_LPAREN, - ACTIONS(4415), 1, - anon_sym_DOLLAR, - ACTIONS(4417), 1, + ACTIONS(4421), 1, sym__special_character, - ACTIONS(4419), 1, - anon_sym_DQUOTE, ACTIONS(4423), 1, - aux_sym_number_token1, - ACTIONS(4425), 1, - aux_sym_number_token2, + anon_sym_DQUOTE, ACTIONS(4427), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(4429), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4431), 1, anon_sym_BQUOTE, - ACTIONS(4433), 1, + ACTIONS(4431), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4437), 1, + ACTIONS(4435), 1, sym__comment_word, + ACTIONS(4437), 1, + sym__empty_value, ACTIONS(4439), 1, sym_test_operator, - ACTIONS(4441), 1, - sym__empty_value, - ACTIONS(4443), 1, - sym__brace_start, - STATE(3111), 1, + STATE(1030), 1, aux_sym__literal_repeat1, - ACTIONS(4411), 2, + ACTIONS(4417), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4421), 2, + ACTIONS(4425), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4435), 2, + ACTIONS(4433), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3158), 2, + STATE(1189), 2, sym_concatenation, sym_array, - STATE(2964), 9, + STATE(698), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -131943,54 +132705,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89068] = 3, + [89431] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4447), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4445), 32, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(4443), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [89109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4445), 32, + ACTIONS(4441), 3, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP, + ACTIONS(4445), 27, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132018,8 +132745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [89150] = 22, + [89476] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(4449), 1, @@ -132047,12 +132773,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4477), 1, sym__comment_word, ACTIONS(4479), 1, - sym_test_operator, - ACTIONS(4481), 1, sym__empty_value, + ACTIONS(4481), 1, + sym_test_operator, ACTIONS(4483), 1, sym__brace_start, - STATE(1257), 1, + STATE(2446), 1, aux_sym__literal_repeat1, ACTIONS(4451), 2, anon_sym_LPAREN_LPAREN, @@ -132063,10 +132789,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1329), 2, + STATE(2707), 2, sym_concatenation, sym_array, - STATE(1502), 9, + STATE(2472), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132076,149 +132802,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4445), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [89270] = 22, + [89555] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, - anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(4321), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, - anon_sym_BQUOTE, - ACTIONS(4327), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4331), 1, - sym__comment_word, - ACTIONS(4335), 1, - sym__empty_value, - ACTIONS(4337), 1, + ACTIONS(1729), 1, sym__brace_start, ACTIONS(4485), 1, sym_word, - ACTIONS(4487), 1, - sym__special_character, - ACTIONS(4491), 1, - sym_test_operator, - STATE(2404), 1, - aux_sym__literal_repeat1, - ACTIONS(4305), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4489), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2622), 2, - sym_concatenation, - sym_array, - STATE(2536), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89349] = 22, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4493), 1, - sym_word, - ACTIONS(4499), 1, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(4502), 1, - anon_sym_DOLLAR, - ACTIONS(4505), 1, + ACTIONS(4491), 1, sym__special_character, - ACTIONS(4508), 1, + ACTIONS(4493), 1, anon_sym_DQUOTE, - ACTIONS(4514), 1, - aux_sym_number_token1, - ACTIONS(4517), 1, - aux_sym_number_token2, - ACTIONS(4520), 1, + ACTIONS(4497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4523), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4526), 1, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(4529), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4535), 1, + ACTIONS(4505), 1, + sym__comment_word, + ACTIONS(4507), 1, + sym__empty_value, + ACTIONS(4509), 1, sym_test_operator, - ACTIONS(4538), 1, - sym_extglob_pattern, - ACTIONS(4541), 1, - sym__brace_start, - STATE(3666), 1, + STATE(1075), 1, aux_sym__literal_repeat1, - STATE(3891), 1, - sym_concatenation, - ACTIONS(4496), 2, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4511), 2, + ACTIONS(4495), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4532), 2, + ACTIONS(4503), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1922), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3632), 9, + STATE(1267), 2, + sym_concatenation, + sym_array, + STATE(1027), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132228,12 +132859,12 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89428] = 3, + [89634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4546), 1, + ACTIONS(1233), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4544), 32, + ACTIONS(1231), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -132266,12 +132897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [89469] = 3, + [89675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 1, + ACTIONS(1229), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 32, + ACTIONS(1227), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -132304,54 +132935,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [89510] = 22, + [89716] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, + ACTIONS(4383), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4385), 1, anon_sym_DOLLAR, - ACTIONS(4313), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4331), 1, + ACTIONS(4407), 1, sym__comment_word, - ACTIONS(4335), 1, + ACTIONS(4409), 1, sym__empty_value, - ACTIONS(4337), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(4548), 1, + ACTIONS(4511), 1, sym_word, - ACTIONS(4550), 1, + ACTIONS(4513), 1, sym__special_character, - ACTIONS(4554), 1, + ACTIONS(4517), 1, sym_test_operator, - STATE(2404), 1, + STATE(2448), 1, aux_sym__literal_repeat1, - ACTIONS(4305), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4552), 2, + ACTIONS(4515), 2, sym_raw_string, sym_ansi_c_string, - STATE(2622), 2, + STATE(2758), 2, sym_concatenation, sym_array, - STATE(2511), 9, + STATE(2525), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132361,96 +132992,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89589] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89638] = 22, + [89795] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(4383), 1, anon_sym_LPAREN, - ACTIONS(4455), 1, + ACTIONS(4385), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4477), 1, + ACTIONS(4407), 1, sym__comment_word, - ACTIONS(4481), 1, + ACTIONS(4409), 1, sym__empty_value, - ACTIONS(4483), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(4556), 1, + ACTIONS(4519), 1, sym_word, - ACTIONS(4558), 1, + ACTIONS(4521), 1, sym__special_character, - ACTIONS(4562), 1, + ACTIONS(4525), 1, sym_test_operator, - STATE(1257), 1, + STATE(2448), 1, aux_sym__literal_repeat1, - ACTIONS(4451), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4560), 2, + ACTIONS(4523), 2, sym_raw_string, sym_ansi_c_string, - STATE(1329), 2, + STATE(2758), 2, sym_concatenation, sym_array, - STATE(1011), 9, + STATE(2719), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132460,174 +133049,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [89717] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1145), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [89766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1214), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1212), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [89807] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1145), 1, - sym__brace_start, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - STATE(2748), 1, - sym_string, - ACTIONS(4566), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4564), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [89856] = 19, + [89874] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4273), 1, anon_sym_SLASH, - ACTIONS(4259), 1, + ACTIONS(4275), 1, anon_sym_PERCENT, - ACTIONS(4261), 1, + ACTIONS(4277), 1, anon_sym_COLON, - ACTIONS(4339), 1, - anon_sym_AT, - ACTIONS(4568), 1, + ACTIONS(4527), 1, anon_sym_RBRACE3, - STATE(3642), 1, + ACTIONS(4529), 1, + anon_sym_AT, + STATE(3687), 1, aux_sym__expansion_body_repeat1, - STATE(4277), 1, + STATE(4185), 1, sym__expansion_operator, - STATE(4278), 1, + STATE(4186), 1, sym__expansion_max_length, - STATE(4279), 1, + STATE(4187), 1, sym__expansion_regex_removal, - STATE(4280), 1, + STATE(4188), 1, sym__expansion_regex_replacement, - STATE(4281), 1, + STATE(4189), 1, sym__expansion_regex, - STATE(4282), 1, + STATE(4191), 1, sym__expansion_expression, - ACTIONS(4255), 2, + ACTIONS(4271), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(4275), 2, + ACTIONS(4291), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(4263), 3, + ACTIONS(4279), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(4273), 3, + ACTIONS(4289), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(4271), 8, + ACTIONS(4287), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -132636,19 +133103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [89929] = 5, + [89947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(1225), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4293), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4570), 3, + ACTIONS(1223), 32, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(4295), 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132676,54 +133140,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - [89974] = 22, + anon_sym_AMP, + [89988] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 1, + anon_sym_SLASH, + ACTIONS(4275), 1, + anon_sym_PERCENT, + ACTIONS(4277), 1, + anon_sym_COLON, + ACTIONS(4281), 1, + anon_sym_RBRACE3, + ACTIONS(4529), 1, + anon_sym_AT, + STATE(3691), 1, + aux_sym__expansion_body_repeat1, + STATE(4168), 1, + sym__expansion_operator, + STATE(4169), 1, + sym__expansion_max_length, + STATE(4170), 1, + sym__expansion_regex_removal, + STATE(4171), 1, + sym__expansion_regex_replacement, + STATE(4173), 1, + sym__expansion_regex, + STATE(4174), 1, + sym__expansion_expression, + ACTIONS(4271), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(4291), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(4279), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(4289), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(4287), 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, + [90061] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4531), 1, sym_word, - ACTIONS(4578), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4580), 1, + ACTIONS(4537), 1, anon_sym_DOLLAR, - ACTIONS(4582), 1, + ACTIONS(4539), 1, sym__special_character, - ACTIONS(4584), 1, + ACTIONS(4541), 1, anon_sym_DQUOTE, - ACTIONS(4588), 1, + ACTIONS(4545), 1, aux_sym_number_token1, - ACTIONS(4590), 1, + ACTIONS(4547), 1, aux_sym_number_token2, - ACTIONS(4592), 1, + ACTIONS(4549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4594), 1, + ACTIONS(4551), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4596), 1, + ACTIONS(4553), 1, anon_sym_BQUOTE, - ACTIONS(4598), 1, + ACTIONS(4555), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4602), 1, + ACTIONS(4559), 1, sym__comment_word, - ACTIONS(4604), 1, - sym_test_operator, - ACTIONS(4606), 1, + ACTIONS(4561), 1, sym__empty_value, - ACTIONS(4608), 1, + ACTIONS(4563), 1, + sym_test_operator, + ACTIONS(4565), 1, sym__brace_start, - STATE(1022), 1, + STATE(1233), 1, aux_sym__literal_repeat1, - ACTIONS(4576), 2, + ACTIONS(4533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4586), 2, + ACTIONS(4543), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4600), 2, + ACTIONS(4557), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1090), 2, + STATE(1255), 2, sym_concatenation, sym_array, - STATE(752), 9, + STATE(914), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132733,134 +133252,111 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90053] = 7, + [90140] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - sym__brace_start, - ACTIONS(4231), 1, - anon_sym_DQUOTE, - STATE(2748), 1, - sym_string, - ACTIONS(4566), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4564), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(1703), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1709), 1, aux_sym_number_token1, + ACTIONS(1711), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1729), 1, + sym__brace_start, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4493), 1, + anon_sym_DQUOTE, + ACTIONS(4497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4499), 1, anon_sym_BQUOTE, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4505), 1, + sym__comment_word, + ACTIONS(4507), 1, + sym__empty_value, + ACTIONS(4567), 1, sym_word, + ACTIONS(4569), 1, + sym__special_character, + ACTIONS(4573), 1, sym_test_operator, - [90102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1262), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [90143] = 22, + STATE(1075), 1, + aux_sym__literal_repeat1, + ACTIONS(4487), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4503), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4571), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1267), 2, + sym_concatenation, + sym_array, + STATE(1313), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90219] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, + ACTIONS(4575), 1, + sym_word, + ACTIONS(4579), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, anon_sym_DOLLAR, - ACTIONS(2463), 1, + ACTIONS(4583), 1, sym__special_character, - ACTIONS(2465), 1, + ACTIONS(4585), 1, anon_sym_DQUOTE, - ACTIONS(2469), 1, + ACTIONS(4589), 1, aux_sym_number_token1, - ACTIONS(2471), 1, + ACTIONS(4591), 1, aux_sym_number_token2, - ACTIONS(2473), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2475), 1, + ACTIONS(4595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2477), 1, + ACTIONS(4597), 1, anon_sym_BQUOTE, - ACTIONS(2479), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2489), 1, - sym__brace_start, - ACTIONS(4610), 1, - sym_word, - ACTIONS(4612), 1, - anon_sym_LPAREN, - ACTIONS(4616), 1, + ACTIONS(4603), 1, sym__comment_word, - ACTIONS(4618), 1, - sym_test_operator, - ACTIONS(4620), 1, + ACTIONS(4605), 1, sym__empty_value, - STATE(1666), 1, + ACTIONS(4607), 1, + sym_test_operator, + ACTIONS(4609), 1, + sym__brace_start, + STATE(2127), 1, aux_sym__literal_repeat1, - ACTIONS(2459), 2, + ACTIONS(4577), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2481), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4614), 2, + ACTIONS(4587), 2, sym_raw_string, sym_ansi_c_string, - STATE(1800), 2, + ACTIONS(4601), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2388), 2, sym_concatenation, sym_array, - STATE(1480), 9, + STATE(1997), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132870,92 +133366,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4624), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4622), 32, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_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_LT, - anon_sym_GT, - anon_sym_AMP, - [90263] = 22, + [90298] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - sym_word, - ACTIONS(4630), 1, + ACTIONS(4383), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, + ACTIONS(4385), 1, anon_sym_DOLLAR, - ACTIONS(4634), 1, - sym__special_character, - ACTIONS(4636), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4640), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4642), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4644), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4646), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4648), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4650), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4654), 1, + ACTIONS(4407), 1, sym__comment_word, - ACTIONS(4656), 1, - sym_test_operator, - ACTIONS(4658), 1, + ACTIONS(4409), 1, sym__empty_value, - ACTIONS(4660), 1, + ACTIONS(4413), 1, sym__brace_start, - STATE(2134), 1, + ACTIONS(4611), 1, + sym_word, + ACTIONS(4613), 1, + sym__special_character, + ACTIONS(4617), 1, + sym_test_operator, + STATE(2448), 1, aux_sym__literal_repeat1, - ACTIONS(4628), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4638), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4652), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2339), 2, + ACTIONS(4615), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2758), 2, sym_concatenation, sym_array, - STATE(2022), 9, + STATE(2661), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -132965,54 +133423,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90342] = 22, + [90377] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(4619), 1, sym_word, - ACTIONS(4666), 1, + ACTIONS(4623), 1, anon_sym_LPAREN, - ACTIONS(4668), 1, + ACTIONS(4625), 1, anon_sym_DOLLAR, - ACTIONS(4670), 1, + ACTIONS(4627), 1, sym__special_character, - ACTIONS(4672), 1, + ACTIONS(4629), 1, anon_sym_DQUOTE, - ACTIONS(4676), 1, + ACTIONS(4633), 1, aux_sym_number_token1, - ACTIONS(4678), 1, + ACTIONS(4635), 1, aux_sym_number_token2, - ACTIONS(4680), 1, + ACTIONS(4637), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(4641), 1, anon_sym_BQUOTE, - ACTIONS(4686), 1, + ACTIONS(4643), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4690), 1, + ACTIONS(4647), 1, sym__comment_word, - ACTIONS(4692), 1, - sym_test_operator, - ACTIONS(4694), 1, + ACTIONS(4649), 1, sym__empty_value, - ACTIONS(4696), 1, + ACTIONS(4651), 1, + sym_test_operator, + ACTIONS(4653), 1, sym__brace_start, - STATE(1264), 1, + STATE(3114), 1, aux_sym__literal_repeat1, - ACTIONS(4664), 2, + ACTIONS(4621), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4674), 2, + ACTIONS(4631), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4688), 2, + ACTIONS(4645), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1326), 2, + STATE(3176), 2, sym_concatenation, sym_array, - STATE(982), 9, + STATE(2992), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133022,54 +133480,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90421] = 22, + [90456] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4655), 1, sym_word, - ACTIONS(4702), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4704), 1, + ACTIONS(4661), 1, anon_sym_DOLLAR, - ACTIONS(4706), 1, + ACTIONS(4663), 1, sym__special_character, - ACTIONS(4708), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(4714), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(4716), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4718), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4720), 1, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(4722), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4726), 1, + ACTIONS(4683), 1, sym__comment_word, - ACTIONS(4728), 1, - sym_test_operator, - ACTIONS(4730), 1, + ACTIONS(4685), 1, sym__empty_value, - ACTIONS(4732), 1, + ACTIONS(4687), 1, + sym_test_operator, + ACTIONS(4689), 1, sym__brace_start, - STATE(2390), 1, + STATE(1289), 1, aux_sym__literal_repeat1, - ACTIONS(4700), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4710), 2, + ACTIONS(4667), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4724), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2729), 2, + STATE(1403), 2, sym_concatenation, sym_array, - STATE(2358), 9, + STATE(1209), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133079,12 +133537,12 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90500] = 3, + [90535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(4693), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 32, + ACTIONS(4691), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -133117,12 +133575,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [90541] = 3, + [90576] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4453), 1, + anon_sym_LPAREN, + ACTIONS(4455), 1, + anon_sym_DOLLAR, + ACTIONS(4459), 1, + anon_sym_DQUOTE, + ACTIONS(4463), 1, + aux_sym_number_token1, + ACTIONS(4465), 1, + aux_sym_number_token2, + ACTIONS(4467), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4469), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4471), 1, + anon_sym_BQUOTE, + ACTIONS(4473), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4477), 1, + sym__comment_word, + ACTIONS(4479), 1, + sym__empty_value, + ACTIONS(4483), 1, + sym__brace_start, + ACTIONS(4695), 1, + sym_word, + ACTIONS(4697), 1, + sym__special_character, + ACTIONS(4701), 1, + sym_test_operator, + STATE(2446), 1, + aux_sym__literal_repeat1, + ACTIONS(4451), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4475), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4699), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2707), 2, + sym_concatenation, + sym_array, + STATE(2424), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90655] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4241), 1, + anon_sym_DQUOTE, + STATE(2741), 1, + sym_string, + ACTIONS(1139), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4373), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4371), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [90704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 1, + ACTIONS(1261), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1246), 32, + ACTIONS(1259), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -133155,54 +133712,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [90582] = 22, + [90745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1599), 1, - aux_sym_number_token1, - ACTIONS(1601), 1, - aux_sym_number_token2, - ACTIONS(1605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, - sym__brace_start, - ACTIONS(4734), 1, - sym_word, - ACTIONS(4738), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [90794] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 1, anon_sym_LPAREN, - ACTIONS(4740), 1, - sym__special_character, - ACTIONS(4742), 1, + ACTIONS(4385), 1, + anon_sym_DOLLAR, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(4393), 1, + aux_sym_number_token1, + ACTIONS(4395), 1, + aux_sym_number_token2, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(4399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4754), 1, + ACTIONS(4407), 1, sym__comment_word, - ACTIONS(4756), 1, - sym_test_operator, - ACTIONS(4758), 1, + ACTIONS(4409), 1, sym__empty_value, - STATE(1207), 1, + ACTIONS(4413), 1, + sym__brace_start, + ACTIONS(4703), 1, + sym_word, + ACTIONS(4705), 1, + sym__special_character, + ACTIONS(4709), 1, + sym_test_operator, + STATE(2448), 1, aux_sym__literal_repeat1, - ACTIONS(4736), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4744), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4752), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1259), 2, + ACTIONS(4707), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2758), 2, sym_concatenation, sym_array, - STATE(1319), 9, + STATE(2952), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133212,54 +133811,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90661] = 22, + [90873] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(1703), 1, anon_sym_DOLLAR, - ACTIONS(1747), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(1749), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(1753), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1767), 1, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(4760), 1, - sym_word, - ACTIONS(4764), 1, + ACTIONS(4489), 1, anon_sym_LPAREN, - ACTIONS(4766), 1, - sym__special_character, - ACTIONS(4768), 1, + ACTIONS(4493), 1, anon_sym_DQUOTE, - ACTIONS(4772), 1, + ACTIONS(4497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(4776), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4780), 1, + ACTIONS(4505), 1, sym__comment_word, - ACTIONS(4782), 1, - sym_test_operator, - ACTIONS(4784), 1, + ACTIONS(4507), 1, sym__empty_value, - STATE(1188), 1, + ACTIONS(4711), 1, + sym_word, + ACTIONS(4713), 1, + sym__special_character, + ACTIONS(4717), 1, + sym_test_operator, + STATE(1075), 1, aux_sym__literal_repeat1, - ACTIONS(4762), 2, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4770), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4778), 2, + ACTIONS(4503), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1260), 2, + ACTIONS(4715), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1267), 2, sym_concatenation, sym_array, - STATE(869), 9, + STATE(825), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133269,54 +133868,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90740] = 22, - ACTIONS(3), 1, + [90952] = 22, + ACTIONS(63), 1, sym_comment, - ACTIONS(1499), 1, - anon_sym_DOLLAR, - ACTIONS(1505), 1, - aux_sym_number_token1, - ACTIONS(1507), 1, - aux_sym_number_token2, - ACTIONS(1511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1525), 1, - sym__brace_start, - ACTIONS(4786), 1, + ACTIONS(4719), 1, sym_word, - ACTIONS(4790), 1, + ACTIONS(4725), 1, anon_sym_LPAREN, - ACTIONS(4792), 1, + ACTIONS(4728), 1, + anon_sym_DOLLAR, + ACTIONS(4731), 1, sym__special_character, - ACTIONS(4794), 1, + ACTIONS(4734), 1, anon_sym_DQUOTE, - ACTIONS(4798), 1, + ACTIONS(4740), 1, + aux_sym_number_token1, + ACTIONS(4743), 1, + aux_sym_number_token2, + ACTIONS(4746), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4800), 1, + ACTIONS(4749), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4752), 1, anon_sym_BQUOTE, - ACTIONS(4802), 1, + ACTIONS(4755), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4806), 1, - sym__comment_word, - ACTIONS(4808), 1, + ACTIONS(4761), 1, sym_test_operator, - ACTIONS(4810), 1, - sym__empty_value, - STATE(938), 1, + ACTIONS(4764), 1, + sym_extglob_pattern, + ACTIONS(4767), 1, + sym__brace_start, + STATE(3715), 1, aux_sym__literal_repeat1, - ACTIONS(4788), 2, + STATE(3817), 1, + sym_concatenation, + ACTIONS(4722), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4796), 2, + ACTIONS(4737), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4804), 2, + ACTIONS(4758), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1150), 2, - sym_concatenation, - sym_array, - STATE(687), 9, + STATE(1951), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3649), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133326,54 +133925,96 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90819] = 22, + [91031] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, - anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(1139), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [91080] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2461), 1, anon_sym_DOLLAR, - ACTIONS(4313), 1, + ACTIONS(2463), 1, + sym__special_character, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(2469), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(2471), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(2473), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(2475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(2477), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(2479), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4331), 1, - sym__comment_word, - ACTIONS(4335), 1, - sym__empty_value, - ACTIONS(4337), 1, + ACTIONS(2489), 1, sym__brace_start, - ACTIONS(4812), 1, + ACTIONS(4770), 1, sym_word, - ACTIONS(4814), 1, - sym__special_character, - ACTIONS(4818), 1, + ACTIONS(4772), 1, + anon_sym_LPAREN, + ACTIONS(4776), 1, + sym__comment_word, + ACTIONS(4778), 1, + sym__empty_value, + ACTIONS(4780), 1, sym_test_operator, - STATE(2404), 1, + STATE(1707), 1, aux_sym__literal_repeat1, - ACTIONS(4305), 2, + ACTIONS(2459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(2481), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4816), 2, + ACTIONS(4774), 2, sym_raw_string, sym_ansi_c_string, - STATE(2622), 2, + STATE(1765), 2, sym_concatenation, sym_array, - STATE(2631), 9, + STATE(1492), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133383,12 +134024,12 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [90898] = 3, + [91159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1245), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 32, + ACTIONS(1243), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -133421,12 +134062,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [90939] = 3, + [91200] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1327), 1, + anon_sym_DOLLAR, + ACTIONS(1333), 1, + aux_sym_number_token1, + ACTIONS(1335), 1, + aux_sym_number_token2, + ACTIONS(1339), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1353), 1, + sym__brace_start, + ACTIONS(4782), 1, + sym_word, + ACTIONS(4786), 1, + anon_sym_LPAREN, + ACTIONS(4788), 1, + sym__special_character, + ACTIONS(4790), 1, + anon_sym_DQUOTE, + ACTIONS(4794), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4796), 1, + anon_sym_BQUOTE, + ACTIONS(4798), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4802), 1, + sym__comment_word, + ACTIONS(4804), 1, + sym__empty_value, + ACTIONS(4806), 1, + sym_test_operator, + STATE(849), 1, + aux_sym__literal_repeat1, + ACTIONS(4784), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4792), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4800), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(969), 2, + sym_concatenation, + sym_array, + STATE(661), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91279] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 1, + anon_sym_SLASH, + ACTIONS(4275), 1, + anon_sym_PERCENT, + ACTIONS(4277), 1, + anon_sym_COLON, + ACTIONS(4529), 1, + anon_sym_AT, + ACTIONS(4808), 1, + anon_sym_RBRACE3, + STATE(3655), 1, + aux_sym__expansion_body_repeat1, + STATE(4207), 1, + sym__expansion_regex, + STATE(4267), 1, + sym__expansion_operator, + STATE(4270), 1, + sym__expansion_max_length, + STATE(4271), 1, + sym__expansion_regex_removal, + STATE(4274), 1, + sym__expansion_regex_replacement, + STATE(4278), 1, + sym__expansion_expression, + ACTIONS(4271), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(4291), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(4279), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(4289), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(4287), 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, + [91352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(1207), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 32, + ACTIONS(1205), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -133459,52 +134211,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [90980] = 19, + [91393] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4273), 1, anon_sym_SLASH, - ACTIONS(4259), 1, + ACTIONS(4275), 1, anon_sym_PERCENT, - ACTIONS(4261), 1, + ACTIONS(4277), 1, anon_sym_COLON, - ACTIONS(4339), 1, + ACTIONS(4529), 1, anon_sym_AT, - ACTIONS(4820), 1, + ACTIONS(4810), 1, anon_sym_RBRACE3, - STATE(3648), 1, + STATE(3664), 1, aux_sym__expansion_body_repeat1, - STATE(4187), 1, - sym__expansion_regex, - STATE(4247), 1, + STATE(4297), 1, sym__expansion_operator, - STATE(4250), 1, + STATE(4298), 1, sym__expansion_max_length, - STATE(4251), 1, + STATE(4299), 1, sym__expansion_regex_removal, - STATE(4254), 1, + STATE(4300), 1, sym__expansion_regex_replacement, - STATE(4258), 1, + STATE(4301), 1, + sym__expansion_regex, + STATE(4302), 1, sym__expansion_expression, - ACTIONS(4255), 2, + ACTIONS(4271), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(4275), 2, + ACTIONS(4291), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(4263), 3, + ACTIONS(4279), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(4273), 3, + ACTIONS(4289), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(4271), 8, + ACTIONS(4287), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -133513,111 +134265,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [91053] = 22, + [91466] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, + ACTIONS(4659), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4661), 1, anon_sym_DOLLAR, - ACTIONS(4313), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4331), 1, + ACTIONS(4683), 1, sym__comment_word, - ACTIONS(4335), 1, + ACTIONS(4685), 1, sym__empty_value, - ACTIONS(4337), 1, - sym__brace_start, - ACTIONS(4822), 1, - sym_word, - ACTIONS(4824), 1, - sym__special_character, - ACTIONS(4828), 1, - sym_test_operator, - STATE(2404), 1, - aux_sym__literal_repeat1, - ACTIONS(4305), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4826), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2622), 2, - sym_concatenation, - sym_array, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91132] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1593), 1, - anon_sym_DOLLAR, - ACTIONS(1599), 1, - aux_sym_number_token1, - ACTIONS(1601), 1, - aux_sym_number_token2, - ACTIONS(1605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, + ACTIONS(4689), 1, sym__brace_start, - ACTIONS(4738), 1, - anon_sym_LPAREN, - ACTIONS(4742), 1, - anon_sym_DQUOTE, - ACTIONS(4746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, - anon_sym_BQUOTE, - ACTIONS(4750), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4754), 1, - sym__comment_word, - ACTIONS(4758), 1, - sym__empty_value, - ACTIONS(4830), 1, + ACTIONS(4812), 1, sym_word, - ACTIONS(4832), 1, + ACTIONS(4814), 1, sym__special_character, - ACTIONS(4836), 1, + ACTIONS(4818), 1, sym_test_operator, - STATE(1207), 1, + STATE(1289), 1, aux_sym__literal_repeat1, - ACTIONS(4736), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4834), 2, + ACTIONS(4816), 2, sym_raw_string, sym_ansi_c_string, - STATE(1259), 2, + STATE(1403), 2, sym_concatenation, sym_array, - STATE(989), 9, + STATE(1057), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133627,54 +134322,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91211] = 22, + [91545] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4820), 1, sym_word, - ACTIONS(4842), 1, + ACTIONS(4824), 1, anon_sym_LPAREN, - ACTIONS(4844), 1, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(4846), 1, + ACTIONS(4828), 1, sym__special_character, - ACTIONS(4848), 1, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(4834), 1, aux_sym_number_token1, - ACTIONS(4854), 1, + ACTIONS(4836), 1, aux_sym_number_token2, - ACTIONS(4856), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4858), 1, + ACTIONS(4840), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4842), 1, anon_sym_BQUOTE, - ACTIONS(4862), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4866), 1, + ACTIONS(4848), 1, sym__comment_word, - ACTIONS(4868), 1, - sym_test_operator, - ACTIONS(4870), 1, + ACTIONS(4850), 1, sym__empty_value, - ACTIONS(4872), 1, + ACTIONS(4852), 1, + sym_test_operator, + ACTIONS(4854), 1, sym__brace_start, - STATE(1107), 1, + STATE(1815), 1, aux_sym__literal_repeat1, - ACTIONS(4840), 2, + ACTIONS(4822), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4850), 2, + ACTIONS(4832), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4864), 2, + ACTIONS(4846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1274), 2, + STATE(1834), 2, sym_concatenation, sym_array, - STATE(816), 9, + STATE(1611), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133684,126 +134379,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91290] = 22, + [91624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - anon_sym_LPAREN, - ACTIONS(4455), 1, - anon_sym_DOLLAR, - ACTIONS(4459), 1, - anon_sym_DQUOTE, - ACTIONS(4463), 1, - aux_sym_number_token1, - ACTIONS(4465), 1, - aux_sym_number_token2, - ACTIONS(4467), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, - anon_sym_BQUOTE, - ACTIONS(4473), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4477), 1, - sym__comment_word, - ACTIONS(4481), 1, - sym__empty_value, - ACTIONS(4483), 1, - sym__brace_start, - ACTIONS(4874), 1, - sym_word, - ACTIONS(4876), 1, - sym__special_character, - ACTIONS(4880), 1, - sym_test_operator, - STATE(1257), 1, - aux_sym__literal_repeat1, - ACTIONS(4451), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4878), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1329), 2, - sym_concatenation, - sym_array, - STATE(1130), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91369] = 22, + ACTIONS(1237), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 32, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_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_LT, + anon_sym_GT, + anon_sym_AMP, + [91665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, - anon_sym_LPAREN, - ACTIONS(4704), 1, - anon_sym_DOLLAR, - ACTIONS(4708), 1, - anon_sym_DQUOTE, - ACTIONS(4712), 1, - aux_sym_number_token1, - ACTIONS(4714), 1, - aux_sym_number_token2, - ACTIONS(4716), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4718), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4720), 1, - anon_sym_BQUOTE, - ACTIONS(4722), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4726), 1, - sym__comment_word, - ACTIONS(4730), 1, - sym__empty_value, - ACTIONS(4732), 1, - sym__brace_start, - ACTIONS(4882), 1, - sym_word, - ACTIONS(4884), 1, - sym__special_character, - ACTIONS(4888), 1, - sym_test_operator, - STATE(2390), 1, - aux_sym__literal_repeat1, - ACTIONS(4700), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4724), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4886), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2729), 2, - sym_concatenation, - sym_array, - STATE(2415), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91448] = 3, + ACTIONS(1207), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 32, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_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_LT, + anon_sym_GT, + anon_sym_AMP, + [91706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 1, + ACTIONS(4858), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1270), 32, + ACTIONS(4856), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -133836,12 +134493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [91489] = 3, + [91747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 1, + ACTIONS(1221), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1254), 32, + ACTIONS(1219), 32, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -133874,54 +134531,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [91530] = 22, + [91788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1217), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 32, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_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_LT, + anon_sym_GT, + anon_sym_AMP, + [91829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4860), 32, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_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_LT, + anon_sym_GT, + anon_sym_AMP, + [91870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4864), 32, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_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_LT, + anon_sym_GT, + anon_sym_AMP, + [91911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4375), 32, + 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_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_LT, + anon_sym_GT, + anon_sym_AMP, + [91952] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 1, + anon_sym_LPAREN, + ACTIONS(4661), 1, anon_sym_DOLLAR, - ACTIONS(1599), 1, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, + aux_sym_number_token1, + ACTIONS(4671), 1, + aux_sym_number_token2, + ACTIONS(4673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, + anon_sym_BQUOTE, + ACTIONS(4679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4683), 1, + sym__comment_word, + ACTIONS(4685), 1, + sym__empty_value, + ACTIONS(4689), 1, + sym__brace_start, + ACTIONS(4868), 1, + sym_word, + ACTIONS(4870), 1, + sym__special_character, + ACTIONS(4874), 1, + sym_test_operator, + STATE(1289), 1, + aux_sym__literal_repeat1, + ACTIONS(4657), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4872), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1403), 2, + sym_concatenation, + sym_array, + STATE(1415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92031] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, + sym_word, + ACTIONS(4880), 1, + anon_sym_LPAREN, + ACTIONS(4882), 1, + anon_sym_DOLLAR, + ACTIONS(4884), 1, + sym__special_character, + ACTIONS(4886), 1, + anon_sym_DQUOTE, + ACTIONS(4890), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(4892), 1, aux_sym_number_token2, - ACTIONS(1605), 1, + ACTIONS(4894), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4896), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, + ACTIONS(4898), 1, + anon_sym_BQUOTE, + ACTIONS(4900), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4904), 1, + sym__comment_word, + ACTIONS(4906), 1, + sym__empty_value, + ACTIONS(4908), 1, + sym_test_operator, + ACTIONS(4910), 1, sym__brace_start, - ACTIONS(4738), 1, + STATE(1250), 1, + aux_sym__literal_repeat1, + ACTIONS(4878), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4888), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4902), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1362), 2, + sym_concatenation, + sym_array, + STATE(971), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92110] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + sym_word, + ACTIONS(4916), 1, anon_sym_LPAREN, - ACTIONS(4742), 1, + ACTIONS(4918), 1, + anon_sym_DOLLAR, + ACTIONS(4920), 1, + sym__special_character, + ACTIONS(4922), 1, anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(4926), 1, + aux_sym_number_token1, + ACTIONS(4928), 1, + aux_sym_number_token2, + ACTIONS(4930), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(4932), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4934), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(4936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4754), 1, + ACTIONS(4940), 1, sym__comment_word, - ACTIONS(4758), 1, + ACTIONS(4942), 1, sym__empty_value, - ACTIONS(4890), 1, - sym_word, - ACTIONS(4892), 1, - sym__special_character, - ACTIONS(4896), 1, + ACTIONS(4944), 1, sym_test_operator, - STATE(1207), 1, + ACTIONS(4946), 1, + sym__brace_start, + STATE(958), 1, aux_sym__literal_repeat1, - ACTIONS(4736), 2, + ACTIONS(4914), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4894), 2, + ACTIONS(4924), 2, sym_raw_string, sym_ansi_c_string, - STATE(1259), 2, + ACTIONS(4938), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1185), 2, sym_concatenation, sym_array, - STATE(823), 9, + STATE(760), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -133931,16 +134854,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91609] = 3, + [92189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, + ACTIONS(4950), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1250), 32, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(4443), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4948), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(4445), 27, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133968,38 +134894,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - [91650] = 10, + [92234] = 10, ACTIONS(63), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4962), 1, sym_file_descriptor, - ACTIONS(4911), 1, + ACTIONS(4965), 1, sym_variable_name, - STATE(2256), 1, + STATE(2409), 1, sym_file_redirect, - STATE(3972), 1, + STATE(3985), 1, sym_subscript, - STATE(1959), 2, + STATE(1973), 2, sym_variable_assignment, aux_sym_command_repeat1, - ACTIONS(4905), 3, + ACTIONS(4959), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(4898), 5, + ACTIONS(4952), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4902), 5, + ACTIONS(4956), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(4900), 13, + ACTIONS(4954), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -134012,13 +134938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [91704] = 4, + [92288] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4914), 1, + ACTIONS(4968), 1, anon_sym_EQ, - ACTIONS(4285), 10, + ACTIONS(4265), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134029,7 +134954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 21, + ACTIONS(4269), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134051,12 +134976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [91746] = 4, + [92330] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4916), 1, + ACTIONS(4970), 1, anon_sym_EQ, - ACTIONS(4285), 10, + ACTIONS(4265), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134067,7 +134992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4289), 21, + ACTIONS(4269), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -134089,10 +135014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [91788] = 3, + [92372] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4405), 10, + ACTIONS(1251), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134103,7 +135028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4407), 21, + ACTIONS(1253), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134124,51 +135050,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [91827] = 20, + [92411] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4922), 1, + ACTIONS(4976), 1, anon_sym_RPAREN, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2003), 2, + STATE(2001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -134178,124 +135103,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91900] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2024), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4950), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3044), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3046), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [91943] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1196), 10, - anon_sym_LT_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_LT, - anon_sym_GT, - ACTIONS(1198), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [91982] = 20, + [92484] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(4952), 1, + ACTIONS(5004), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2018), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -134305,50 +135156,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [92055] = 20, + [92557] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(4954), 1, + ACTIONS(5006), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2039), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -134358,10 +135209,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [92128] = 3, + [92630] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4544), 10, + ACTIONS(4375), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134372,7 +135223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 21, + ACTIONS(4377), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134393,64 +135245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [92167] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, - aux_sym_number_token1, - ACTIONS(4934), 1, - aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(4956), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2043), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92240] = 3, + [92669] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 10, + ACTIONS(1231), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134461,7 +135259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1214), 21, + ACTIONS(1233), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -134483,116 +135281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92279] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, - aux_sym_number_token1, - ACTIONS(4934), 1, - aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(4958), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1967), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92352] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, - aux_sym_number_token1, - ACTIONS(4934), 1, - aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(4960), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1974), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92425] = 3, + [92708] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4299), 10, + ACTIONS(1227), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134603,7 +135295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4301), 21, + ACTIONS(1229), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134624,64 +135317,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [92464] = 20, + [92747] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, - aux_sym_number_token1, - ACTIONS(4934), 1, - aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(4962), 1, + ACTIONS(4447), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2011), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92537] = 3, + ACTIONS(5008), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5012), 10, + anon_sym_LT_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_LT, + anon_sym_GT, + ACTIONS(5010), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [92790] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 10, + ACTIONS(4375), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134692,8 +135369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1222), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(4377), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134714,10 +135390,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92576] = 3, + anon_sym_RPAREN, + [92829] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(2003), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5014), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3063), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3065), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92872] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4299), 10, + ACTIONS(4375), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134728,7 +135443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4301), 21, + ACTIONS(4377), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -134750,10 +135465,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92615] = 3, + [92911] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5016), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92984] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 10, + ACTIONS(4375), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134764,8 +135532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1264), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(4377), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134786,10 +135553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92654] = 3, + anon_sym_RPAREN, + [93023] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 10, + ACTIONS(4375), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134800,8 +135568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1230), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(4377), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134822,50 +135589,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92693] = 20, + anon_sym_RPAREN, + [93062] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(4964), 1, + ACTIONS(5018), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(1987), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -134875,63 +135643,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [92766] = 20, + [93135] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, + STATE(1991), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5020), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1183), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, aux_sym_number_token1, - ACTIONS(4934), 1, aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + sym_word, + ACTIONS(1185), 19, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(4948), 1, sym__brace_start, - ACTIONS(4966), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92839] = 3, + [93178] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4445), 10, + ACTIONS(4864), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134942,8 +135695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4447), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(4866), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -134964,10 +135716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92878] = 3, + anon_sym_RPAREN, + [93217] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 10, + ACTIONS(4691), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -134978,8 +135731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1244), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(4693), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135000,50 +135752,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92917] = 20, + anon_sym_RPAREN, + [93256] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(4968), 1, + ACTIONS(5023), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1980), 2, + STATE(2041), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -135053,10 +135806,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [92990] = 3, + [93329] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 10, + ACTIONS(1219), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135067,7 +135820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1272), 21, + ACTIONS(1221), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135089,10 +135842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [93029] = 3, + [93368] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 10, + ACTIONS(4375), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135103,7 +135856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1248), 21, + ACTIONS(4377), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -135125,10 +135878,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [93068] = 3, + [93407] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(1998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5014), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2975), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2977), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93450] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5014), 1, + aux_sym_concatenation_token1, + ACTIONS(5025), 1, + sym__concat, + STATE(1991), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1179), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93495] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 10, + ACTIONS(1215), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135139,8 +135969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1244), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(1217), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135161,60 +135990,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [93107] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + [93534] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(4119), 1, - anon_sym_DQUOTE, - STATE(2376), 1, - sym_string, - ACTIONS(1145), 2, + STATE(2003), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5014), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2967), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2969), 19, sym_file_descriptor, sym_variable_name, - ACTIONS(4121), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93577] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4303), 1, + anon_sym_RPAREN, + ACTIONS(5027), 1, + sym_word, + ACTIONS(5033), 1, + anon_sym_DOLLAR, + ACTIONS(5036), 1, + sym__special_character, + ACTIONS(5039), 1, + anon_sym_DQUOTE, + ACTIONS(5045), 1, + aux_sym_number_token1, + ACTIONS(5048), 1, + aux_sym_number_token2, + ACTIONS(5051), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5054), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5057), 1, + anon_sym_BQUOTE, + ACTIONS(5060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5066), 1, + sym_test_operator, + ACTIONS(5069), 1, + sym__brace_start, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(5030), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5042), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5063), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93650] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1223), 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 16, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1225), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + [93689] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5014), 1, + aux_sym_concatenation_token1, + ACTIONS(5072), 1, + sym__concat, + STATE(1991), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 9, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1173), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [93154] = 7, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93734] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, + ACTIONS(4187), 1, anon_sym_DQUOTE, - STATE(2376), 1, + STATE(2467), 1, sym_string, - ACTIONS(1141), 2, + ACTIONS(1135), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(4121), 2, + ACTIONS(4189), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, + ACTIONS(4185), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -135224,7 +136180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 16, + ACTIONS(1127), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -135241,10 +136197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [93201] = 3, + [93781] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4445), 10, + ACTIONS(4860), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135255,7 +136211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4447), 21, + ACTIONS(4862), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135277,10 +136233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [93240] = 3, + [93820] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4445), 10, + ACTIONS(1243), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135291,7 +136247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4447), 21, + ACTIONS(1245), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135313,209 +136269,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [93279] = 20, - ACTIONS(63), 1, + [93859] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4187), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, - aux_sym_number_token1, - ACTIONS(4934), 1, - aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(4970), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2013), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2467), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93352] = 20, + ACTIONS(1139), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(4189), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4185), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [93906] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, + STATE(2003), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5014), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, aux_sym_number_token1, - ACTIONS(4934), 1, aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + sym_word, + ACTIONS(1169), 19, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(4948), 1, sym__brace_start, - ACTIONS(4972), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1994), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93425] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 1, sym__special_character, - ACTIONS(4928), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, - aux_sym_number_token1, - ACTIONS(4934), 1, - aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(4974), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93498] = 20, + [93949] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(4976), 1, + ACTIONS(5074), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -135525,86 +136400,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [93571] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1196), 10, - anon_sym_LT_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_LT, - anon_sym_GT, - ACTIONS(1198), 21, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [93610] = 20, + [94022] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(4978), 1, + ACTIONS(5076), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1997), 2, + STATE(2009), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -135614,50 +136453,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [93683] = 20, + [94095] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(4980), 1, + ACTIONS(5078), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2061), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -135667,16 +136506,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [93756] = 5, + [94168] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4572), 2, + ACTIONS(4447), 2, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4982), 2, + ACTIONS(5080), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4986), 10, + ACTIONS(5084), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135687,7 +136526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4984), 17, + ACTIONS(5082), 17, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135705,10 +136544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [93799] = 3, + [94211] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 10, + ACTIONS(1223), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135719,8 +136558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1252), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(1225), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135741,10 +136579,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [93838] = 3, + anon_sym_RPAREN, + [94250] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(2003), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5014), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2995), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2997), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94293] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4405), 10, + ACTIONS(1251), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135755,8 +136632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4407), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(1253), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135777,50 +136653,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [93877] = 20, + anon_sym_RPAREN, + [94332] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + STATE(1998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5014), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3003), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3005), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94375] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, + ACTIONS(5086), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2026), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94448] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5088), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -135830,10 +136798,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [93950] = 3, + [94521] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 10, + ACTIONS(1215), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135844,7 +136812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 21, + ACTIONS(1217), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -135866,63 +136834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [93989] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, - aux_sym_number_token1, - ACTIONS(4934), 1, - aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(4990), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2011), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94062] = 3, + [94560] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 10, + ACTIONS(1205), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135933,7 +136848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1214), 21, + ACTIONS(1207), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135954,11 +136870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [94101] = 3, + [94599] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4445), 10, + ACTIONS(1235), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -135969,7 +136884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4447), 21, + ACTIONS(1237), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -135990,11 +136906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [94140] = 3, + [94638] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 10, + ACTIONS(1205), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136005,7 +136920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1272), 21, + ACTIONS(1207), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -136027,10 +136942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [94179] = 3, + [94677] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 10, + ACTIONS(4864), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136041,7 +136956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1268), 21, + ACTIONS(4866), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -136062,51 +136978,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [94716] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5090), 1, anon_sym_RPAREN, - [94218] = 20, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94789] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5092), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2024), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94862] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, + ACTIONS(5094), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94935] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5096), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1993), 2, + STATE(2001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -136116,10 +137190,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94291] = 3, + [95008] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1263), 10, + anon_sym_LT_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_LT, + anon_sym_GT, + ACTIONS(1265), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [95047] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4622), 10, + ACTIONS(1227), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136130,7 +137240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 21, + ACTIONS(1229), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -136152,10 +137262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [94330] = 3, + [95086] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4445), 10, + ACTIONS(4860), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136166,7 +137276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4447), 21, + ACTIONS(4862), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -136188,50 +137298,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [94369] = 20, + [95125] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(5000), 1, - anon_sym_RPAREN, - ACTIONS(5002), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(5005), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(5008), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(5014), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(5017), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(5020), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5023), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5026), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5029), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5035), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(5038), 1, + ACTIONS(5002), 1, sym__brace_start, - STATE(3049), 1, + ACTIONS(5098), 1, + anon_sym_RPAREN, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4997), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5011), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5032), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -136241,88 +137351,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94442] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2012), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5041), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1175), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94485] = 20, + [95198] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(5044), 1, + ACTIONS(5100), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2031), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -136332,10 +137404,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94558] = 3, + [95271] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4445), 10, + ACTIONS(1259), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136346,7 +137418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4447), 21, + ACTIONS(1261), 21, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -136368,10 +137440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [94597] = 3, + [95310] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 10, + ACTIONS(1231), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136382,7 +137454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1264), 21, + ACTIONS(1233), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -136404,16 +137476,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [94636] = 5, + [95349] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4572), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(5046), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5050), 10, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5102), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1977), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95422] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4691), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136424,7 +137543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5048), 17, + ACTIONS(4693), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136442,16 +137565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [94679] = 5, + [95461] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4297), 2, - anon_sym_RPAREN_RPAREN, + ACTIONS(4950), 2, anon_sym_COMMA, - ACTIONS(5046), 2, + anon_sym_RPAREN, + ACTIONS(5008), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5050), 10, + ACTIONS(5012), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136462,7 +137585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(5048), 17, + ACTIONS(5010), 17, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136480,54 +137603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [94722] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2024), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4950), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3034), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3036), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [94765] = 5, + [95504] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4297), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4982), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4986), 10, + ACTIONS(1205), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136538,7 +137617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4984), 17, + ACTIONS(1207), 21, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136556,10 +137638,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [94808] = 3, + anon_sym_RPAREN, + [95543] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5104), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95616] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 10, + ACTIONS(1235), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136570,7 +137706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1256), 21, + ACTIONS(1237), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -136592,163 +137728,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [94847] = 5, + [95655] = 20, ACTIONS(63), 1, sym_comment, - STATE(2030), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4950), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3040), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4972), 1, sym_word, - ACTIONS(3042), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, sym__special_character, + ACTIONS(4982), 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, - sym_test_operator, - [94890] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2024), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4950), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2947), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(4986), 1, aux_sym_number_token1, + ACTIONS(4988), 1, aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(2949), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5000), 1, sym_test_operator, - [94933] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2030), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4950), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2937), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(2939), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5002), 1, sym__brace_start, + ACTIONS(5106), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [94976] = 6, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95728] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4950), 1, - aux_sym_concatenation_token1, - ACTIONS(5052), 1, - sym__concat, - STATE(2012), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, aux_sym_number_token1, + ACTIONS(4988), 1, aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1192), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, sym__brace_start, + ACTIONS(5108), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [95021] = 3, + STATE(2027), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95801] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 10, + ACTIONS(1219), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136759,10 +137848,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1252), 21, + ACTIONS(1221), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [95840] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4950), 2, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + ACTIONS(5080), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5084), 10, + anon_sym_LT_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_LT, + anon_sym_GT, + ACTIONS(5082), 17, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136780,11 +137908,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [95883] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5110), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95956] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5112), 1, anon_sym_RPAREN, - [95060] = 3, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2052), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96029] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4544), 10, + ACTIONS(4856), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136795,8 +138028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4546), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(4858), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -136817,10 +138049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [95099] = 3, + anon_sym_RPAREN, + [96068] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4622), 10, + ACTIONS(1259), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136831,8 +138064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(4624), 21, - anon_sym_RPAREN_RPAREN, + ACTIONS(1261), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -136853,50 +138085,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [95138] = 20, + anon_sym_RPAREN, + [96107] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(5054), 1, + ACTIONS(5114), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2001), 2, + STATE(2059), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -136906,87 +138139,151 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95211] = 5, + [96180] = 3, ACTIONS(63), 1, sym_comment, - STATE(2030), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4950), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3060), 9, + ACTIONS(4856), 10, + anon_sym_LT_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_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(3062), 19, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [95254] = 6, + ACTIONS(4858), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [96219] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 1, + anon_sym_SLASH, + ACTIONS(4275), 1, + anon_sym_PERCENT, + ACTIONS(4277), 1, + anon_sym_COLON, + ACTIONS(4281), 1, + anon_sym_RBRACE3, + ACTIONS(4283), 1, + anon_sym_AT, + ACTIONS(4285), 1, + anon_sym_STAR2, + ACTIONS(5116), 1, + anon_sym_LBRACK, + STATE(4192), 1, + sym__expansion_operator, + STATE(4193), 1, + sym__expansion_max_length, + STATE(4194), 1, + sym__expansion_regex_removal, + STATE(4195), 1, + sym__expansion_regex_replacement, + STATE(4197), 1, + sym__expansion_regex, + STATE(4198), 1, + sym__expansion_expression, + ACTIONS(4271), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(4291), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(4279), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(4289), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(4287), 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, + [96290] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4950), 1, - aux_sym_concatenation_token1, - ACTIONS(5056), 1, - sym__concat, - STATE(2012), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, aux_sym_number_token1, + ACTIONS(4988), 1, aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1186), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, sym__brace_start, + ACTIONS(5118), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [95299] = 3, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96363] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 10, + ACTIONS(1243), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -136997,7 +138294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1244), 21, + ACTIONS(1245), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -137018,11 +138316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [95338] = 3, + [96402] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 10, + ACTIONS(1263), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -137033,7 +138330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1248), 21, + ACTIONS(1265), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -137055,10 +138352,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [95377] = 3, + [96441] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5120), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2001), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96514] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, + sym_word, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4980), 1, + sym__special_character, + ACTIONS(4982), 1, + anon_sym_DQUOTE, + ACTIONS(4986), 1, + aux_sym_number_token1, + ACTIONS(4988), 1, + aux_sym_number_token2, + ACTIONS(4990), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4994), 1, + anon_sym_BQUOTE, + ACTIONS(4996), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5000), 1, + sym_test_operator, + ACTIONS(5002), 1, + sym__brace_start, + ACTIONS(5122), 1, + anon_sym_RPAREN, + STATE(3028), 1, + aux_sym__literal_repeat1, + ACTIONS(4974), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4984), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2055), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2890), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96587] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 10, + ACTIONS(1205), 10, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -137069,7 +138472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1244), 21, + ACTIONS(1207), 21, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -137091,50 +138494,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RPAREN, - [95416] = 20, + [96626] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(5058), 1, + ACTIONS(5124), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2045), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137144,50 +138547,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95489] = 20, + [96699] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(5060), 1, + ACTIONS(5126), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1979), 2, + STATE(2001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137197,50 +138600,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95562] = 20, + [96772] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + STATE(1998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5014), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3067), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3069), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [96815] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4972), 1, sym_word, - ACTIONS(4924), 1, + ACTIONS(4978), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(4980), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5000), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(5062), 1, + ACTIONS(5128), 1, anon_sym_RPAREN, - STATE(3049), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(4984), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(2001), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137250,86 +138691,252 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95635] = 3, - ACTIONS(63), 1, + [96888] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1220), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - ACTIONS(1222), 21, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [96934] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(5132), 1, + anon_sym_DQUOTE, + STATE(3105), 1, + sym_string, + ACTIONS(5134), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5130), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [95674] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + 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_LT_DASH, + anon_sym_LT_LT_LT, + [96980] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(1259), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4924), 1, + ACTIONS(1261), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [97018] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + anon_sym_DQUOTE, + STATE(2924), 1, + sym_string, + ACTIONS(1139), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(5140), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5136), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(4926), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 15, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - ACTIONS(4928), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [97064] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(709), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(725), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(3127), 1, + sym__special_character, + ACTIONS(5142), 1, + sym_word, + ACTIONS(5146), 1, + sym_test_operator, + ACTIONS(5148), 1, + sym_regex, + STATE(908), 1, + aux_sym__literal_repeat1, + STATE(976), 1, + sym_concatenation, + ACTIONS(693), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5144), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(612), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97136] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4229), 1, + sym_word, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(4243), 1, + aux_sym_number_token1, + ACTIONS(4245), 1, + aux_sym_number_token2, + ACTIONS(4249), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4257), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(4259), 1, sym__brace_start, - ACTIONS(5064), 1, - anon_sym_RPAREN, - STATE(3049), 1, + ACTIONS(5152), 1, + sym__special_character, + ACTIONS(5154), 1, + anon_sym_DQUOTE, + ACTIONS(5158), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5160), 1, + anon_sym_BQUOTE, + ACTIONS(5162), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2877), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(5150), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(5156), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(5164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1966), 2, + STATE(1901), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2519), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137339,15 +138946,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95747] = 5, + [97206] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, + anon_sym_DQUOTE, + STATE(2924), 1, + sym_string, + ACTIONS(1135), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(5140), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5136), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 15, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [97252] = 20, ACTIONS(63), 1, sym_comment, - STATE(2030), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4950), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 9, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(421), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, + anon_sym_BQUOTE, + ACTIONS(427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(3153), 1, + sym__special_character, + ACTIONS(5166), 1, + sym_word, + ACTIONS(5170), 1, + sym_test_operator, + ACTIONS(5172), 1, + sym_regex, + STATE(1004), 1, + aux_sym__literal_repeat1, + STATE(1238), 1, + sym_concatenation, + ACTIONS(389), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5168), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1262), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97324] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1211), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137357,9 +139050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1182), 19, + ACTIONS(1213), 21, sym_file_descriptor, + sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -137368,6 +139063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -137376,51 +139072,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [95790] = 20, + [97362] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, sym__special_character, - ACTIONS(4928), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5174), 1, + sym_word, + ACTIONS(5178), 1, + sym_test_operator, + ACTIONS(5180), 1, + sym_extglob_pattern, + STATE(3703), 1, + aux_sym__literal_repeat1, + STATE(3903), 1, + sym_concatenation, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5176), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3642), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97434] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(975), 1, + anon_sym_DOLLAR, + ACTIONS(979), 1, + anon_sym_DQUOTE, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, - sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(5066), 1, - anon_sym_RPAREN, - STATE(3049), 1, + ACTIONS(2576), 1, + sym__special_character, + ACTIONS(5182), 1, + sym_word, + ACTIONS(5186), 1, + sym_test_operator, + ACTIONS(5188), 1, + sym_regex, + STATE(1593), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + STATE(1663), 1, + sym_concatenation, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2034), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, + ACTIONS(5184), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1384), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137430,50 +139176,154 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95863] = 20, + [97506] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, + ACTIONS(1251), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4926), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(4928), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [97544] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1247), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(4934), 1, aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + sym_word, + ACTIONS(1249), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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(4946), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [97582] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1215), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1217), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(4948), 1, sym__brace_start, - ACTIONS(5068), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2036), 2, + [97620] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, + anon_sym_BQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5190), 1, + sym_word, + ACTIONS(5194), 1, + sym_test_operator, + ACTIONS(5196), 1, + sym_extglob_pattern, + STATE(3678), 1, + aux_sym__literal_repeat1, + STATE(3914), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, + ACTIONS(4165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5192), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3641), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137483,86 +139333,231 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [95936] = 3, + [97692] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 10, - anon_sym_LT_LT, + ACTIONS(1243), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1245), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_PLUS, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [97730] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 1, + sym_file_descriptor, + ACTIONS(5132), 1, + anon_sym_DQUOTE, + STATE(3105), 1, + sym_string, + ACTIONS(5134), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5130), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1230), 21, - 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [95975] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + 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_LT_DASH, + anon_sym_LT_LT_LT, + [97776] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, + ACTIONS(1239), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4926), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1241), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(4928), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [97814] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1201), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(4934), 1, aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + sym_word, + ACTIONS(1203), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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(4946), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [97852] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 1, + sym_file_descriptor, + ACTIONS(4225), 1, + anon_sym_DQUOTE, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4223), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1137), 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [97898] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4229), 1, + sym_word, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(4243), 1, + aux_sym_number_token1, + ACTIONS(4245), 1, + aux_sym_number_token2, + ACTIONS(4249), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4257), 1, sym_test_operator, - ACTIONS(4948), 1, + ACTIONS(4259), 1, sym__brace_start, - ACTIONS(5070), 1, - anon_sym_RPAREN, - STATE(3049), 1, + ACTIONS(5152), 1, + sym__special_character, + ACTIONS(5154), 1, + anon_sym_DQUOTE, + ACTIONS(5158), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5160), 1, + anon_sym_BQUOTE, + ACTIONS(5162), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2877), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + ACTIONS(5150), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + ACTIONS(5156), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(5164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, + STATE(1905), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2876), 9, + STATE(2519), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137572,50 +139567,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96048] = 20, + [97968] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + ACTIONS(5198), 1, + sym_word, + ACTIONS(5202), 1, sym_test_operator, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(5072), 1, - anon_sym_RPAREN, - STATE(3049), 1, + ACTIONS(5204), 1, + sym_extglob_pattern, + STATE(3723), 1, aux_sym__literal_repeat1, - ACTIONS(4920), 2, + STATE(4018), 1, + sym_concatenation, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4944), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2047), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, + ACTIONS(5200), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3716), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137625,203 +139619,80 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96121] = 3, + [98040] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 10, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1263), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(1268), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - 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_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [96160] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_SLASH, - ACTIONS(4259), 1, - anon_sym_PERCENT, - ACTIONS(4261), 1, - anon_sym_COLON, - ACTIONS(4265), 1, - anon_sym_RBRACE3, - ACTIONS(4267), 1, - anon_sym_AT, - ACTIONS(4269), 1, - anon_sym_STAR2, - ACTIONS(5074), 1, - anon_sym_LBRACK, - STATE(4155), 1, - sym__expansion_operator, - STATE(4156), 1, - sym__expansion_max_length, - STATE(4157), 1, - sym__expansion_regex_removal, - STATE(4160), 1, - sym__expansion_regex_replacement, - STATE(4161), 1, - sym__expansion_regex, - STATE(4162), 1, - sym__expansion_expression, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(4275), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(4263), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(4273), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(4271), 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, - [96231] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4918), 1, - sym_word, - ACTIONS(4924), 1, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(4926), 1, - sym__special_character, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, aux_sym_number_token1, - ACTIONS(4934), 1, aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4946), 1, + sym_word, + ACTIONS(1265), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(4948), 1, sym__brace_start, - ACTIONS(5076), 1, - anon_sym_RPAREN, - STATE(3049), 1, - aux_sym__literal_repeat1, - ACTIONS(4920), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4930), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(4944), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2011), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2876), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96304] = 20, + [98078] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(959), 1, + ACTIONS(1255), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(963), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, aux_sym_number_token1, - ACTIONS(969), 1, aux_sym_number_token2, - ACTIONS(971), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, - sym__brace_start, - ACTIONS(2601), 1, - sym__special_character, - ACTIONS(5078), 1, sym_word, - ACTIONS(5082), 1, + ACTIONS(1257), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(5084), 1, - sym_regex, - STATE(1602), 1, - aux_sym__literal_repeat1, - STATE(1639), 1, - sym_concatenation, - ACTIONS(949), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5080), 2, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1323), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96376] = 3, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [98116] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 9, + ACTIONS(1183), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137831,10 +139702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1202), 21, + ACTIONS(1185), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -137852,11 +139724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [96414] = 3, + [98154] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 9, + ACTIONS(1267), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137866,10 +139737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1268), 21, + ACTIONS(1269), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -137887,50 +139759,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [98192] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(491), 1, + anon_sym_DOLLAR, + ACTIONS(495), 1, + anon_sym_DQUOTE, + ACTIONS(499), 1, + aux_sym_number_token1, + ACTIONS(501), 1, + aux_sym_number_token2, + ACTIONS(503), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(507), 1, + anon_sym_BQUOTE, + ACTIONS(509), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(519), 1, + sym__brace_start, + ACTIONS(3129), 1, + sym__special_character, + ACTIONS(5206), 1, + sym_word, + ACTIONS(5210), 1, sym_test_operator, - [96452] = 20, + ACTIONS(5212), 1, + sym_regex, + STATE(754), 1, + aux_sym__literal_repeat1, + STATE(910), 1, + sym_concatenation, + ACTIONS(455), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5208), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(588), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98264] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5086), 1, + ACTIONS(4229), 1, sym_word, - ACTIONS(5090), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR, - ACTIONS(5092), 1, + ACTIONS(4243), 1, + aux_sym_number_token1, + ACTIONS(4245), 1, + aux_sym_number_token2, + ACTIONS(4249), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4257), 1, + sym_test_operator, + ACTIONS(4259), 1, + sym__brace_start, + ACTIONS(5152), 1, sym__special_character, - ACTIONS(5094), 1, + ACTIONS(5154), 1, anon_sym_DQUOTE, - ACTIONS(5098), 1, + ACTIONS(5158), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5160), 1, + anon_sym_BQUOTE, + ACTIONS(5162), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2877), 1, + aux_sym__literal_repeat1, + ACTIONS(5150), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5156), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5164), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1915), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2519), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98334] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5214), 1, + sym_word, + ACTIONS(5218), 1, + anon_sym_DOLLAR, + ACTIONS(5220), 1, + sym__special_character, + ACTIONS(5222), 1, + anon_sym_DQUOTE, + ACTIONS(5226), 1, aux_sym_number_token1, - ACTIONS(5100), 1, + ACTIONS(5228), 1, aux_sym_number_token2, - ACTIONS(5102), 1, + ACTIONS(5230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5104), 1, + ACTIONS(5232), 1, anon_sym_RBRACE3, - ACTIONS(5106), 1, + ACTIONS(5234), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5236), 1, anon_sym_BQUOTE, - ACTIONS(5110), 1, + ACTIONS(5238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5114), 1, + ACTIONS(5242), 1, sym_test_operator, - ACTIONS(5116), 1, + ACTIONS(5244), 1, sym__brace_start, - STATE(3749), 1, + STATE(3725), 1, aux_sym__literal_repeat1, - STATE(3913), 1, + STATE(3997), 1, sym_concatenation, - ACTIONS(5088), 2, + ACTIONS(5216), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5096), 2, + ACTIONS(5224), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5112), 2, + ACTIONS(5240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3640), 9, + STATE(3712), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137940,49 +139914,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96524] = 20, - ACTIONS(63), 1, - sym_comment, - ACTIONS(409), 1, + [98406] = 20, + ACTIONS(41), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, + ACTIONS(63), 1, + sym_comment, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(3127), 1, + ACTIONS(3147), 1, sym__special_character, - ACTIONS(5118), 1, + ACTIONS(5246), 1, sym_word, - ACTIONS(5122), 1, + ACTIONS(5250), 1, sym_test_operator, - ACTIONS(5124), 1, + ACTIONS(5252), 1, sym_regex, - STATE(972), 1, + STATE(984), 1, aux_sym__literal_repeat1, - STATE(1199), 1, + STATE(1179), 1, sym_concatenation, - ACTIONS(389), 2, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5120), 2, + ACTIONS(5248), 2, sym_raw_string, sym_ansi_c_string, - STATE(726), 9, + STATE(739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -137992,49 +139966,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96596] = 20, + [98478] = 20, ACTIONS(63), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5126), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(3112), 1, + sym__special_character, + ACTIONS(5172), 1, + sym_regex, + ACTIONS(5254), 1, sym_word, - ACTIONS(5130), 1, + ACTIONS(5258), 1, sym_test_operator, - ACTIONS(5132), 1, - sym_extglob_pattern, - STATE(3738), 1, + STATE(1004), 1, aux_sym__literal_repeat1, - STATE(3955), 1, + STATE(1238), 1, sym_concatenation, - ACTIONS(4135), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4151), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5128), 2, + ACTIONS(5256), 2, sym_raw_string, sym_ansi_c_string, - STATE(3676), 9, + STATE(692), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138044,10 +140018,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [96668] = 3, + [98550] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 9, + ACTIONS(1231), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138057,10 +140031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1264), 21, + ACTIONS(1233), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -138078,11 +140053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [96706] = 3, + [98588] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 9, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138092,10 +140066,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1256), 21, + ACTIONS(1225), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -138113,20 +140088,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [96744] = 7, + [98626] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - sym__brace_start, - ACTIONS(5136), 1, + ACTIONS(5262), 1, anon_sym_DQUOTE, - STATE(2941), 1, + STATE(3082), 1, sym_string, - ACTIONS(5138), 2, + ACTIONS(1135), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5264), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5134), 9, + ACTIONS(5260), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -138136,27 +140111,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1133), 16, + ACTIONS(1127), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [98672] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1227), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1229), 21, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [96790] = 3, + [98710] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 9, + ACTIONS(1219), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138166,10 +140175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1252), 21, + ACTIONS(1221), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -138187,20 +140197,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [96828] = 7, + [98748] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - sym__brace_start, - ACTIONS(5136), 1, + ACTIONS(5262), 1, anon_sym_DQUOTE, - STATE(2941), 1, + STATE(3082), 1, sym_string, - ACTIONS(5138), 2, + ACTIONS(1139), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(5264), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5134), 9, + ACTIONS(5260), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -138210,27 +140220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [96874] = 3, + ACTIONS(1137), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [98794] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 9, + ACTIONS(1205), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138240,10 +140249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 21, + ACTIONS(1207), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -138261,11 +140271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [96912] = 3, + [98832] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 9, + ACTIONS(1235), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138275,10 +140284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1210), 21, + ACTIONS(1237), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -138296,11 +140306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [96950] = 3, + [98870] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 9, + ACTIONS(1205), 9, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138310,10 +140319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1248), 21, + ACTIONS(1207), 21, sym_file_descriptor, sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -138331,50 +140341,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [98908] = 20, + ACTIONS(63), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + aux_sym_number_token1, + ACTIONS(419), 1, + aux_sym_number_token2, + ACTIONS(421), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, + anon_sym_BQUOTE, + ACTIONS(427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(3118), 1, + sym__special_character, + ACTIONS(5172), 1, + sym_regex, + ACTIONS(5266), 1, + sym_word, + ACTIONS(5270), 1, sym_test_operator, - [96988] = 20, + STATE(1004), 1, + aux_sym__literal_repeat1, + STATE(1238), 1, + sym_concatenation, + ACTIONS(389), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5268), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(866), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98980] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(5272), 1, + sym_word, + ACTIONS(5276), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(5278), 1, + sym__special_character, + ACTIONS(5280), 1, + anon_sym_DQUOTE, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(3639), 1, + ACTIONS(5288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3651), 1, + ACTIONS(5292), 1, + anon_sym_BQUOTE, + ACTIONS(5294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5298), 1, + sym_test_operator, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(4139), 1, + STATE(2644), 1, + aux_sym__literal_repeat1, + STATE(2837), 1, + sym_concatenation, + ACTIONS(5274), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5282), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5296), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99049] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5276), 1, + anon_sym_DOLLAR, + ACTIONS(5278), 1, sym__special_character, - ACTIONS(4141), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(5284), 1, + aux_sym_number_token1, + ACTIONS(5286), 1, + aux_sym_number_token2, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(5290), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5140), 1, + ACTIONS(5300), 1, + sym__brace_start, + ACTIONS(5302), 1, sym_word, - ACTIONS(5144), 1, + ACTIONS(5306), 1, sym_test_operator, - ACTIONS(5146), 1, - sym_extglob_pattern, - STATE(3704), 1, + STATE(2648), 1, aux_sym__literal_repeat1, - STATE(3834), 1, + STATE(2811), 1, sym_concatenation, - ACTIONS(4135), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4151), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5142), 2, + ACTIONS(5304), 2, sym_raw_string, sym_ansi_c_string, - STATE(3620), 9, + STATE(2671), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138384,161 +140493,698 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97060] = 7, + [99118] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - sym_file_descriptor, - ACTIONS(5150), 1, - anon_sym_DQUOTE, - STATE(3110), 1, - sym_string, - ACTIONS(5152), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5148), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(361), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, + sym_word, + ACTIONS(5310), 1, 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_LT_DASH, - anon_sym_LT_LT_LT, - [97106] = 7, - ACTIONS(3), 1, + ACTIONS(5316), 1, + sym_test_operator, + ACTIONS(348), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5312), 2, + sym__special_character, + sym__comment_word, + ACTIONS(5314), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1539), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99185] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(5150), 1, + ACTIONS(4661), 1, + anon_sym_DOLLAR, + ACTIONS(4665), 1, anon_sym_DQUOTE, - STATE(3110), 1, + ACTIONS(4669), 1, + aux_sym_number_token1, + ACTIONS(4671), 1, + aux_sym_number_token2, + ACTIONS(4673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, + anon_sym_BQUOTE, + ACTIONS(4679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4689), 1, + sym__brace_start, + ACTIONS(4814), 1, + sym__special_character, + ACTIONS(5318), 1, + sym_word, + ACTIONS(5322), 1, + sym_test_operator, + STATE(1287), 1, + aux_sym__literal_repeat1, + STATE(1400), 1, + sym_concatenation, + ACTIONS(4657), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5320), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1066), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(5152), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5148), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99254] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4882), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - 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_LT_DASH, - anon_sym_LT_LT_LT, - [97152] = 3, + ACTIONS(4884), 1, + sym__special_character, + ACTIONS(4886), 1, + anon_sym_DQUOTE, + ACTIONS(4890), 1, + aux_sym_number_token1, + ACTIONS(4892), 1, + aux_sym_number_token2, + ACTIONS(4894), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4896), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4898), 1, + anon_sym_BQUOTE, + ACTIONS(4900), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4910), 1, + sym__brace_start, + ACTIONS(5324), 1, + sym_word, + ACTIONS(5328), 1, + sym_test_operator, + STATE(1263), 1, + aux_sym__literal_repeat1, + STATE(1308), 1, + sym_concatenation, + ACTIONS(4878), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4902), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5326), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(954), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99323] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5330), 1, + sym_word, + ACTIONS(5334), 1, anon_sym_DOLLAR, + ACTIONS(5336), 1, + sym__special_character, + ACTIONS(5338), 1, + anon_sym_DQUOTE, + ACTIONS(5342), 1, aux_sym_number_token1, + ACTIONS(5344), 1, aux_sym_number_token2, + ACTIONS(5346), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5348), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5350), 1, anon_sym_BQUOTE, + ACTIONS(5352), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5356), 1, + sym_test_operator, + ACTIONS(5358), 1, + sym__brace_start, + STATE(3616), 1, + aux_sym__literal_repeat1, + STATE(3686), 1, + sym_concatenation, + ACTIONS(5332), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5340), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5354), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3555), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99392] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5360), 1, sym_word, - ACTIONS(1244), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5364), 1, + anon_sym_DOLLAR, + ACTIONS(5366), 1, + sym__special_character, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, + aux_sym_number_token1, + ACTIONS(5374), 1, + aux_sym_number_token2, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, + anon_sym_BQUOTE, + ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5386), 1, + sym_test_operator, + ACTIONS(5388), 1, sym__brace_start, + STATE(2547), 1, + aux_sym__literal_repeat1, + STATE(2838), 1, + sym_concatenation, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(5370), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5384), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3026), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99461] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_DOLLAR, + ACTIONS(5366), 1, + sym__special_character, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, + aux_sym_number_token1, + ACTIONS(5374), 1, + aux_sym_number_token2, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, + anon_sym_BQUOTE, + ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(5390), 1, + sym_word, + ACTIONS(5394), 1, + sym_test_operator, + STATE(2512), 1, + aux_sym__literal_repeat1, + STATE(2769), 1, + sym_concatenation, + ACTIONS(5362), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5384), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5392), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2977), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99530] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_DOLLAR, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, + aux_sym_number_token1, + ACTIONS(5374), 1, + aux_sym_number_token2, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, + anon_sym_BQUOTE, + ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(5396), 1, + sym_word, + ACTIONS(5398), 1, sym__special_character, + ACTIONS(5402), 1, + sym_test_operator, + STATE(2547), 1, + aux_sym__literal_repeat1, + STATE(2838), 1, + sym_concatenation, + ACTIONS(5362), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5384), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5400), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2700), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99599] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_DOLLAR, + ACTIONS(5368), 1, anon_sym_DQUOTE, + ACTIONS(5372), 1, + aux_sym_number_token1, + ACTIONS(5374), 1, + aux_sym_number_token2, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, + anon_sym_BQUOTE, + ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(5398), 1, + sym__special_character, + ACTIONS(5404), 1, + sym_word, + ACTIONS(5408), 1, + sym_test_operator, + STATE(2512), 1, + aux_sym__literal_repeat1, + STATE(2769), 1, + sym_concatenation, + ACTIONS(5362), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5384), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5406), 2, sym_raw_string, sym_ansi_c_string, + STATE(2702), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99668] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4882), 1, + anon_sym_DOLLAR, + ACTIONS(4884), 1, + sym__special_character, + ACTIONS(4886), 1, + anon_sym_DQUOTE, + ACTIONS(4890), 1, + aux_sym_number_token1, + ACTIONS(4892), 1, + aux_sym_number_token2, + ACTIONS(4894), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4896), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4898), 1, + anon_sym_BQUOTE, + ACTIONS(4900), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4910), 1, + sym__brace_start, + ACTIONS(5410), 1, + sym_word, + ACTIONS(5414), 1, + sym_test_operator, + STATE(1270), 1, + aux_sym__literal_repeat1, + STATE(1365), 1, + sym_concatenation, + ACTIONS(4878), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4902), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5412), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(968), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99737] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4661), 1, + anon_sym_DOLLAR, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, + aux_sym_number_token1, + ACTIONS(4671), 1, + aux_sym_number_token2, + ACTIONS(4673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, + anon_sym_BQUOTE, + ACTIONS(4679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4689), 1, + sym__brace_start, + ACTIONS(4814), 1, + sym__special_character, + ACTIONS(5416), 1, + sym_word, + ACTIONS(5420), 1, sym_test_operator, - [97190] = 19, + STATE(1280), 1, + aux_sym__literal_repeat1, + STATE(1385), 1, + sym_concatenation, + ACTIONS(4657), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5418), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(920), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99806] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 1, + anon_sym_LPAREN, + ACTIONS(5428), 1, + aux_sym__c_word_token1, + ACTIONS(5430), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5432), 1, + anon_sym_DOLLAR, + ACTIONS(5434), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + aux_sym_number_token1, + ACTIONS(5438), 1, + aux_sym_number_token2, + ACTIONS(5440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5444), 1, + anon_sym_BQUOTE, + ACTIONS(5446), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(2373), 1, + sym__c_terminator, + STATE(3631), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + STATE(4366), 1, + sym__for_body, + ACTIONS(5422), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(5424), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1928), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [99881] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(5448), 1, sym_word, - ACTIONS(4227), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR, - ACTIONS(4233), 1, + ACTIONS(5454), 1, + sym__special_character, + ACTIONS(5456), 1, + anon_sym_DQUOTE, + ACTIONS(5460), 1, aux_sym_number_token1, - ACTIONS(4235), 1, + ACTIONS(5462), 1, aux_sym_number_token2, - ACTIONS(4239), 1, + ACTIONS(5464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4249), 1, + ACTIONS(5468), 1, + anon_sym_BQUOTE, + ACTIONS(5470), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5474), 1, + sym_test_operator, + ACTIONS(5476), 1, sym__brace_start, - ACTIONS(5156), 1, + STATE(3077), 1, + aux_sym__literal_repeat1, + STATE(3172), 1, + sym_concatenation, + ACTIONS(5450), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5458), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3020), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99950] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5478), 1, + sym_word, + ACTIONS(5482), 1, + anon_sym_DOLLAR, + ACTIONS(5484), 1, sym__special_character, - ACTIONS(5158), 1, + ACTIONS(5486), 1, anon_sym_DQUOTE, - ACTIONS(5162), 1, + ACTIONS(5490), 1, + aux_sym_number_token1, + ACTIONS(5492), 1, + aux_sym_number_token2, + ACTIONS(5494), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(5496), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5498), 1, anon_sym_BQUOTE, - ACTIONS(5166), 1, + ACTIONS(5500), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5170), 1, + ACTIONS(5504), 1, sym_test_operator, - STATE(2757), 1, + ACTIONS(5506), 1, + sym__brace_start, + STATE(1750), 1, aux_sym__literal_repeat1, - ACTIONS(5154), 2, + STATE(1762), 1, + sym_concatenation, + ACTIONS(5480), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5488), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5502), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1503), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100019] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, + aux_sym_number_token1, + ACTIONS(371), 1, + aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, + sym_word, + ACTIONS(5316), 1, + sym_test_operator, + ACTIONS(5508), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5160), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5168), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1881), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2444), 9, + ACTIONS(5312), 2, + sym__special_character, + sym__comment_word, + ACTIONS(5314), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138548,119 +141194,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97260] = 3, + [100086] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(4661), 1, anon_sym_DOLLAR, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, aux_sym_number_token1, + ACTIONS(4671), 1, aux_sym_number_token2, + ACTIONS(4673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1230), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(4679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4689), 1, sym__brace_start, + ACTIONS(4870), 1, + sym__special_character, + ACTIONS(5510), 1, + sym_word, + ACTIONS(5514), 1, + sym_test_operator, + STATE(1287), 1, + aux_sym__literal_repeat1, + STATE(1400), 1, + sym_concatenation, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97298] = 3, + ACTIONS(5512), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1410), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100155] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5482), 1, anon_sym_DOLLAR, + ACTIONS(5484), 1, + sym__special_character, + ACTIONS(5486), 1, + anon_sym_DQUOTE, + ACTIONS(5490), 1, aux_sym_number_token1, + ACTIONS(5492), 1, aux_sym_number_token2, + ACTIONS(5494), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5496), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5498), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1222), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5500), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5506), 1, sym__brace_start, + ACTIONS(5516), 1, + sym_word, + ACTIONS(5520), 1, + sym_test_operator, + STATE(1729), 1, + aux_sym__literal_repeat1, + STATE(1772), 1, + sym_concatenation, + ACTIONS(5480), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(5502), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97336] = 20, + ACTIONS(5518), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1487), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100224] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(5276), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(3150), 1, - sym__special_character, - ACTIONS(5124), 1, - sym_regex, - ACTIONS(5172), 1, + ACTIONS(5522), 1, sym_word, - ACTIONS(5176), 1, + ACTIONS(5524), 1, + sym__special_character, + ACTIONS(5528), 1, sym_test_operator, - STATE(972), 1, + STATE(2644), 1, aux_sym__literal_repeat1, - STATE(1199), 1, + STATE(2837), 1, sym_concatenation, - ACTIONS(389), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5174), 2, + ACTIONS(5526), 2, sym_raw_string, sym_ansi_c_string, - STATE(1267), 9, + STATE(2478), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138670,49 +141344,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97408] = 20, + [100293] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(491), 1, + ACTIONS(4661), 1, anon_sym_DOLLAR, - ACTIONS(495), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(499), 1, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(501), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(503), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(505), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(507), 1, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(509), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(519), 1, + ACTIONS(4689), 1, sym__brace_start, - ACTIONS(3138), 1, + ACTIONS(4870), 1, sym__special_character, - ACTIONS(5178), 1, + ACTIONS(5530), 1, sym_word, - ACTIONS(5182), 1, + ACTIONS(5534), 1, sym_test_operator, - ACTIONS(5184), 1, - sym_regex, - STATE(749), 1, + STATE(1280), 1, aux_sym__literal_repeat1, - STATE(817), 1, + STATE(1385), 1, sym_concatenation, - ACTIONS(455), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(511), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5180), 2, + ACTIONS(5532), 2, sym_raw_string, sym_ansi_c_string, - STATE(596), 9, + STATE(1412), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138722,127 +141394,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97480] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5188), 1, - anon_sym_DQUOTE, - STATE(3079), 1, - sym_string, - ACTIONS(1141), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5190), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5186), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - [97526] = 7, + [100362] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_DQUOTE, - STATE(3079), 1, - sym_string, - ACTIONS(1145), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(5190), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5186), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, + ACTIONS(4273), 1, + anon_sym_SLASH, + ACTIONS(4275), 1, + anon_sym_PERCENT, + ACTIONS(4277), 1, + anon_sym_COLON, + ACTIONS(4529), 1, + anon_sym_AT, + ACTIONS(5116), 1, + anon_sym_LBRACK, + STATE(4303), 1, + sym__expansion_operator, + STATE(4304), 1, + sym__expansion_max_length, + STATE(4305), 1, + sym__expansion_regex_removal, + STATE(4306), 1, + sym__expansion_regex_replacement, + STATE(4307), 1, + sym__expansion_regex, + STATE(4308), 1, + sym__expansion_expression, + ACTIONS(4271), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(4291), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(4279), 3, + sym__immediate_double_hash, anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - [97572] = 20, + anon_sym_PERCENT_PERCENT, + ACTIONS(4289), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(4287), 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, + [100427] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(709), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR, - ACTIONS(713), 1, + ACTIONS(5454), 1, + sym__special_character, + ACTIONS(5456), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(5460), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(5462), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(5464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(5468), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(5470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, + ACTIONS(5476), 1, sym__brace_start, - ACTIONS(3140), 1, - sym__special_character, - ACTIONS(5192), 1, + ACTIONS(5536), 1, sym_word, - ACTIONS(5196), 1, + ACTIONS(5540), 1, sym_test_operator, - ACTIONS(5198), 1, - sym_regex, - STATE(768), 1, + STATE(3084), 1, aux_sym__literal_repeat1, - STATE(1025), 1, + STATE(3166), 1, sym_concatenation, - ACTIONS(693), 2, + ACTIONS(5450), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(5472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5194), 2, + ACTIONS(5538), 2, sym_raw_string, sym_ansi_c_string, - STATE(631), 9, + STATE(3024), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138852,83 +141492,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97644] = 3, + [100496] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5364), 1, anon_sym_DOLLAR, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, aux_sym_number_token1, + ACTIONS(5374), 1, aux_sym_number_token2, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1218), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, sym__brace_start, + ACTIONS(5542), 1, + sym_word, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5548), 1, + sym_test_operator, + STATE(2547), 1, + aux_sym__literal_repeat1, + STATE(2838), 1, + sym_concatenation, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [97682] = 19, + ACTIONS(5546), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2797), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100565] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4221), 1, - sym_word, - ACTIONS(4227), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(4233), 1, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4235), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4239), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4249), 1, - sym__brace_start, - ACTIONS(5156), 1, - sym__special_character, - ACTIONS(5158), 1, - anon_sym_DQUOTE, - ACTIONS(5162), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5166), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5170), 1, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5550), 1, + sym_word, + ACTIONS(5554), 1, sym_test_operator, - STATE(2757), 1, + STATE(2512), 1, aux_sym__literal_repeat1, - ACTIONS(5154), 2, + STATE(2769), 1, + sym_concatenation, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5160), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5168), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1879), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2444), 9, + ACTIONS(5552), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2801), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -138938,10 +141592,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97752] = 3, + [100634] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 9, + ACTIONS(5556), 1, + sym__special_character, + STATE(2157), 1, + aux_sym__literal_repeat1, + ACTIONS(2967), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138949,12 +141607,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(1175), 21, + ACTIONS(2969), 19, sym_file_descriptor, - sym__concat, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -138963,59 +141620,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [97790] = 20, - ACTIONS(41), 1, + [100675] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 1, + anon_sym_LPAREN, + ACTIONS(5428), 1, + aux_sym__c_word_token1, + ACTIONS(5430), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5432), 1, anon_sym_DOLLAR, - ACTIONS(45), 1, + ACTIONS(5434), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(5436), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(5438), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(5440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(5442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(5444), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_BQUOTE, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(2373), 1, + sym__c_terminator, + STATE(3631), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + STATE(4247), 1, + sym__for_body, + ACTIONS(5422), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(5424), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1928), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [100750] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(71), 1, - sym__brace_start, - ACTIONS(3125), 1, + ACTIONS(5334), 1, + anon_sym_DOLLAR, + ACTIONS(5336), 1, sym__special_character, - ACTIONS(5200), 1, + ACTIONS(5338), 1, + anon_sym_DQUOTE, + ACTIONS(5342), 1, + aux_sym_number_token1, + ACTIONS(5344), 1, + aux_sym_number_token2, + ACTIONS(5346), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5348), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5350), 1, + anon_sym_BQUOTE, + ACTIONS(5352), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5358), 1, + sym__brace_start, + ACTIONS(5558), 1, sym_word, - ACTIONS(5204), 1, + ACTIONS(5562), 1, sym_test_operator, - ACTIONS(5206), 1, - sym_regex, - STATE(1047), 1, + STATE(3599), 1, aux_sym__literal_repeat1, - STATE(1240), 1, + STATE(3668), 1, sym_concatenation, - ACTIONS(13), 2, + ACTIONS(5332), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, + ACTIONS(5354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5202), 2, + ACTIONS(5560), 2, sym_raw_string, sym_ansi_c_string, - STATE(718), 9, + STATE(3569), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139025,49 +141731,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97862] = 20, + [100819] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(5276), 1, anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(5280), 1, + anon_sym_DQUOTE, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4139), 1, - sym__special_character, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(5290), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5208), 1, + ACTIONS(5300), 1, + sym__brace_start, + ACTIONS(5524), 1, + sym__special_character, + ACTIONS(5564), 1, sym_word, - ACTIONS(5212), 1, + ACTIONS(5568), 1, sym_test_operator, - ACTIONS(5214), 1, - sym_extglob_pattern, - STATE(3705), 1, + STATE(2648), 1, aux_sym__literal_repeat1, - STATE(3777), 1, + STATE(2811), 1, sym_concatenation, - ACTIONS(4135), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4151), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5210), 2, + ACTIONS(5566), 2, sym_raw_string, sym_ansi_c_string, - STATE(3617), 9, + STATE(2476), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139077,122 +141781,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97934] = 3, - ACTIONS(63), 1, + [100888] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(361), 1, anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(1240), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + ACTIONS(5316), 1, + sym_test_operator, + ACTIONS(5570), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5312), 2, sym__special_character, - anon_sym_DQUOTE, + sym__comment_word, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [97972] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1145), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, + STATE(1539), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1143), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [98018] = 19, - ACTIONS(63), 1, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100955] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - sym_word, - ACTIONS(4227), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(4233), 1, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4235), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4239), 1, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4249), 1, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(5156), 1, - sym__special_character, - ACTIONS(5158), 1, - anon_sym_DQUOTE, - ACTIONS(5162), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - ACTIONS(5166), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5170), 1, + ACTIONS(5308), 1, + sym_word, + ACTIONS(5316), 1, sym_test_operator, - STATE(2757), 1, - aux_sym__literal_repeat1, - ACTIONS(5154), 2, + ACTIONS(5572), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5160), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5168), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1880), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2444), 9, + ACTIONS(5312), 2, + sym__special_character, + sym__comment_word, + ACTIONS(5314), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139202,228 +141879,245 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98088] = 3, + [101022] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(4661), 1, anon_sym_DOLLAR, + ACTIONS(4663), 1, + sym__special_character, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, aux_sym_number_token1, + ACTIONS(4671), 1, aux_sym_number_token2, + ACTIONS(4673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1206), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(4679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4689), 1, sym__brace_start, + ACTIONS(5574), 1, + sym_word, + ACTIONS(5578), 1, + sym_test_operator, + STATE(1287), 1, + aux_sym__literal_repeat1, + STATE(1400), 1, + sym_concatenation, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98126] = 3, + ACTIONS(5576), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1218), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101091] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(4661), 1, anon_sym_DOLLAR, + ACTIONS(4663), 1, + sym__special_character, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, aux_sym_number_token1, + ACTIONS(4671), 1, aux_sym_number_token2, + ACTIONS(4673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1198), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(4679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4689), 1, sym__brace_start, + ACTIONS(5580), 1, + sym_word, + ACTIONS(5584), 1, + sym_test_operator, + STATE(1280), 1, + aux_sym__literal_repeat1, + STATE(1385), 1, + sym_concatenation, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98164] = 3, - ACTIONS(63), 1, + ACTIONS(5582), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1224), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101160] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1224), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(361), 1, anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(1226), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + ACTIONS(5316), 1, + sym_test_operator, + ACTIONS(5586), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5312), 2, sym__special_character, - anon_sym_DQUOTE, + sym__comment_word, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98202] = 3, - ACTIONS(63), 1, + STATE(1539), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101227] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1212), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(361), 1, anon_sym_DOLLAR, + ACTIONS(365), 1, + anon_sym_DQUOTE, + ACTIONS(369), 1, aux_sym_number_token1, + ACTIONS(371), 1, aux_sym_number_token2, + ACTIONS(373), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(379), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym__brace_start, + ACTIONS(3215), 1, anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(1214), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym__brace_start, + ACTIONS(5316), 1, + sym_test_operator, + ACTIONS(5588), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + ACTIONS(381), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5312), 2, sym__special_character, - anon_sym_DQUOTE, + sym__comment_word, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [98240] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(4281), 1, - anon_sym_DQUOTE, - STATE(2557), 1, + STATE(1539), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(4283), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [98286] = 20, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101294] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(3113), 1, - sym__special_character, - ACTIONS(5124), 1, - sym_regex, - ACTIONS(5216), 1, + ACTIONS(5590), 1, sym_word, - ACTIONS(5220), 1, + ACTIONS(5592), 1, + sym__special_character, + ACTIONS(5596), 1, sym_test_operator, - STATE(972), 1, + STATE(2634), 1, aux_sym__literal_repeat1, - STATE(1199), 1, + STATE(2809), 1, sym_concatenation, - ACTIONS(389), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5218), 2, + ACTIONS(5594), 2, sym_raw_string, sym_ansi_c_string, - STATE(887), 9, + STATE(2726), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139433,82 +142127,96 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98358] = 3, + [101363] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5364), 1, anon_sym_DOLLAR, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, aux_sym_number_token1, + ACTIONS(5374), 1, aux_sym_number_token2, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1272), 21, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, sym__brace_start, + ACTIONS(5592), 1, + sym__special_character, + ACTIONS(5598), 1, + sym_word, + ACTIONS(5602), 1, + sym_test_operator, + STATE(2604), 1, + aux_sym__literal_repeat1, + STATE(2821), 1, + sym_concatenation, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - 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(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [98396] = 19, - ACTIONS(63), 1, + ACTIONS(5600), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2753), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101432] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4373), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(4375), 1, - sym__special_character, - ACTIONS(4377), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(4381), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4383), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4385), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4387), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4389), 1, - anon_sym_BQUOTE, - ACTIONS(4391), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4401), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(5222), 1, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(5226), 1, + ACTIONS(5316), 1, sym_test_operator, - STATE(1774), 1, - aux_sym__literal_repeat1, - STATE(1859), 1, - sym_concatenation, - ACTIONS(4369), 2, + ACTIONS(5604), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4393), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5224), 2, + ACTIONS(5312), 2, + sym__special_character, + sym__comment_word, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - STATE(1580), 9, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139518,47 +142226,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98465] = 19, - ACTIONS(63), 1, + [101499] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, - sym_word, - ACTIONS(5232), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(5234), 1, - sym__special_character, - ACTIONS(5236), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, - anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5254), 1, - sym_test_operator, - ACTIONS(5256), 1, + ACTIONS(385), 1, sym__brace_start, - STATE(2504), 1, - aux_sym__literal_repeat1, - STATE(2846), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, + sym_word, + ACTIONS(5316), 1, + sym_test_operator, + ACTIONS(5606), 1, + anon_sym_RBRACK, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5238), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5252), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2645), 9, + ACTIONS(5312), 2, + sym__special_character, + sym__comment_word, + ACTIONS(5314), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139568,47 +142275,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98534] = 19, + [101566] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5258), 1, - sym_word, - ACTIONS(5262), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5264), 1, - sym__special_character, - ACTIONS(5266), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5270), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5274), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5276), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5284), 1, - sym_test_operator, - ACTIONS(5286), 1, + ACTIONS(5388), 1, sym__brace_start, - STATE(3056), 1, + ACTIONS(5608), 1, + sym_word, + ACTIONS(5610), 1, + sym__special_character, + ACTIONS(5614), 1, + sym_test_operator, + STATE(2547), 1, aux_sym__literal_repeat1, - STATE(3154), 1, + STATE(2838), 1, sym_concatenation, - ACTIONS(5260), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5268), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5282), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3025), 9, + ACTIONS(5612), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2731), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139618,47 +142325,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98603] = 19, + [101635] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5288), 1, - sym_word, - ACTIONS(5292), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR, - ACTIONS(5294), 1, + ACTIONS(5454), 1, sym__special_character, - ACTIONS(5296), 1, + ACTIONS(5456), 1, anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(5460), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(5462), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(5464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5468), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(5470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5314), 1, - sym_test_operator, - ACTIONS(5316), 1, + ACTIONS(5476), 1, sym__brace_start, - STATE(2500), 1, + ACTIONS(5616), 1, + sym_word, + ACTIONS(5620), 1, + sym_test_operator, + STATE(3101), 1, aux_sym__literal_repeat1, - STATE(2816), 1, + STATE(3165), 1, sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(5450), 2, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5298), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5312), 2, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2551), 9, + ACTIONS(5618), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2973), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139668,47 +142375,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98672] = 19, + [101704] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(4846), 1, - sym__special_character, - ACTIONS(4848), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4854), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4856), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4858), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4860), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4862), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4872), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5318), 1, + ACTIONS(5610), 1, + sym__special_character, + ACTIONS(5622), 1, sym_word, - ACTIONS(5322), 1, + ACTIONS(5626), 1, sym_test_operator, - STATE(1080), 1, + STATE(2512), 1, aux_sym__literal_repeat1, - STATE(1280), 1, + STATE(2769), 1, sym_concatenation, - ACTIONS(4840), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4864), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5320), 2, + ACTIONS(5624), 2, sym_raw_string, sym_ansi_c_string, - STATE(795), 9, + STATE(2737), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139718,47 +142425,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98741] = 19, + [101773] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5426), 1, + anon_sym_LPAREN, + ACTIONS(5428), 1, + aux_sym__c_word_token1, + ACTIONS(5430), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5432), 1, + anon_sym_DOLLAR, + ACTIONS(5434), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + aux_sym_number_token1, + ACTIONS(5438), 1, + aux_sym_number_token2, + ACTIONS(5440), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5444), 1, + anon_sym_BQUOTE, + ACTIONS(5446), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(2373), 1, + sym__c_terminator, + STATE(3631), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + STATE(4410), 1, + sym__for_body, + ACTIONS(5422), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(5424), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1928), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [101848] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(5334), 1, anon_sym_DOLLAR, - ACTIONS(4846), 1, + ACTIONS(5336), 1, sym__special_character, - ACTIONS(4848), 1, + ACTIONS(5338), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(5342), 1, aux_sym_number_token1, - ACTIONS(4854), 1, + ACTIONS(5344), 1, aux_sym_number_token2, - ACTIONS(4856), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4858), 1, + ACTIONS(5348), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4860), 1, + ACTIONS(5350), 1, anon_sym_BQUOTE, - ACTIONS(4862), 1, + ACTIONS(5352), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4872), 1, + ACTIONS(5358), 1, sym__brace_start, - ACTIONS(5324), 1, + ACTIONS(5628), 1, sym_word, - ACTIONS(5328), 1, + ACTIONS(5632), 1, sym_test_operator, - STATE(1088), 1, + STATE(3607), 1, aux_sym__literal_repeat1, - STATE(1279), 1, + STATE(3699), 1, sym_concatenation, - ACTIONS(4840), 2, + ACTIONS(5332), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4864), 2, + ACTIONS(5354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5326), 2, + ACTIONS(5630), 2, sym_raw_string, sym_ansi_c_string, - STATE(785), 9, + STATE(3549), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139768,47 +142528,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98810] = 19, + [101917] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5262), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5264), 1, - sym__special_character, - ACTIONS(5266), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5270), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5274), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5276), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5330), 1, + ACTIONS(5592), 1, + sym__special_character, + ACTIONS(5634), 1, sym_word, - ACTIONS(5334), 1, + ACTIONS(5638), 1, sym_test_operator, - STATE(3103), 1, + STATE(2512), 1, aux_sym__literal_repeat1, - STATE(3163), 1, + STATE(2769), 1, sym_concatenation, - ACTIONS(5260), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5282), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5332), 2, + ACTIONS(5636), 2, sym_raw_string, sym_ansi_c_string, - STATE(3032), 9, + STATE(2679), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139818,7 +142578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98879] = 18, + [101986] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(361), 1, @@ -139837,27 +142597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(385), 1, sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(5308), 1, sym_word, - ACTIONS(5338), 1, - anon_sym_RBRACK, - ACTIONS(5344), 1, + ACTIONS(5316), 1, sym_test_operator, + ACTIONS(5640), 1, + anon_sym_RBRACK, ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, + ACTIONS(5312), 2, sym__special_character, sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139867,7 +142627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98946] = 18, + [102053] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(361), 1, @@ -139886,13 +142646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(385), 1, sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(5308), 1, sym_word, - ACTIONS(5344), 1, + ACTIONS(5316), 1, sym_test_operator, - ACTIONS(5346), 1, + ACTIONS(5642), 1, anon_sym_RBRACK, ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, @@ -139900,13 +142660,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, + ACTIONS(5312), 2, sym__special_character, sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139916,47 +142676,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99013] = 19, + [102120] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5294), 1, + ACTIONS(4828), 1, sym__special_character, - ACTIONS(5296), 1, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(4834), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(4836), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(4840), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(4842), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, + ACTIONS(4854), 1, sym__brace_start, - ACTIONS(5348), 1, + ACTIONS(5644), 1, sym_word, - ACTIONS(5352), 1, + ACTIONS(5648), 1, sym_test_operator, - STATE(2502), 1, + STATE(1758), 1, aux_sym__literal_repeat1, - STATE(2823), 1, + STATE(1866), 1, sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(4822), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(4846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5350), 2, + ACTIONS(5646), 2, sym_raw_string, sym_ansi_c_string, - STATE(2571), 9, + STATE(1579), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -139966,47 +142726,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99082] = 19, + [102189] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(4826), 1, anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(4828), 1, + sym__special_character, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(4834), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(4836), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(4840), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(4842), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(4854), 1, sym__brace_start, - ACTIONS(5354), 1, + ACTIONS(5650), 1, sym_word, - ACTIONS(5356), 1, - sym__special_character, - ACTIONS(5360), 1, + ACTIONS(5654), 1, sym_test_operator, - STATE(2504), 1, + STATE(1781), 1, aux_sym__literal_repeat1, - STATE(2846), 1, + STATE(1868), 1, sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(4822), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5358), 2, + ACTIONS(5652), 2, sym_raw_string, sym_ansi_c_string, - STATE(2728), 9, + STATE(1575), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140016,47 +142776,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99151] = 19, + [102258] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5656), 1, + sym_word, + ACTIONS(5660), 1, anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(5662), 1, + sym__special_character, + ACTIONS(5664), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5668), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5670), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5674), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5676), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5678), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, - sym__brace_start, - ACTIONS(5362), 1, - sym_word, - ACTIONS(5364), 1, - sym__special_character, - ACTIONS(5368), 1, + ACTIONS(5682), 1, sym_test_operator, - STATE(2518), 1, + ACTIONS(5684), 1, + sym__brace_start, + STATE(3485), 1, aux_sym__literal_repeat1, - STATE(2860), 1, + STATE(3534), 1, sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5658), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5366), 2, + ACTIONS(5666), 2, sym_raw_string, sym_ansi_c_string, - STATE(2811), 9, + ACTIONS(5680), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3397), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140066,47 +142826,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99220] = 19, + [102327] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5660), 1, anon_sym_DOLLAR, - ACTIONS(5296), 1, + ACTIONS(5662), 1, + sym__special_character, + ACTIONS(5664), 1, anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(5668), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(5670), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5674), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5676), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(5678), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, + ACTIONS(5684), 1, sym__brace_start, - ACTIONS(5370), 1, + ACTIONS(5686), 1, sym_word, - ACTIONS(5372), 1, - sym__special_character, - ACTIONS(5376), 1, + ACTIONS(5690), 1, sym_test_operator, - STATE(2545), 1, + STATE(3488), 1, aux_sym__literal_repeat1, - STATE(2784), 1, + STATE(3530), 1, sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(5658), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(5680), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5374), 2, + ACTIONS(5688), 2, sym_raw_string, sym_ansi_c_string, - STATE(2378), 9, + STATE(3384), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140116,47 +142876,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99289] = 19, + [102396] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5692), 1, + sym_word, + ACTIONS(5696), 1, anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(5698), 1, + sym__special_character, + ACTIONS(5700), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5704), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5706), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5712), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5714), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5718), 1, + sym_test_operator, + ACTIONS(5720), 1, sym__brace_start, - ACTIONS(5356), 1, - sym__special_character, + STATE(3133), 1, + aux_sym__literal_repeat1, + STATE(3210), 1, + sym_concatenation, + ACTIONS(5694), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5702), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5716), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3096), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102465] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_DOLLAR, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, + aux_sym_number_token1, + ACTIONS(5374), 1, + aux_sym_number_token2, + ACTIONS(5376), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5378), 1, - sym_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, + anon_sym_BQUOTE, ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(5592), 1, + sym__special_character, + ACTIONS(5722), 1, + sym_word, + ACTIONS(5726), 1, sym_test_operator, - STATE(2508), 1, + STATE(2547), 1, aux_sym__literal_repeat1, - STATE(2789), 1, + STATE(2838), 1, sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5380), 2, + ACTIONS(5724), 2, sym_raw_string, sym_ansi_c_string, - STATE(2725), 9, + STATE(2704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140166,47 +142976,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99358] = 19, + [102534] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5696), 1, anon_sym_DOLLAR, - ACTIONS(5234), 1, + ACTIONS(5698), 1, sym__special_character, - ACTIONS(5236), 1, + ACTIONS(5700), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5704), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5706), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5712), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5714), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5720), 1, sym__brace_start, - ACTIONS(5384), 1, + ACTIONS(5728), 1, sym_word, - ACTIONS(5388), 1, + ACTIONS(5732), 1, sym_test_operator, - STATE(2498), 1, + STATE(3148), 1, aux_sym__literal_repeat1, - STATE(2814), 1, + STATE(3217), 1, sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5716), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5386), 2, + ACTIONS(5730), 2, sym_raw_string, sym_ansi_c_string, - STATE(2689), 9, + STATE(3100), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140216,47 +143026,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99427] = 19, + [102603] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5696), 1, anon_sym_DOLLAR, - ACTIONS(5294), 1, + ACTIONS(5698), 1, sym__special_character, - ACTIONS(5296), 1, + ACTIONS(5700), 1, anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(5704), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(5706), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5712), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(5714), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, + ACTIONS(5720), 1, sym__brace_start, - ACTIONS(5390), 1, + ACTIONS(5734), 1, sym_word, - ACTIONS(5394), 1, + ACTIONS(5738), 1, sym_test_operator, - STATE(2545), 1, + STATE(3146), 1, aux_sym__literal_repeat1, - STATE(2784), 1, + STATE(3215), 1, sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(5694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(5716), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5392), 2, + ACTIONS(5736), 2, sym_raw_string, sym_ansi_c_string, - STATE(2577), 9, + STATE(3095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140266,47 +143076,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99496] = 19, + [102672] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5740), 1, + sym__special_character, + STATE(2157), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5294), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1275), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [102713] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4918), 1, + anon_sym_DOLLAR, + ACTIONS(4920), 1, sym__special_character, - ACTIONS(5296), 1, + ACTIONS(4922), 1, anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(4926), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(4928), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(4930), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(4932), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(4934), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(4936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, + ACTIONS(4946), 1, sym__brace_start, - ACTIONS(5396), 1, + ACTIONS(5743), 1, sym_word, - ACTIONS(5400), 1, + ACTIONS(5747), 1, sym_test_operator, - STATE(2548), 1, + STATE(940), 1, aux_sym__literal_repeat1, - STATE(2780), 1, + STATE(1228), 1, sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(4914), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(4938), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5398), 2, + ACTIONS(5745), 2, sym_raw_string, sym_ansi_c_string, - STATE(2579), 9, + STATE(677), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140316,47 +143162,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99565] = 19, + [102782] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4373), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(4375), 1, + ACTIONS(4920), 1, sym__special_character, - ACTIONS(4377), 1, + ACTIONS(4922), 1, anon_sym_DQUOTE, - ACTIONS(4381), 1, + ACTIONS(4926), 1, aux_sym_number_token1, - ACTIONS(4383), 1, + ACTIONS(4928), 1, aux_sym_number_token2, - ACTIONS(4385), 1, + ACTIONS(4930), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4387), 1, + ACTIONS(4932), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4389), 1, + ACTIONS(4934), 1, anon_sym_BQUOTE, - ACTIONS(4391), 1, + ACTIONS(4936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4401), 1, + ACTIONS(4946), 1, sym__brace_start, - ACTIONS(5402), 1, + ACTIONS(5749), 1, sym_word, - ACTIONS(5406), 1, + ACTIONS(5753), 1, sym_test_operator, - STATE(1789), 1, + STATE(955), 1, aux_sym__literal_repeat1, - STATE(1860), 1, + STATE(1180), 1, sym_concatenation, - ACTIONS(4369), 2, + ACTIONS(4914), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4393), 2, + ACTIONS(4938), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5404), 2, + ACTIONS(5751), 2, sym_raw_string, sym_ansi_c_string, - STATE(1592), 9, + STATE(730), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140366,46 +143212,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99634] = 18, - ACTIONS(3), 1, + [102851] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, + ACTIONS(5454), 1, + sym__special_character, + ACTIONS(5456), 1, anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(5460), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(5462), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(5464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(5468), 1, + anon_sym_BQUOTE, + ACTIONS(5470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(5476), 1, sym__brace_start, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(5755), 1, sym_word, - ACTIONS(5344), 1, + ACTIONS(5759), 1, sym_test_operator, - ACTIONS(5408), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + STATE(3090), 1, + aux_sym__literal_repeat1, + STATE(3170), 1, + sym_concatenation, + ACTIONS(5450), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(5472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, - sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(5757), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(3018), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140415,19 +143262,57 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99701] = 7, + [102920] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_file_descriptor, + ACTIONS(5763), 1, + anon_sym_DQUOTE, + STATE(3139), 1, + sym_string, + ACTIONS(5765), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5761), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1127), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [102965] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, + ACTIONS(1139), 1, sym_file_descriptor, - ACTIONS(5412), 1, + ACTIONS(5763), 1, anon_sym_DQUOTE, - STATE(3118), 1, + STATE(3139), 1, sym_string, - ACTIONS(5414), 2, + ACTIONS(5765), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5410), 9, + ACTIONS(5761), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -140437,7 +143322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1143), 15, + ACTIONS(1137), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -140453,47 +143338,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [99746] = 19, + [103010] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(5276), 1, anon_sym_DOLLAR, - ACTIONS(4670), 1, - sym__special_character, - ACTIONS(4672), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(4676), 1, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(4678), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(4680), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4682), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(4686), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4696), 1, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(5416), 1, + ACTIONS(5524), 1, + sym__special_character, + ACTIONS(5767), 1, sym_word, - ACTIONS(5420), 1, + ACTIONS(5771), 1, sym_test_operator, - STATE(1262), 1, + STATE(2534), 1, aux_sym__literal_repeat1, - STATE(1295), 1, + STATE(2852), 1, sym_concatenation, - ACTIONS(4664), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4688), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5418), 2, + ACTIONS(5769), 2, sym_raw_string, sym_ansi_c_string, - STATE(947), 9, + STATE(2443), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140503,47 +143388,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99815] = 19, + [103079] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5422), 1, - sym_word, - ACTIONS(5426), 1, + ACTIONS(5276), 1, anon_sym_DOLLAR, - ACTIONS(5428), 1, - sym__special_character, - ACTIONS(5430), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(5436), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(5438), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5440), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5442), 1, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(5444), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5448), 1, - sym_test_operator, - ACTIONS(5450), 1, + ACTIONS(5300), 1, sym__brace_start, - STATE(3139), 1, + ACTIONS(5524), 1, + sym__special_character, + ACTIONS(5773), 1, + sym_word, + ACTIONS(5777), 1, + sym_test_operator, + STATE(2541), 1, aux_sym__literal_repeat1, - STATE(3198), 1, + STATE(2844), 1, sym_concatenation, - ACTIONS(5424), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5432), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5446), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3099), 9, + ACTIONS(5775), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2445), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140553,47 +143438,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99884] = 19, + [103148] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(4537), 1, anon_sym_DOLLAR, - ACTIONS(5234), 1, + ACTIONS(4539), 1, sym__special_character, - ACTIONS(5236), 1, + ACTIONS(4541), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(4545), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(4547), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(4549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(4551), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(4553), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4555), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(4565), 1, sym__brace_start, - ACTIONS(5452), 1, + ACTIONS(5779), 1, sym_word, - ACTIONS(5456), 1, + ACTIONS(5783), 1, sym_test_operator, - STATE(2518), 1, + STATE(1247), 1, aux_sym__literal_repeat1, - STATE(2860), 1, + STATE(1251), 1, sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(4533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4557), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5454), 2, + ACTIONS(5781), 2, sym_raw_string, sym_ansi_c_string, - STATE(2648), 9, + STATE(796), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140603,47 +143488,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99953] = 19, + [103217] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5426), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5428), 1, + ACTIONS(5366), 1, sym__special_character, - ACTIONS(5430), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5436), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5438), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5440), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5442), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5444), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5458), 1, + ACTIONS(5785), 1, sym_word, - ACTIONS(5462), 1, + ACTIONS(5789), 1, sym_test_operator, - STATE(3142), 1, + STATE(2604), 1, aux_sym__literal_repeat1, - STATE(3187), 1, + STATE(2821), 1, sym_concatenation, - ACTIONS(5424), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5446), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5460), 2, + ACTIONS(5787), 2, sym_raw_string, sym_ansi_c_string, - STATE(3058), 9, + STATE(3014), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140653,47 +143538,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100022] = 19, + [103286] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(4634), 1, + ACTIONS(5366), 1, sym__special_character, - ACTIONS(4636), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4640), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4642), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4644), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4646), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4648), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4650), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4660), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5464), 1, + ACTIONS(5791), 1, sym_word, - ACTIONS(5468), 1, + ACTIONS(5795), 1, sym_test_operator, - STATE(2140), 1, + STATE(2634), 1, aux_sym__literal_repeat1, - STATE(2296), 1, + STATE(2809), 1, sym_concatenation, - ACTIONS(4628), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4652), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5466), 2, + ACTIONS(5793), 2, sym_raw_string, sym_ansi_c_string, - STATE(1964), 9, + STATE(3025), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140703,100 +143588,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100091] = 22, - ACTIONS(3), 1, + [103355] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5474), 1, - anon_sym_LPAREN, - ACTIONS(5476), 1, - aux_sym__c_word_token1, - ACTIONS(5478), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5480), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5482), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5484), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5486), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5488), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(2326), 1, - sym__c_terminator, - STATE(3625), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - STATE(4308), 1, - sym__for_body, - ACTIONS(5470), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(5472), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(5398), 1, + sym__special_character, + ACTIONS(5797), 1, + sym_word, + ACTIONS(5801), 1, + sym_test_operator, + STATE(2604), 1, + aux_sym__literal_repeat1, + STATE(2821), 1, + sym_concatenation, + ACTIONS(5362), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5384), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5799), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2680), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [100166] = 19, + sym_process_substitution, + [103424] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5496), 1, - sym_word, - ACTIONS(5500), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5502), 1, - sym__special_character, - ACTIONS(5504), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5508), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5510), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5512), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5516), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5518), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5522), 1, - sym_test_operator, - ACTIONS(5524), 1, + ACTIONS(5388), 1, sym__brace_start, - STATE(3595), 1, + ACTIONS(5398), 1, + sym__special_character, + ACTIONS(5803), 1, + sym_word, + ACTIONS(5807), 1, + sym_test_operator, + STATE(2634), 1, aux_sym__literal_repeat1, - STATE(3691), 1, + STATE(2809), 1, sym_concatenation, - ACTIONS(5498), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5506), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5520), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3559), 9, + ACTIONS(5805), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2690), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140806,47 +143688,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100235] = 19, + [103493] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5526), 1, - sym_word, - ACTIONS(5528), 1, + ACTIONS(5544), 1, sym__special_character, - ACTIONS(5532), 1, + ACTIONS(5809), 1, + sym_word, + ACTIONS(5813), 1, sym_test_operator, - STATE(2498), 1, + STATE(2604), 1, aux_sym__literal_repeat1, - STATE(2814), 1, + STATE(2821), 1, sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5530), 2, + ACTIONS(5811), 2, sym_raw_string, sym_ansi_c_string, - STATE(2978), 9, + STATE(2805), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140856,85 +143738,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100304] = 7, - ACTIONS(3), 1, + [103562] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1141), 1, - sym_file_descriptor, - ACTIONS(5412), 1, + ACTIONS(4581), 1, + anon_sym_DOLLAR, + ACTIONS(4583), 1, + sym__special_character, + ACTIONS(4585), 1, anon_sym_DQUOTE, - STATE(3118), 1, + ACTIONS(4589), 1, + aux_sym_number_token1, + ACTIONS(4591), 1, + aux_sym_number_token2, + ACTIONS(4593), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4597), 1, + anon_sym_BQUOTE, + ACTIONS(4599), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(5815), 1, + sym_word, + ACTIONS(5819), 1, + sym_test_operator, + STATE(2175), 1, + aux_sym__literal_repeat1, + STATE(2309), 1, + sym_concatenation, + ACTIONS(4577), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4601), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5817), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2016), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(5414), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5410), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1133), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - [100349] = 19, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103631] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5502), 1, - sym__special_character, - ACTIONS(5504), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5508), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5510), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5512), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5516), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5518), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5524), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5534), 1, + ACTIONS(5544), 1, + sym__special_character, + ACTIONS(5821), 1, sym_word, - ACTIONS(5538), 1, + ACTIONS(5825), 1, sym_test_operator, - STATE(3569), 1, + STATE(2634), 1, aux_sym__literal_repeat1, - STATE(3667), 1, + STATE(2809), 1, sym_concatenation, - ACTIONS(5498), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5520), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5536), 2, + ACTIONS(5823), 2, sym_raw_string, sym_ansi_c_string, - STATE(3537), 9, + STATE(2790), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140944,47 +143838,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100418] = 19, + [103700] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(4581), 1, anon_sym_DOLLAR, - ACTIONS(4670), 1, + ACTIONS(4583), 1, sym__special_character, - ACTIONS(4672), 1, + ACTIONS(4585), 1, anon_sym_DQUOTE, - ACTIONS(4676), 1, + ACTIONS(4589), 1, aux_sym_number_token1, - ACTIONS(4678), 1, + ACTIONS(4591), 1, aux_sym_number_token2, - ACTIONS(4680), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(4597), 1, anon_sym_BQUOTE, - ACTIONS(4686), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4696), 1, + ACTIONS(4609), 1, sym__brace_start, - ACTIONS(5540), 1, + ACTIONS(5827), 1, sym_word, - ACTIONS(5544), 1, + ACTIONS(5831), 1, sym_test_operator, - STATE(1255), 1, + STATE(2180), 1, aux_sym__literal_repeat1, - STATE(1335), 1, + STATE(2195), 1, sym_concatenation, - ACTIONS(4664), 2, + ACTIONS(4577), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4688), 2, + ACTIONS(4601), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5542), 2, + ACTIONS(5829), 2, sym_raw_string, sym_ansi_c_string, - STATE(1034), 9, + STATE(2060), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -140994,46 +143888,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100487] = 18, - ACTIONS(3), 1, + [103769] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(5696), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, + ACTIONS(5698), 1, + sym__special_character, + ACTIONS(5700), 1, anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(5704), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(5706), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(5710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(5712), 1, + anon_sym_BQUOTE, + ACTIONS(5714), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(5720), 1, sym__brace_start, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(5833), 1, sym_word, - ACTIONS(5344), 1, + ACTIONS(5837), 1, sym_test_operator, - ACTIONS(5546), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + STATE(3142), 1, + aux_sym__literal_repeat1, + STATE(3227), 1, + sym_concatenation, + ACTIONS(5694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(5716), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, - sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(5835), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(3121), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141043,46 +143938,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100554] = 18, - ACTIONS(3), 1, + [103838] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(5556), 1, + sym__special_character, + STATE(2157), 1, + aux_sym__literal_repeat1, + ACTIONS(2995), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(365), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2997), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DQUOTE, - ACTIONS(369), 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, + [103879] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5276), 1, + anon_sym_DOLLAR, + ACTIONS(5278), 1, + sym__special_character, + ACTIONS(5280), 1, + anon_sym_DQUOTE, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(5292), 1, + anon_sym_BQUOTE, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(5839), 1, sym_word, - ACTIONS(5344), 1, + ACTIONS(5843), 1, sym_test_operator, - ACTIONS(5548), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + STATE(2534), 1, + aux_sym__literal_repeat1, + STATE(2852), 1, + sym_concatenation, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, - sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(5841), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(2657), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141092,100 +144024,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100621] = 22, - ACTIONS(3), 1, + [103948] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5474), 1, - anon_sym_LPAREN, - ACTIONS(5476), 1, - aux_sym__c_word_token1, - ACTIONS(5478), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5480), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5482), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5484), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5486), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5488), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(2326), 1, - sym__c_terminator, - STATE(3625), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - STATE(4333), 1, - sym__for_body, - ACTIONS(5470), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(5472), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(5610), 1, + sym__special_character, + ACTIONS(5845), 1, + sym_word, + ACTIONS(5849), 1, + sym_test_operator, + STATE(2634), 1, + aux_sym__literal_repeat1, + STATE(2809), 1, + sym_concatenation, + ACTIONS(5362), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5384), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5847), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2698), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [100696] = 19, + sym_process_substitution, + [104017] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5550), 1, - sym_word, - ACTIONS(5554), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(5556), 1, - sym__special_character, - ACTIONS(5558), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5562), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5564), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5566), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5568), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5570), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5572), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5576), 1, - sym_test_operator, - ACTIONS(5578), 1, + ACTIONS(5388), 1, sym__brace_start, - STATE(1698), 1, + ACTIONS(5610), 1, + sym__special_character, + ACTIONS(5851), 1, + sym_word, + ACTIONS(5855), 1, + sym_test_operator, + STATE(2604), 1, aux_sym__literal_repeat1, - STATE(1779), 1, + STATE(2821), 1, sym_concatenation, - ACTIONS(5552), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5560), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5574), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1423), 9, + ACTIONS(5853), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141195,47 +144124,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100765] = 19, + [104086] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4580), 1, + ACTIONS(5276), 1, anon_sym_DOLLAR, - ACTIONS(4582), 1, + ACTIONS(5278), 1, sym__special_character, - ACTIONS(4584), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(4588), 1, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(4590), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(4592), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4594), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4596), 1, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(4598), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4608), 1, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(5580), 1, + ACTIONS(5857), 1, sym_word, - ACTIONS(5584), 1, + ACTIONS(5861), 1, sym_test_operator, - STATE(1015), 1, + STATE(2541), 1, aux_sym__literal_repeat1, - STATE(1092), 1, + STATE(2844), 1, sym_concatenation, - ACTIONS(4576), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4600), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5582), 2, + ACTIONS(5859), 2, sym_raw_string, sym_ansi_c_string, - STATE(744), 9, + STATE(2654), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141245,47 +144174,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100834] = 19, + [104155] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5556), 1, + sym__special_character, + STATE(2157), 1, + aux_sym__literal_repeat1, + ACTIONS(3063), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3065), 19, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [104196] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(4580), 1, + ACTIONS(4537), 1, anon_sym_DOLLAR, - ACTIONS(4582), 1, + ACTIONS(4539), 1, sym__special_character, - ACTIONS(4584), 1, + ACTIONS(4541), 1, anon_sym_DQUOTE, - ACTIONS(4588), 1, + ACTIONS(4545), 1, aux_sym_number_token1, - ACTIONS(4590), 1, + ACTIONS(4547), 1, aux_sym_number_token2, - ACTIONS(4592), 1, + ACTIONS(4549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4594), 1, + ACTIONS(4551), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4596), 1, + ACTIONS(4553), 1, anon_sym_BQUOTE, - ACTIONS(4598), 1, + ACTIONS(4555), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4608), 1, + ACTIONS(4565), 1, sym__brace_start, - ACTIONS(5586), 1, + ACTIONS(5863), 1, sym_word, - ACTIONS(5590), 1, + ACTIONS(5867), 1, sym_test_operator, - STATE(992), 1, + STATE(1107), 1, aux_sym__literal_repeat1, - STATE(1103), 1, + STATE(1281), 1, sym_concatenation, - ACTIONS(4576), 2, + ACTIONS(4533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4600), 2, + ACTIONS(4557), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5588), 2, + ACTIONS(5865), 2, sym_raw_string, sym_ansi_c_string, - STATE(739), 9, + STATE(911), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141295,46 +144260,140 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100903] = 18, + [104265] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(2285), 1, + aux_sym_number_token1, + ACTIONS(2287), 1, + aux_sym_number_token2, + ACTIONS(2291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2303), 1, + sym__brace_start, + ACTIONS(5869), 1, + sym_word, + ACTIONS(5873), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, + ACTIONS(5877), 1, anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(5881), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5883), 1, + anon_sym_BQUOTE, + ACTIONS(5885), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5889), 1, + sym__comment_word, + ACTIONS(5871), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5875), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5879), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5887), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104329] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(5913), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5915), 1, + sym_variable_name, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1751), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [104397] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 1, + anon_sym_DQUOTE, + ACTIONS(4463), 1, + aux_sym_number_token1, + ACTIONS(4465), 1, + aux_sym_number_token2, + ACTIONS(4467), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4469), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4471), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(4473), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4483), 1, + sym__brace_start, + ACTIONS(5917), 1, sym_word, - ACTIONS(5344), 1, - sym_test_operator, - ACTIONS(5592), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + ACTIONS(5919), 1, + anon_sym_DOLLAR, + ACTIONS(5925), 1, + sym__comment_word, + ACTIONS(4451), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(4475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, + ACTIONS(5921), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(5923), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(2465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141344,47 +144403,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100970] = 19, - ACTIONS(63), 1, + [104461] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, - anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(5244), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(1729), 1, + sym__brace_start, + ACTIONS(4493), 1, + anon_sym_DQUOTE, + ACTIONS(4497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, - sym__brace_start, - ACTIONS(5364), 1, - sym__special_character, - ACTIONS(5594), 1, + ACTIONS(5927), 1, sym_word, - ACTIONS(5598), 1, - sym_test_operator, - STATE(2498), 1, - aux_sym__literal_repeat1, - STATE(2814), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5929), 1, + anon_sym_DOLLAR, + ACTIONS(5935), 1, + sym__comment_word, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4503), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5596), 2, + ACTIONS(5931), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5933), 2, sym_raw_string, sym_ansi_c_string, - STATE(2815), 9, + STATE(1000), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141394,47 +144450,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101039] = 19, - ACTIONS(63), 1, + [104525] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, - anon_sym_DOLLAR, - ACTIONS(5264), 1, - sym__special_character, - ACTIONS(5266), 1, + ACTIONS(4459), 1, anon_sym_DQUOTE, - ACTIONS(5270), 1, + ACTIONS(4463), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(4465), 1, aux_sym_number_token2, - ACTIONS(5274), 1, + ACTIONS(4467), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5276), 1, + ACTIONS(4469), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5278), 1, + ACTIONS(4471), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, + ACTIONS(4473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(4483), 1, sym__brace_start, - ACTIONS(5600), 1, + ACTIONS(5917), 1, sym_word, - ACTIONS(5604), 1, - sym_test_operator, - STATE(3066), 1, - aux_sym__literal_repeat1, - STATE(3156), 1, - sym_concatenation, - ACTIONS(5260), 2, + ACTIONS(5925), 1, + sym__comment_word, + ACTIONS(5937), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5282), 2, + ACTIONS(4475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5602), 2, + ACTIONS(5921), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5923), 2, sym_raw_string, sym_ansi_c_string, - STATE(3034), 9, + STATE(2465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141444,47 +144497,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101108] = 19, - ACTIONS(63), 1, + [104589] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(1469), 1, anon_sym_DOLLAR, - ACTIONS(5296), 1, - anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(1475), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(1477), 1, aux_sym_number_token2, - ACTIONS(5304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(1481), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(1495), 1, + sym__brace_start, + ACTIONS(4423), 1, + anon_sym_DQUOTE, + ACTIONS(4427), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4429), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(4431), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, - sym__brace_start, - ACTIONS(5372), 1, - sym__special_character, - ACTIONS(5606), 1, + ACTIONS(5939), 1, sym_word, - ACTIONS(5610), 1, - sym_test_operator, - STATE(2502), 1, - aux_sym__literal_repeat1, - STATE(2823), 1, - sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(5945), 1, + sym__comment_word, + ACTIONS(4417), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(4433), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5608), 2, + ACTIONS(5941), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5943), 2, sym_raw_string, sym_ansi_c_string, - STATE(2408), 9, + STATE(795), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141494,83 +144544,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101177] = 5, - ACTIONS(63), 1, + [104653] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5612), 1, - sym__special_character, - STATE(2130), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(1709), 1, aux_sym_number_token1, + ACTIONS(1711), 1, aux_sym_number_token2, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1281), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1729), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [101218] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5554), 1, - anon_sym_DOLLAR, - ACTIONS(5556), 1, - sym__special_character, - ACTIONS(5558), 1, + ACTIONS(4493), 1, anon_sym_DQUOTE, - ACTIONS(5562), 1, - aux_sym_number_token1, - ACTIONS(5564), 1, - aux_sym_number_token2, - ACTIONS(5566), 1, + ACTIONS(4497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5568), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5570), 1, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(5572), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5578), 1, - sym__brace_start, - ACTIONS(5615), 1, + ACTIONS(5927), 1, sym_word, - ACTIONS(5619), 1, - sym_test_operator, - STATE(1714), 1, - aux_sym__literal_repeat1, - STATE(1816), 1, - sym_concatenation, - ACTIONS(5552), 2, + ACTIONS(5935), 1, + sym__comment_word, + ACTIONS(5947), 1, + anon_sym_DOLLAR, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5574), 2, + ACTIONS(4503), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5617), 2, + ACTIONS(5931), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5933), 2, sym_raw_string, sym_ansi_c_string, - STATE(1466), 9, + STATE(1000), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141580,47 +144591,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101287] = 19, - ACTIONS(63), 1, + [104717] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(979), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(5364), 1, - sym__special_character, - ACTIONS(5621), 1, + ACTIONS(5949), 1, sym_word, - ACTIONS(5625), 1, - sym_test_operator, - STATE(2504), 1, - aux_sym__literal_repeat1, - STATE(2846), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5951), 1, + anon_sym_DOLLAR, + ACTIONS(5957), 1, + sym__comment_word, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5623), 2, + ACTIONS(5953), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5955), 2, sym_raw_string, sym_ansi_c_string, - STATE(2864), 9, + STATE(1435), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141630,47 +144638,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101356] = 19, - ACTIONS(63), 1, + [104781] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(975), 1, anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(979), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(5364), 1, - sym__special_character, - ACTIONS(5627), 1, + ACTIONS(5949), 1, sym_word, - ACTIONS(5631), 1, - sym_test_operator, - STATE(2508), 1, - aux_sym__literal_repeat1, - STATE(2789), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5957), 1, + sym__comment_word, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5629), 2, + ACTIONS(5953), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5955), 2, sym_raw_string, sym_ansi_c_string, - STATE(2819), 9, + STATE(1435), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141680,83 +144685,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101425] = 5, - ACTIONS(63), 1, + [104845] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - sym__special_character, - STATE(2130), 1, - aux_sym__literal_repeat1, - ACTIONS(2937), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(3610), 1, aux_sym_number_token1, + ACTIONS(3612), 1, aux_sym_number_token2, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2939), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3628), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [101466] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4455), 1, - anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, - aux_sym_number_token1, - ACTIONS(4465), 1, - aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, - sym__brace_start, - ACTIONS(4876), 1, - sym__special_character, - ACTIONS(5635), 1, + ACTIONS(5959), 1, sym_word, - ACTIONS(5639), 1, - sym_test_operator, - STATE(1256), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - ACTIONS(4451), 2, + ACTIONS(5961), 1, + anon_sym_DOLLAR, + ACTIONS(5967), 1, + sym__comment_word, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5637), 2, + ACTIONS(5963), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5965), 2, sym_raw_string, sym_ansi_c_string, - STATE(1132), 9, + STATE(3762), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141766,11 +144732,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101535] = 19, - ACTIONS(63), 1, + [104909] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, - anon_sym_DOLLAR, ACTIONS(4459), 1, anon_sym_DQUOTE, ACTIONS(4463), 1, @@ -141787,76 +144751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(4483), 1, sym__brace_start, - ACTIONS(4876), 1, - sym__special_character, - ACTIONS(5641), 1, + ACTIONS(5917), 1, sym_word, - ACTIONS(5645), 1, - sym_test_operator, - STATE(1246), 1, - aux_sym__literal_repeat1, - STATE(1336), 1, - sym_concatenation, + ACTIONS(5925), 1, + sym__comment_word, + ACTIONS(5969), 1, + anon_sym_DOLLAR, ACTIONS(4451), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(4475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5643), 2, - sym_raw_string, - sym_ansi_c_string, - 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, - [101604] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5647), 1, - sym_word, - ACTIONS(5651), 1, - anon_sym_DOLLAR, - ACTIONS(5653), 1, - sym__special_character, - ACTIONS(5655), 1, - anon_sym_DQUOTE, - ACTIONS(5659), 1, - aux_sym_number_token1, - ACTIONS(5661), 1, - aux_sym_number_token2, - ACTIONS(5663), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5665), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5667), 1, - anon_sym_BQUOTE, - ACTIONS(5669), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5673), 1, + ACTIONS(5921), 2, sym_test_operator, - ACTIONS(5675), 1, - sym__brace_start, - STATE(3476), 1, - aux_sym__literal_repeat1, - STATE(3521), 1, - sym_concatenation, - ACTIONS(5649), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5657), 2, + sym__special_character, + ACTIONS(5923), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5671), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3336), 9, + STATE(2465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -141866,117 +144779,108 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101673] = 19, + [104973] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5651), 1, + ACTIONS(5971), 1, + anon_sym_LPAREN, + ACTIONS(5973), 1, + anon_sym_BANG, + ACTIONS(5979), 1, anon_sym_DOLLAR, - ACTIONS(5653), 1, - sym__special_character, - ACTIONS(5655), 1, - anon_sym_DQUOTE, - ACTIONS(5659), 1, + ACTIONS(5981), 1, aux_sym_number_token1, - ACTIONS(5661), 1, + ACTIONS(5983), 1, aux_sym_number_token2, - ACTIONS(5663), 1, + ACTIONS(5985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5665), 1, + ACTIONS(5987), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5667), 1, + ACTIONS(5989), 1, anon_sym_BQUOTE, - ACTIONS(5669), 1, + ACTIONS(5991), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5675), 1, - sym__brace_start, - ACTIONS(5677), 1, - sym_word, - ACTIONS(5681), 1, - sym_test_operator, - STATE(3467), 1, - aux_sym__literal_repeat1, - STATE(3518), 1, - sym_concatenation, - ACTIONS(5649), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5671), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5679), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3343), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5993), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5995), 1, + sym_variable_name, + STATE(1830), 1, + sym__arithmetic_binary_expression, + STATE(1839), 1, + sym__arithmetic_ternary_expression, + STATE(1842), 1, + sym__arithmetic_unary_expression, + STATE(1884), 1, + sym__arithmetic_postfix_expression, + ACTIONS(5975), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5977), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1878), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [101742] = 22, - ACTIONS(3), 1, + [105041] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5474), 1, + ACTIONS(5971), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, - aux_sym__c_word_token1, - ACTIONS(5478), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5480), 1, + ACTIONS(5973), 1, + anon_sym_BANG, + ACTIONS(5979), 1, anon_sym_DOLLAR, - ACTIONS(5482), 1, - anon_sym_DQUOTE, - ACTIONS(5484), 1, + ACTIONS(5981), 1, aux_sym_number_token1, - ACTIONS(5486), 1, + ACTIONS(5983), 1, aux_sym_number_token2, - ACTIONS(5488), 1, + ACTIONS(5985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5987), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5989), 1, anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5991), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(2326), 1, - sym__c_terminator, - STATE(3625), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - STATE(4383), 1, - sym__for_body, - ACTIONS(5470), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(5472), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, + ACTIONS(5995), 1, + sym_variable_name, + ACTIONS(5997), 1, + aux_sym__simple_variable_name_token1, + STATE(1830), 1, + sym__arithmetic_binary_expression, + STATE(1839), 1, + sym__arithmetic_ternary_expression, + STATE(1842), 1, + sym__arithmetic_unary_expression, + STATE(1884), 1, + sym__arithmetic_postfix_expression, + ACTIONS(5975), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5977), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1879), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [101817] = 5, + [105109] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5633), 1, - sym__special_character, - STATE(2130), 1, - aux_sym__literal_repeat1, - ACTIONS(3060), 8, + ACTIONS(3067), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141985,9 +144889,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3062), 19, + ACTIONS(3069), 20, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -141996,6 +144901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -142004,48 +144910,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [101858] = 19, - ACTIONS(63), 1, + [105145] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, + ACTIONS(4882), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(4886), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(4890), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(4892), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(4894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(4896), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(4898), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(4900), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(4910), 1, sym__brace_start, - ACTIONS(4558), 1, - sym__special_character, - ACTIONS(5683), 1, + ACTIONS(5999), 1, sym_word, - ACTIONS(5687), 1, - sym_test_operator, - STATE(1246), 1, - aux_sym__literal_repeat1, - STATE(1336), 1, - sym_concatenation, - ACTIONS(4451), 2, + ACTIONS(6005), 1, + sym__comment_word, + ACTIONS(4878), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(4902), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5685), 2, + ACTIONS(6001), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6003), 2, sym_raw_string, sym_ansi_c_string, - STATE(1046), 9, + STATE(1072), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142055,47 +144957,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101927] = 19, - ACTIONS(63), 1, + [105209] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(4918), 1, anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(4922), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(4926), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(4928), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(4930), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(4932), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(4934), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(4946), 1, sym__brace_start, - ACTIONS(5528), 1, - sym__special_character, - ACTIONS(5689), 1, + ACTIONS(6007), 1, sym_word, - ACTIONS(5693), 1, - sym_test_operator, - STATE(2518), 1, - aux_sym__literal_repeat1, - STATE(2860), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(6013), 1, + sym__comment_word, + ACTIONS(4914), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4938), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5691), 2, + ACTIONS(6009), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6011), 2, sym_raw_string, sym_ansi_c_string, - STATE(3016), 9, + STATE(782), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142105,82 +145004,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101996] = 5, - ACTIONS(63), 1, + [105273] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 1, - sym__special_character, - STATE(2130), 1, - aux_sym__literal_repeat1, - ACTIONS(3040), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(2833), 1, + anon_sym_DQUOTE, + ACTIONS(2837), 1, aux_sym_number_token1, + ACTIONS(2839), 1, aux_sym_number_token2, + ACTIONS(2841), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2843), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3042), 19, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2845), 1, + anon_sym_BQUOTE, + ACTIONS(2847), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2855), 1, sym__brace_start, + ACTIONS(6015), 1, + sym_word, + ACTIONS(6017), 1, + anon_sym_DOLLAR, + ACTIONS(6023), 1, + sym__comment_word, + ACTIONS(2827), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(2849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6019), 2, sym_test_operator, - [102037] = 18, + sym__special_character, + ACTIONS(6021), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1646), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105337] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(2101), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(2107), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(2109), 1, aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(2113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(2125), 1, sym__brace_start, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(6025), 1, sym_word, - ACTIONS(5344), 1, - sym_test_operator, - ACTIONS(5695), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + ACTIONS(6031), 1, + anon_sym_DQUOTE, + ACTIONS(6035), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6037), 1, + anon_sym_BQUOTE, + ACTIONS(6039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6043), 1, + sym__comment_word, + ACTIONS(6027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5340), 2, + ACTIONS(6029), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(6033), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + ACTIONS(6041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(975), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142190,47 +145098,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102104] = 19, - ACTIONS(63), 1, + [105401] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, - anon_sym_DOLLAR, - ACTIONS(5264), 1, - sym__special_character, - ACTIONS(5266), 1, + ACTIONS(2833), 1, anon_sym_DQUOTE, - ACTIONS(5270), 1, + ACTIONS(2837), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(2839), 1, aux_sym_number_token2, - ACTIONS(5274), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5276), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5278), 1, + ACTIONS(2845), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, + ACTIONS(2847), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(2855), 1, sym__brace_start, - ACTIONS(5697), 1, + ACTIONS(6015), 1, sym_word, - ACTIONS(5701), 1, - sym_test_operator, - STATE(3115), 1, - aux_sym__literal_repeat1, - STATE(3168), 1, - sym_concatenation, - ACTIONS(5260), 2, + ACTIONS(6023), 1, + sym__comment_word, + ACTIONS(6045), 1, + anon_sym_DOLLAR, + ACTIONS(2827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5282), 2, + ACTIONS(2849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5699), 2, + ACTIONS(6019), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6021), 2, sym_raw_string, sym_ansi_c_string, - STATE(3010), 9, + STATE(1646), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142240,47 +145145,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102173] = 19, - ACTIONS(63), 1, + [105465] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(5703), 1, + ACTIONS(6047), 1, sym_word, - ACTIONS(5705), 1, - sym__special_character, - ACTIONS(5709), 1, - sym_test_operator, - STATE(2498), 1, - aux_sym__literal_repeat1, - STATE(2814), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(6049), 1, + anon_sym_DOLLAR, + ACTIONS(6055), 1, + sym__comment_word, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5707), 2, + ACTIONS(6051), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6053), 2, sym_raw_string, sym_ansi_c_string, - STATE(2732), 9, + STATE(835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142290,46 +145192,191 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102242] = 18, - ACTIONS(3), 1, + [105529] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6057), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1683), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [105597] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5971), 1, + anon_sym_LPAREN, + ACTIONS(5973), 1, + anon_sym_BANG, + ACTIONS(5979), 1, + anon_sym_DOLLAR, + ACTIONS(5981), 1, + aux_sym_number_token1, + ACTIONS(5983), 1, + aux_sym_number_token2, + ACTIONS(5985), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5987), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5989), 1, + anon_sym_BQUOTE, + ACTIONS(5991), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5995), 1, + sym_variable_name, + ACTIONS(6059), 1, + aux_sym__simple_variable_name_token1, + STATE(1830), 1, + sym__arithmetic_binary_expression, + STATE(1839), 1, + sym__arithmetic_ternary_expression, + STATE(1842), 1, + sym__arithmetic_unary_expression, + STATE(1884), 1, + sym__arithmetic_postfix_expression, + ACTIONS(5975), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5977), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1854), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [105665] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6061), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1845), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [105733] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(4401), 1, + anon_sym_BQUOTE, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(5344), 1, - sym_test_operator, - ACTIONS(5711), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + ACTIONS(6065), 1, + anon_sym_DOLLAR, + ACTIONS(6071), 1, + sym__comment_word, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, + ACTIONS(6067), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142339,47 +145386,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102309] = 19, - ACTIONS(63), 1, + [105797] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5234), 1, - sym__special_character, - ACTIONS(5236), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(5713), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(5717), 1, - sym_test_operator, - STATE(2508), 1, - aux_sym__literal_repeat1, - STATE(2789), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(6071), 1, + sym__comment_word, + ACTIONS(6073), 1, + anon_sym_DOLLAR, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5715), 2, + ACTIONS(6067), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(2620), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142389,47 +145433,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102378] = 19, - ACTIONS(63), 1, + [105861] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, + ACTIONS(2829), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(2833), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(2837), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(2839), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(2843), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(2845), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(2847), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(2855), 1, sym__brace_start, - ACTIONS(4558), 1, - sym__special_character, - ACTIONS(5719), 1, + ACTIONS(6015), 1, sym_word, - ACTIONS(5723), 1, - sym_test_operator, - STATE(1256), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - ACTIONS(4451), 2, + ACTIONS(6023), 1, + sym__comment_word, + ACTIONS(2827), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(2849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5721), 2, + ACTIONS(6019), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6021), 2, sym_raw_string, sym_ansi_c_string, - STATE(1016), 9, + STATE(1646), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142439,46 +145480,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102447] = 18, + [105925] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, - anon_sym_DOLLAR, - ACTIONS(365), 1, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(737), 1, sym__brace_start, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(6075), 1, sym_word, - ACTIONS(5344), 1, - sym_test_operator, - ACTIONS(5725), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + ACTIONS(6077), 1, + anon_sym_DOLLAR, + ACTIONS(6083), 1, + sym__comment_word, + ACTIONS(693), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(729), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, + ACTIONS(6079), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(6081), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(732), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142488,47 +145527,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102514] = 19, - ACTIONS(63), 1, + [105989] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(2469), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(2471), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(2473), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(2475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(2477), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(2479), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(2489), 1, sym__brace_start, - ACTIONS(5356), 1, - sym__special_character, - ACTIONS(5727), 1, + ACTIONS(6085), 1, sym_word, - ACTIONS(5731), 1, - sym_test_operator, - STATE(2498), 1, - aux_sym__literal_repeat1, - STATE(2814), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(6087), 1, + anon_sym_DOLLAR, + ACTIONS(6093), 1, + sym__comment_word, + ACTIONS(2459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(2481), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5729), 2, + ACTIONS(6089), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6091), 2, sym_raw_string, sym_ansi_c_string, - STATE(2675), 9, + STATE(1600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142538,95 +145574,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102583] = 17, + [106053] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_SLASH, - ACTIONS(4259), 1, - anon_sym_PERCENT, - ACTIONS(4261), 1, - anon_sym_COLON, - ACTIONS(4339), 1, - anon_sym_AT, - ACTIONS(5074), 1, - anon_sym_LBRACK, - STATE(4283), 1, - sym__expansion_operator, - STATE(4284), 1, - sym__expansion_max_length, - STATE(4285), 1, - sym__expansion_regex_removal, - STATE(4286), 1, - sym__expansion_regex_replacement, - STATE(4287), 1, - sym__expansion_regex, - STATE(4288), 1, - sym__expansion_expression, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(4275), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(4263), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(4273), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(4271), 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, - [102648] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(2469), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(2471), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(2473), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(2475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(2477), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(2479), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(2489), 1, sym__brace_start, - ACTIONS(5528), 1, - sym__special_character, - ACTIONS(5733), 1, + ACTIONS(6085), 1, sym_word, - ACTIONS(5737), 1, - sym_test_operator, - STATE(2508), 1, - aux_sym__literal_repeat1, - STATE(2789), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(6093), 1, + sym__comment_word, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(2459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(2481), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5735), 2, + ACTIONS(6089), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6091), 2, sym_raw_string, sym_ansi_c_string, - STATE(2977), 9, + STATE(1600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142636,47 +145621,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102717] = 19, - ACTIONS(63), 1, + [106117] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_DOLLAR, - ACTIONS(5296), 1, - anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(5304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, - anon_sym_BQUOTE, - ACTIONS(5310), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(5372), 1, - sym__special_character, - ACTIONS(5739), 1, + ACTIONS(5869), 1, sym_word, - ACTIONS(5743), 1, - sym_test_operator, - STATE(2500), 1, - aux_sym__literal_repeat1, - STATE(2816), 1, - sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(5877), 1, + anon_sym_DQUOTE, + ACTIONS(5881), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5883), 1, + anon_sym_BQUOTE, + ACTIONS(5885), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5889), 1, + sym__comment_word, + ACTIONS(6097), 1, + anon_sym_DOLLAR, + ACTIONS(5871), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5741), 2, + ACTIONS(5875), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5879), 2, sym_raw_string, sym_ansi_c_string, - STATE(2372), 9, + ACTIONS(5887), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142686,47 +145668,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102786] = 19, - ACTIONS(63), 1, + [106181] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(725), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, - sym__brace_start, - ACTIONS(5705), 1, - sym__special_character, - ACTIONS(5745), 1, - sym_word, - ACTIONS(5749), 1, - sym_test_operator, - STATE(2504), 1, - aux_sym__literal_repeat1, - STATE(2846), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(6075), 1, + sym_word, + ACTIONS(6083), 1, + sym__comment_word, + ACTIONS(6099), 1, + anon_sym_DOLLAR, + ACTIONS(693), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(729), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5747), 2, + ACTIONS(6079), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6081), 2, sym_raw_string, sym_ansi_c_string, - STATE(2699), 9, + STATE(732), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142736,97 +145715,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102855] = 19, + [106245] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(5236), 1, - anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, - sym__brace_start, - ACTIONS(5705), 1, - sym__special_character, - ACTIONS(5751), 1, - sym_word, - ACTIONS(5755), 1, - sym_test_operator, - STATE(2508), 1, - aux_sym__literal_repeat1, - STATE(2789), 1, - sym_concatenation, - ACTIONS(5230), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5753), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2684), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6101), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1721), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [102924] = 19, - ACTIONS(63), 1, + [106313] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_DOLLAR, - ACTIONS(5296), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5372), 1, - sym__special_character, - ACTIONS(5757), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(5761), 1, - sym_test_operator, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2780), 1, - sym_concatenation, - ACTIONS(5290), 2, + ACTIONS(6105), 1, + anon_sym_DOLLAR, + ACTIONS(6111), 1, + sym__comment_word, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5759), 2, + ACTIONS(6107), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(2441), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142836,47 +145811,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [102993] = 19, - ACTIONS(63), 1, + [106377] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, - anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(5244), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, - anon_sym_BQUOTE, - ACTIONS(5250), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(5528), 1, - sym__special_character, - ACTIONS(5763), 1, + ACTIONS(5869), 1, sym_word, - ACTIONS(5767), 1, - sym_test_operator, - STATE(2504), 1, - aux_sym__literal_repeat1, - STATE(2846), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(5877), 1, + anon_sym_DQUOTE, + ACTIONS(5881), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5883), 1, + anon_sym_BQUOTE, + ACTIONS(5885), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5889), 1, + sym__comment_word, + ACTIONS(6113), 1, + anon_sym_DOLLAR, + ACTIONS(5871), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5765), 2, + ACTIONS(5875), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5879), 2, sym_raw_string, sym_ansi_c_string, - STATE(3011), 9, + ACTIONS(5887), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142886,47 +145858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103062] = 19, - ACTIONS(63), 1, + [106441] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5426), 1, - anon_sym_DOLLAR, - ACTIONS(5428), 1, - sym__special_character, - ACTIONS(5430), 1, - anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(5436), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(5438), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5440), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5442), 1, - anon_sym_BQUOTE, - ACTIONS(5444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(5769), 1, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + ACTIONS(6115), 1, sym_word, - ACTIONS(5773), 1, - sym_test_operator, - STATE(3121), 1, - aux_sym__literal_repeat1, - STATE(3171), 1, - sym_concatenation, - ACTIONS(5424), 2, + ACTIONS(6117), 1, + anon_sym_DOLLAR, + ACTIONS(6123), 1, + sym__comment_word, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5446), 2, + ACTIONS(961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5771), 2, + ACTIONS(6119), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6121), 2, sym_raw_string, sym_ansi_c_string, - STATE(3106), 9, + STATE(1449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142936,47 +145905,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103131] = 19, - ACTIONS(63), 1, + [106505] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(4689), 1, sym__brace_start, - ACTIONS(5705), 1, - sym__special_character, - ACTIONS(5775), 1, + ACTIONS(6125), 1, sym_word, - ACTIONS(5779), 1, - sym_test_operator, - STATE(2518), 1, - aux_sym__literal_repeat1, - STATE(2860), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(6127), 1, + anon_sym_DOLLAR, + ACTIONS(6133), 1, + sym__comment_word, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5777), 2, + ACTIONS(6129), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6131), 2, sym_raw_string, sym_ansi_c_string, - STATE(2717), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -142986,47 +145952,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103200] = 19, - ACTIONS(63), 1, + [106569] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(2461), 1, anon_sym_DOLLAR, - ACTIONS(5502), 1, - sym__special_character, - ACTIONS(5504), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(5508), 1, + ACTIONS(2469), 1, aux_sym_number_token1, - ACTIONS(5510), 1, + ACTIONS(2471), 1, aux_sym_number_token2, - ACTIONS(5512), 1, + ACTIONS(2473), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5514), 1, + ACTIONS(2475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5516), 1, + ACTIONS(2477), 1, anon_sym_BQUOTE, - ACTIONS(5518), 1, + ACTIONS(2479), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5524), 1, + ACTIONS(2489), 1, sym__brace_start, - ACTIONS(5781), 1, + ACTIONS(6085), 1, sym_word, - ACTIONS(5785), 1, - sym_test_operator, - STATE(3564), 1, - aux_sym__literal_repeat1, - STATE(3701), 1, - sym_concatenation, - ACTIONS(5498), 2, + ACTIONS(6093), 1, + sym__comment_word, + ACTIONS(2459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5520), 2, + ACTIONS(2481), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5783), 2, + ACTIONS(6089), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6091), 2, sym_raw_string, sym_ansi_c_string, - STATE(3536), 9, + STATE(1600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143036,47 +145999,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103269] = 19, - ACTIONS(63), 1, + [106633] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(5356), 1, - sym__special_character, - ACTIONS(5787), 1, + ACTIONS(6135), 1, sym_word, - ACTIONS(5791), 1, - sym_test_operator, - STATE(2518), 1, - aux_sym__literal_repeat1, - STATE(2860), 1, - sym_concatenation, - ACTIONS(5230), 2, + ACTIONS(6137), 1, + anon_sym_DOLLAR, + ACTIONS(6143), 1, + sym__comment_word, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5789), 2, + ACTIONS(6139), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6141), 2, sym_raw_string, sym_ansi_c_string, - STATE(2664), 9, + STATE(2574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143086,47 +146046,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103338] = 19, - ACTIONS(63), 1, + [106697] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, - anon_sym_DOLLAR, - ACTIONS(4634), 1, - sym__special_character, - ACTIONS(4636), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(4640), 1, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(4642), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(4644), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4646), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4648), 1, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(4650), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4660), 1, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(5793), 1, + ACTIONS(6135), 1, sym_word, - ACTIONS(5797), 1, - sym_test_operator, - STATE(2143), 1, - aux_sym__literal_repeat1, - STATE(2338), 1, - sym_concatenation, - ACTIONS(4628), 2, + ACTIONS(6143), 1, + sym__comment_word, + ACTIONS(6145), 1, + anon_sym_DOLLAR, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4652), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5795), 2, + ACTIONS(6139), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6141), 2, sym_raw_string, sym_ansi_c_string, - STATE(2018), 9, + STATE(2574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143136,47 +146093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103407] = 19, - ACTIONS(63), 1, + [106761] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(5426), 1, - anon_sym_DOLLAR, - ACTIONS(5428), 1, - sym__special_character, - ACTIONS(5430), 1, - anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(5436), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(5438), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5440), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5442), 1, + ACTIONS(3628), 1, + sym__brace_start, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(5444), 1, + ACTIONS(4179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5450), 1, - sym__brace_start, - ACTIONS(5799), 1, + ACTIONS(5959), 1, sym_word, - ACTIONS(5803), 1, - sym_test_operator, - STATE(3126), 1, - aux_sym__literal_repeat1, - STATE(3176), 1, - sym_concatenation, - ACTIONS(5424), 2, + ACTIONS(5967), 1, + sym__comment_word, + ACTIONS(6147), 1, + anon_sym_DOLLAR, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5446), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5801), 2, + ACTIONS(5963), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5965), 2, sym_raw_string, sym_ansi_c_string, - STATE(3102), 9, + STATE(3762), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143186,47 +146140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103476] = 19, - ACTIONS(63), 1, + [106825] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, - anon_sym_DOLLAR, - ACTIONS(4457), 1, - sym__special_character, - ACTIONS(4459), 1, + ACTIONS(159), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(163), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(165), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(169), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(171), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(173), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(179), 1, sym__brace_start, - ACTIONS(5805), 1, + ACTIONS(6149), 1, sym_word, - ACTIONS(5809), 1, - sym_test_operator, - STATE(1256), 1, - aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - ACTIONS(4451), 2, + ACTIONS(6151), 1, + anon_sym_DOLLAR, + ACTIONS(6157), 1, + sym__comment_word, + ACTIONS(145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5807), 2, + ACTIONS(6153), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6155), 2, sym_raw_string, sym_ansi_c_string, - STATE(1471), 9, + STATE(358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143236,47 +146187,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103545] = 19, - ACTIONS(63), 1, + [106889] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, - anon_sym_DOLLAR, - ACTIONS(4457), 1, - sym__special_character, - ACTIONS(4459), 1, + ACTIONS(159), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(163), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(165), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(169), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(171), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(173), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(179), 1, sym__brace_start, - ACTIONS(5811), 1, + ACTIONS(6149), 1, sym_word, - ACTIONS(5815), 1, - sym_test_operator, - STATE(1246), 1, - aux_sym__literal_repeat1, - STATE(1336), 1, - sym_concatenation, - ACTIONS(4451), 2, + ACTIONS(6157), 1, + sym__comment_word, + ACTIONS(6159), 1, + anon_sym_DOLLAR, + ACTIONS(145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5813), 2, + ACTIONS(6153), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6155), 2, sym_raw_string, sym_ansi_c_string, - STATE(1512), 9, + STATE(358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143286,46 +146234,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103614] = 18, + [106953] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(1327), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(1333), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(1335), 1, aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(1353), 1, sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(4790), 1, + anon_sym_DQUOTE, + ACTIONS(4794), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4796), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(4798), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6161), 1, sym_word, - ACTIONS(5344), 1, - sym_test_operator, - ACTIONS(5817), 1, - anon_sym_RBRACK, - ACTIONS(348), 2, + ACTIONS(6167), 1, + sym__comment_word, + ACTIONS(4784), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(4800), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5340), 2, + ACTIONS(6163), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(5342), 2, + ACTIONS(6165), 2, sym_raw_string, sym_ansi_c_string, - STATE(1528), 9, + STATE(705), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143335,44 +146281,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103681] = 17, - ACTIONS(3), 1, + [107017] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4708), 1, - anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4714), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4716), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4718), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4720), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4722), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4732), 1, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6169), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1728), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [107085] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(204), 1, + aux_sym_number_token1, + ACTIONS(206), 1, + aux_sym_number_token2, + ACTIONS(210), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(5819), 1, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + ACTIONS(6115), 1, sym_word, - ACTIONS(5821), 1, - anon_sym_DOLLAR, - ACTIONS(5827), 1, + ACTIONS(6123), 1, sym__comment_word, - ACTIONS(4700), 2, + ACTIONS(6171), 1, + anon_sym_DOLLAR, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4724), 2, + ACTIONS(961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5823), 2, - sym__special_character, + ACTIONS(6119), 2, sym_test_operator, - ACTIONS(5825), 2, + sym__special_character, + ACTIONS(6121), 2, sym_raw_string, sym_ansi_c_string, - STATE(2388), 9, + STATE(1449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143382,44 +146377,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103745] = 17, + [107149] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(155), 1, + anon_sym_DOLLAR, + ACTIONS(159), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(163), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(165), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(169), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(171), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(173), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(179), 1, sym__brace_start, - ACTIONS(5829), 1, + ACTIONS(6149), 1, sym_word, - ACTIONS(5831), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6157), 1, sym__comment_word, - ACTIONS(4451), 2, + ACTIONS(145), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5833), 2, - sym__special_character, + ACTIONS(6153), 2, sym_test_operator, - ACTIONS(5835), 2, + sym__special_character, + ACTIONS(6155), 2, sym_raw_string, sym_ansi_c_string, - STATE(1085), 9, + STATE(358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143429,44 +146424,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103809] = 17, + [107213] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, + ACTIONS(1833), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1835), 1, aux_sym_number_token2, - ACTIONS(1605), 1, + ACTIONS(1839), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, + ACTIONS(1851), 1, sym__brace_start, - ACTIONS(4742), 1, + ACTIONS(6173), 1, + sym_word, + ACTIONS(6177), 1, + anon_sym_DOLLAR, + ACTIONS(6181), 1, anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(6185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(6187), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(6189), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5839), 1, - sym_word, - ACTIONS(5841), 1, - anon_sym_DOLLAR, - ACTIONS(5847), 1, + ACTIONS(6193), 1, sym__comment_word, - ACTIONS(4736), 2, + ACTIONS(6175), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5843), 2, - sym__special_character, + ACTIONS(6179), 2, sym_test_operator, - ACTIONS(5845), 2, + sym__special_character, + ACTIONS(6183), 2, sym_raw_string, sym_ansi_c_string, - STATE(1010), 9, + ACTIONS(6191), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(851), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143476,44 +146471,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103873] = 17, + [107277] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5486), 1, anon_sym_DQUOTE, - ACTIONS(5659), 1, + ACTIONS(5490), 1, aux_sym_number_token1, - ACTIONS(5661), 1, + ACTIONS(5492), 1, aux_sym_number_token2, - ACTIONS(5663), 1, + ACTIONS(5494), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5665), 1, + ACTIONS(5496), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5667), 1, + ACTIONS(5498), 1, anon_sym_BQUOTE, - ACTIONS(5669), 1, + ACTIONS(5500), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5675), 1, + ACTIONS(5506), 1, sym__brace_start, - ACTIONS(5849), 1, + ACTIONS(6195), 1, sym_word, - ACTIONS(5851), 1, + ACTIONS(6197), 1, anon_sym_DOLLAR, - ACTIONS(5857), 1, + ACTIONS(6203), 1, sym__comment_word, - ACTIONS(5649), 2, + ACTIONS(5480), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5671), 2, + ACTIONS(5502), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5853), 2, - sym__special_character, + ACTIONS(6199), 2, sym_test_operator, - ACTIONS(5855), 2, + sym__special_character, + ACTIONS(6201), 2, sym_raw_string, sym_ansi_c_string, - STATE(3488), 9, + STATE(1546), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143523,44 +146518,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103937] = 17, + [107341] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, + ACTIONS(1833), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1835), 1, aux_sym_number_token2, - ACTIONS(1605), 1, + ACTIONS(1839), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, + ACTIONS(1851), 1, sym__brace_start, - ACTIONS(4742), 1, + ACTIONS(6173), 1, + sym_word, + ACTIONS(6181), 1, anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(6185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(6187), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(6189), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5839), 1, - sym_word, - ACTIONS(5847), 1, + ACTIONS(6193), 1, sym__comment_word, - ACTIONS(5859), 1, + ACTIONS(6205), 1, anon_sym_DOLLAR, - ACTIONS(4736), 2, + ACTIONS(6175), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5843), 2, - sym__special_character, + ACTIONS(6179), 2, sym_test_operator, - ACTIONS(5845), 2, + sym__special_character, + ACTIONS(6183), 2, sym_raw_string, sym_ansi_c_string, - STATE(1010), 9, + ACTIONS(6191), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(851), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143570,44 +146565,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104001] = 17, + [107405] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(5482), 1, anon_sym_DOLLAR, - ACTIONS(365), 1, + ACTIONS(5486), 1, anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(5490), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(5492), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(5494), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(5496), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(5498), 1, + anon_sym_BQUOTE, + ACTIONS(5500), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(5506), 1, sym__brace_start, - ACTIONS(3182), 1, - anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(6195), 1, sym_word, - ACTIONS(5340), 1, + ACTIONS(6203), 1, sym__comment_word, - ACTIONS(348), 2, + ACTIONS(5480), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(5502), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5342), 2, + ACTIONS(6199), 2, + sym_test_operator, + sym__special_character, + ACTIONS(6201), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5344), 2, - sym__special_character, - sym_test_operator, - STATE(1528), 9, + STATE(1546), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143617,44 +146612,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104065] = 17, + [107469] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 1, + ACTIONS(5486), 1, anon_sym_DQUOTE, - ACTIONS(2469), 1, + ACTIONS(5490), 1, aux_sym_number_token1, - ACTIONS(2471), 1, + ACTIONS(5492), 1, aux_sym_number_token2, - ACTIONS(2473), 1, + ACTIONS(5494), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2475), 1, + ACTIONS(5496), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2477), 1, + ACTIONS(5498), 1, anon_sym_BQUOTE, - ACTIONS(2479), 1, + ACTIONS(5500), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2489), 1, + ACTIONS(5506), 1, sym__brace_start, - ACTIONS(5861), 1, + ACTIONS(6195), 1, sym_word, - ACTIONS(5863), 1, - anon_sym_DOLLAR, - ACTIONS(5869), 1, + ACTIONS(6203), 1, sym__comment_word, - ACTIONS(2459), 2, + ACTIONS(6207), 1, + anon_sym_DOLLAR, + ACTIONS(5480), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2481), 2, + ACTIONS(5502), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5865), 2, - sym__special_character, + ACTIONS(6199), 2, sym_test_operator, - ACTIONS(5867), 2, + sym__special_character, + ACTIONS(6201), 2, sym_raw_string, sym_ansi_c_string, - STATE(1543), 9, + STATE(1546), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143664,44 +146659,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104129] = 17, + [107533] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5296), 1, - anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(1333), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(1335), 1, aux_sym_number_token2, - ACTIONS(5304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(1353), 1, + sym__brace_start, + ACTIONS(4790), 1, + anon_sym_DQUOTE, + ACTIONS(4794), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4796), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(4798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, - sym__brace_start, - ACTIONS(5871), 1, + ACTIONS(6161), 1, sym_word, - ACTIONS(5873), 1, - anon_sym_DOLLAR, - ACTIONS(5879), 1, + ACTIONS(6167), 1, sym__comment_word, - ACTIONS(5290), 2, + ACTIONS(6209), 1, + anon_sym_DOLLAR, + ACTIONS(4784), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(4800), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5875), 2, - sym__special_character, + ACTIONS(6163), 2, sym_test_operator, - ACTIONS(5877), 2, + sym__special_character, + ACTIONS(6165), 2, sym_raw_string, sym_ansi_c_string, - STATE(2483), 9, + STATE(705), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143711,44 +146706,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104193] = 17, + [107597] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5296), 1, - anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(1333), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(1335), 1, aux_sym_number_token2, - ACTIONS(5304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(1339), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(1353), 1, + sym__brace_start, + ACTIONS(4790), 1, + anon_sym_DQUOTE, + ACTIONS(4794), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4796), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(4798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, - sym__brace_start, - ACTIONS(5871), 1, + ACTIONS(6161), 1, sym_word, - ACTIONS(5879), 1, + ACTIONS(6167), 1, sym__comment_word, - ACTIONS(5881), 1, + ACTIONS(6211), 1, anon_sym_DOLLAR, - ACTIONS(5290), 2, + ACTIONS(4784), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(4800), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5875), 2, - sym__special_character, + ACTIONS(6163), 2, sym_test_operator, - ACTIONS(5877), 2, + sym__special_character, + ACTIONS(6165), 2, sym_raw_string, sym_ansi_c_string, - STATE(2483), 9, + STATE(705), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143758,44 +146753,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104257] = 17, + [107661] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(2107), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(2109), 1, aux_sym_number_token2, - ACTIONS(4321), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(2113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, - anon_sym_BQUOTE, - ACTIONS(4327), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(2125), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(6025), 1, sym_word, - ACTIONS(5885), 1, - anon_sym_DOLLAR, - ACTIONS(5891), 1, + ACTIONS(6031), 1, + anon_sym_DQUOTE, + ACTIONS(6035), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6037), 1, + anon_sym_BQUOTE, + ACTIONS(6039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6043), 1, sym__comment_word, - ACTIONS(4305), 2, + ACTIONS(6213), 1, + anon_sym_DOLLAR, + ACTIONS(6027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, + ACTIONS(6029), 2, sym_test_operator, - ACTIONS(5889), 2, + sym__special_character, + ACTIONS(6033), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + ACTIONS(6041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(975), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143805,44 +146800,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104321] = 17, + [107725] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(5364), 1, anon_sym_DOLLAR, - ACTIONS(4672), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4676), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4678), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4680), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4682), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4686), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4696), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5893), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(5899), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(4664), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4688), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5895), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(5897), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(1214), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143852,44 +146847,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104385] = 17, + [107789] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, - anon_sym_DQUOTE, - ACTIONS(2833), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(2835), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(2837), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2839), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2841), 1, - anon_sym_BQUOTE, - ACTIONS(2843), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2851), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(5901), 1, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + ACTIONS(6115), 1, sym_word, - ACTIONS(5903), 1, - anon_sym_DOLLAR, - ACTIONS(5909), 1, + ACTIONS(6123), 1, sym__comment_word, - ACTIONS(2823), 2, + ACTIONS(6215), 1, + anon_sym_DOLLAR, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2845), 2, + ACTIONS(961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5905), 2, - sym__special_character, + ACTIONS(6119), 2, sym_test_operator, - ACTIONS(5907), 2, + sym__special_character, + ACTIONS(6121), 2, sym_raw_string, sym_ansi_c_string, - STATE(1742), 9, + STATE(1449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143899,44 +146894,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104449] = 17, + [107853] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 1, + ACTIONS(4581), 1, + anon_sym_DOLLAR, + ACTIONS(4585), 1, anon_sym_DQUOTE, - ACTIONS(4423), 1, + ACTIONS(4589), 1, aux_sym_number_token1, - ACTIONS(4425), 1, + ACTIONS(4591), 1, aux_sym_number_token2, - ACTIONS(4427), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4429), 1, + ACTIONS(4595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4431), 1, + ACTIONS(4597), 1, anon_sym_BQUOTE, - ACTIONS(4433), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4443), 1, + ACTIONS(4609), 1, sym__brace_start, - ACTIONS(5911), 1, + ACTIONS(6217), 1, sym_word, - ACTIONS(5913), 1, - anon_sym_DOLLAR, - ACTIONS(5919), 1, + ACTIONS(6223), 1, sym__comment_word, - ACTIONS(4411), 2, + ACTIONS(4577), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4435), 2, + ACTIONS(4601), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5915), 2, - sym__special_character, + ACTIONS(6219), 2, sym_test_operator, - ACTIONS(5917), 2, + sym__special_character, + ACTIONS(6221), 2, sym_raw_string, sym_ansi_c_string, - STATE(3060), 9, + STATE(2086), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -143946,80 +146941,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104513] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5921), 1, - aux_sym_concatenation_token1, - ACTIONS(5923), 1, - sym__concat, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - sym__special_character, - [104555] = 17, + [107917] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(2833), 1, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(2835), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(2837), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2839), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2841), 1, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(2843), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2851), 1, + ACTIONS(4689), 1, sym__brace_start, - ACTIONS(5901), 1, + ACTIONS(6125), 1, sym_word, - ACTIONS(5909), 1, + ACTIONS(6133), 1, sym__comment_word, - ACTIONS(5925), 1, + ACTIONS(6225), 1, anon_sym_DOLLAR, - ACTIONS(2823), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2845), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5905), 2, - sym__special_character, + ACTIONS(6129), 2, sym_test_operator, - ACTIONS(5907), 2, + sym__special_character, + ACTIONS(6131), 2, sym_raw_string, sym_ansi_c_string, - STATE(1742), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144029,44 +146988,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104619] = 17, - ACTIONS(3), 1, + [107981] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(45), 1, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6227), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1695), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [108049] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(4926), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(4928), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(4930), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(4932), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(4934), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(4936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(4946), 1, sym__brace_start, - ACTIONS(5927), 1, + ACTIONS(6007), 1, sym_word, - ACTIONS(5933), 1, + ACTIONS(6013), 1, sym__comment_word, - ACTIONS(13), 2, + ACTIONS(6229), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, + ACTIONS(4938), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5929), 2, - sym__special_character, + ACTIONS(6009), 2, sym_test_operator, - ACTIONS(5931), 2, + sym__special_character, + ACTIONS(6011), 2, sym_raw_string, sym_ansi_c_string, - STATE(790), 9, + STATE(782), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144076,44 +147084,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104683] = 17, + [108113] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(4585), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(4589), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(4591), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(4595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(4597), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(4609), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(6217), 1, sym_word, - ACTIONS(5891), 1, + ACTIONS(6223), 1, sym__comment_word, - ACTIONS(5935), 1, + ACTIONS(6231), 1, anon_sym_DOLLAR, - ACTIONS(4305), 2, + ACTIONS(4577), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(4601), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, + ACTIONS(6219), 2, sym_test_operator, - ACTIONS(5889), 2, + sym__special_character, + ACTIONS(6221), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + STATE(2086), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144123,44 +147131,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104747] = 17, + [108177] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_DOLLAR, - ACTIONS(3633), 1, + ACTIONS(4585), 1, + anon_sym_DQUOTE, + ACTIONS(4589), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(4591), 1, aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4595), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4597), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5937), 1, + ACTIONS(4609), 1, + sym__brace_start, + ACTIONS(6217), 1, sym_word, - ACTIONS(5943), 1, + ACTIONS(6223), 1, sym__comment_word, - ACTIONS(4135), 2, + ACTIONS(6233), 1, + anon_sym_DOLLAR, + ACTIONS(4577), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4151), 2, + ACTIONS(4601), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5939), 2, - sym__special_character, + ACTIONS(6219), 2, sym_test_operator, - ACTIONS(5941), 2, + sym__special_character, + ACTIONS(6221), 2, sym_raw_string, sym_ansi_c_string, - STATE(3726), 9, + STATE(2086), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144170,44 +147178,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104811] = 17, + [108241] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(4541), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(4545), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(4547), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(4549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(4551), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(4553), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(4555), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(4565), 1, sym__brace_start, - ACTIONS(5927), 1, + ACTIONS(6235), 1, sym_word, - ACTIONS(5933), 1, - sym__comment_word, - ACTIONS(5945), 1, + ACTIONS(6237), 1, anon_sym_DOLLAR, - ACTIONS(13), 2, + ACTIONS(6243), 1, + sym__comment_word, + ACTIONS(4533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, + ACTIONS(4557), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5929), 2, - sym__special_character, + ACTIONS(6239), 2, sym_test_operator, - ACTIONS(5931), 2, + sym__special_character, + ACTIONS(6241), 2, sym_raw_string, sym_ansi_c_string, - STATE(790), 9, + STATE(942), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144217,44 +147225,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104875] = 17, + [108305] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, - anon_sym_DOLLAR, - ACTIONS(2465), 1, + ACTIONS(4922), 1, anon_sym_DQUOTE, - ACTIONS(2469), 1, + ACTIONS(4926), 1, aux_sym_number_token1, - ACTIONS(2471), 1, + ACTIONS(4928), 1, aux_sym_number_token2, - ACTIONS(2473), 1, + ACTIONS(4930), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2475), 1, + ACTIONS(4932), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2477), 1, + ACTIONS(4934), 1, anon_sym_BQUOTE, - ACTIONS(2479), 1, + ACTIONS(4936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2489), 1, + ACTIONS(4946), 1, sym__brace_start, - ACTIONS(5861), 1, + ACTIONS(6007), 1, sym_word, - ACTIONS(5869), 1, + ACTIONS(6013), 1, sym__comment_word, - ACTIONS(2459), 2, + ACTIONS(6245), 1, + anon_sym_DOLLAR, + ACTIONS(4914), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2481), 2, + ACTIONS(4938), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5865), 2, - sym__special_character, + ACTIONS(6009), 2, sym_test_operator, - ACTIONS(5867), 2, + sym__special_character, + ACTIONS(6011), 2, sym_raw_string, sym_ansi_c_string, - STATE(1543), 9, + STATE(782), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144264,44 +147272,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104939] = 17, + [108369] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4541), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4545), 1, aux_sym_number_token1, - ACTIONS(4714), 1, + ACTIONS(4547), 1, aux_sym_number_token2, - ACTIONS(4716), 1, + ACTIONS(4549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4718), 1, + ACTIONS(4551), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4720), 1, + ACTIONS(4553), 1, anon_sym_BQUOTE, - ACTIONS(4722), 1, + ACTIONS(4555), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4732), 1, + ACTIONS(4565), 1, sym__brace_start, - ACTIONS(5819), 1, + ACTIONS(6235), 1, sym_word, - ACTIONS(5827), 1, + ACTIONS(6243), 1, sym__comment_word, - ACTIONS(5947), 1, + ACTIONS(6247), 1, anon_sym_DOLLAR, - ACTIONS(4700), 2, + ACTIONS(4533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4724), 2, + ACTIONS(4557), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5823), 2, - sym__special_character, + ACTIONS(6239), 2, sym_test_operator, - ACTIONS(5825), 2, + sym__special_character, + ACTIONS(6241), 2, sym_raw_string, sym_ansi_c_string, - STATE(2388), 9, + STATE(942), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144311,44 +147319,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105003] = 17, + [108433] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6047), 1, sym_word, - ACTIONS(5951), 1, - anon_sym_DOLLAR, - ACTIONS(5957), 1, + ACTIONS(6055), 1, sym__comment_word, - ACTIONS(5230), 2, + ACTIONS(6249), 1, + anon_sym_DOLLAR, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6051), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6053), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144358,91 +147366,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105067] = 17, - ACTIONS(3), 1, + [108497] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(1859), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(1863), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1877), 1, - sym__brace_start, - ACTIONS(5959), 1, - sym_word, - ACTIONS(5963), 1, - anon_sym_DOLLAR, - ACTIONS(5967), 1, - anon_sym_DQUOTE, - ACTIONS(5971), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5973), 1, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5975), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5979), 1, - sym__comment_word, - ACTIONS(5961), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5965), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5969), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5977), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(809), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6251), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1638), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [105131] = 17, + [108565] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5338), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5342), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5344), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5348), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5350), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5352), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5358), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6253), 1, sym_word, - ACTIONS(5957), 1, - sym__comment_word, - ACTIONS(5981), 1, + ACTIONS(6255), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(6261), 1, + sym__comment_word, + ACTIONS(5332), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6257), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6259), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(3610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144452,44 +147462,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105195] = 17, + [108629] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(5983), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(5985), 1, - anon_sym_DOLLAR, - ACTIONS(5991), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(693), 2, + ACTIONS(6263), 1, + anon_sym_DOLLAR, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5987), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(5989), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(706), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144499,44 +147509,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105259] = 17, + [108693] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(163), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(165), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(167), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(173), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(179), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(5993), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(5995), 1, - anon_sym_DOLLAR, - ACTIONS(6001), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(145), 2, + ACTIONS(6265), 1, + anon_sym_DOLLAR, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(175), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5997), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(5999), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(361), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144546,44 +147556,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105323] = 17, + [108757] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(159), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(163), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(165), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(167), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(173), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(179), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5993), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(6001), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(6003), 1, + ACTIONS(6267), 1, anon_sym_DOLLAR, - ACTIONS(145), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(175), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5997), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(5999), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(361), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144593,138 +147603,191 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105387] = 17, - ACTIONS(3), 1, + [108821] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5296), 1, - anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, - sym__brace_start, - ACTIONS(5871), 1, - sym_word, - ACTIONS(5879), 1, - sym__comment_word, - ACTIONS(6005), 1, - anon_sym_DOLLAR, - ACTIONS(5290), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5875), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5877), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2483), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6269), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1665), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [105451] = 17, - ACTIONS(3), 1, + [108889] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(2252), 1, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(6007), 1, - sym_word, - ACTIONS(6011), 1, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6271), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1684), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [108957] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6019), 1, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6021), 1, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6027), 1, - sym__comment_word, - ACTIONS(6009), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6013), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6017), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6025), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6273), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1706), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [105515] = 17, + [109025] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(5222), 1, + anon_sym_DQUOTE, + ACTIONS(5226), 1, aux_sym_number_token1, - ACTIONS(1507), 1, + ACTIONS(5228), 1, aux_sym_number_token2, - ACTIONS(1511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1525), 1, - sym__brace_start, - ACTIONS(4794), 1, - anon_sym_DQUOTE, - ACTIONS(4798), 1, + ACTIONS(5230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4800), 1, + ACTIONS(5234), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5236), 1, anon_sym_BQUOTE, - ACTIONS(4802), 1, + ACTIONS(5238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6029), 1, + ACTIONS(5244), 1, + sym__brace_start, + ACTIONS(6275), 1, sym_word, - ACTIONS(6031), 1, + ACTIONS(6277), 1, anon_sym_DOLLAR, - ACTIONS(6037), 1, + ACTIONS(6283), 1, sym__comment_word, - ACTIONS(4788), 2, + ACTIONS(5216), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4804), 2, + ACTIONS(5240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6033), 2, - sym__special_character, + ACTIONS(6279), 2, sym_test_operator, - ACTIONS(6035), 2, + sym__special_character, + ACTIONS(6281), 2, sym_raw_string, sym_ansi_c_string, - STATE(799), 9, + STATE(3756), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144734,44 +147797,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105579] = 17, + [109089] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6285), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1734), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [109157] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(713), 1, + ACTIONS(5222), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(5226), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(5228), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(5230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(5234), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(5236), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(5238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, + ACTIONS(5244), 1, sym__brace_start, - ACTIONS(5983), 1, + ACTIONS(6275), 1, sym_word, - ACTIONS(5991), 1, + ACTIONS(6283), 1, sym__comment_word, - ACTIONS(6039), 1, + ACTIONS(6287), 1, anon_sym_DOLLAR, - ACTIONS(693), 2, + ACTIONS(5216), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(5240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5987), 2, - sym__special_character, + ACTIONS(6279), 2, sym_test_operator, - ACTIONS(5989), 2, + sym__special_character, + ACTIONS(6281), 2, sym_raw_string, sym_ansi_c_string, - STATE(706), 9, + STATE(3756), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144781,44 +147893,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105643] = 17, + [109221] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6289), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1752), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [109289] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(1703), 1, + anon_sym_DOLLAR, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(2252), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2264), 1, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(6007), 1, - sym_word, - ACTIONS(6015), 1, + ACTIONS(4493), 1, anon_sym_DQUOTE, - ACTIONS(6019), 1, + ACTIONS(4497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6021), 1, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6027), 1, + ACTIONS(5927), 1, + sym_word, + ACTIONS(5935), 1, sym__comment_word, - ACTIONS(6041), 1, - anon_sym_DOLLAR, - ACTIONS(6009), 2, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6013), 2, - sym__special_character, + ACTIONS(4503), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5931), 2, sym_test_operator, - ACTIONS(6017), 2, + sym__special_character, + ACTIONS(5933), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6025), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1122), 9, + STATE(1000), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144828,44 +147989,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105707] = 17, + [109353] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 1, + ACTIONS(4455), 1, + anon_sym_DOLLAR, + ACTIONS(4459), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(4463), 1, aux_sym_number_token1, - ACTIONS(969), 1, + ACTIONS(4465), 1, aux_sym_number_token2, - ACTIONS(971), 1, + ACTIONS(4467), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, + ACTIONS(4469), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, + ACTIONS(4471), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, + ACTIONS(4473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, + ACTIONS(4483), 1, sym__brace_start, - ACTIONS(6043), 1, + ACTIONS(5917), 1, sym_word, - ACTIONS(6045), 1, - anon_sym_DOLLAR, - ACTIONS(6051), 1, + ACTIONS(5925), 1, sym__comment_word, - ACTIONS(949), 2, + ACTIONS(4451), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, + ACTIONS(4475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6047), 2, - sym__special_character, + ACTIONS(5921), 2, sym_test_operator, - ACTIONS(6049), 2, + sym__special_character, + ACTIONS(5923), 2, sym_raw_string, sym_ansi_c_string, - STATE(1419), 9, + STATE(2465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144875,44 +148036,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105771] = 17, + [109417] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(101), 1, + ACTIONS(4886), 1, anon_sym_DQUOTE, - ACTIONS(105), 1, + ACTIONS(4890), 1, aux_sym_number_token1, - ACTIONS(107), 1, + ACTIONS(4892), 1, aux_sym_number_token2, - ACTIONS(109), 1, + ACTIONS(4894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(111), 1, + ACTIONS(4896), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(113), 1, + ACTIONS(4898), 1, anon_sym_BQUOTE, - ACTIONS(115), 1, + ACTIONS(4900), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(125), 1, + ACTIONS(4910), 1, sym__brace_start, - ACTIONS(6053), 1, + ACTIONS(5999), 1, sym_word, - ACTIONS(6055), 1, - anon_sym_DOLLAR, - ACTIONS(6061), 1, + ACTIONS(6005), 1, sym__comment_word, - ACTIONS(75), 2, + ACTIONS(6291), 1, + anon_sym_DOLLAR, + ACTIONS(4878), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(117), 2, + ACTIONS(4902), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6057), 2, - sym__special_character, + ACTIONS(6001), 2, sym_test_operator, - ACTIONS(6059), 2, + sym__special_character, + ACTIONS(6003), 2, sym_raw_string, sym_ansi_c_string, - STATE(329), 9, + STATE(1072), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144922,44 +148083,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105835] = 17, + [109481] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5829), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(5837), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(6063), 1, + ACTIONS(6293), 1, anon_sym_DOLLAR, - ACTIONS(4451), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5833), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(5835), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(1085), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -144969,142 +148130,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105899] = 17, - ACTIONS(3), 1, + [109545] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(2829), 1, - anon_sym_DQUOTE, - ACTIONS(2833), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(2835), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(2837), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2839), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2841), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(2843), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2851), 1, - sym__brace_start, - ACTIONS(5901), 1, - sym_word, - ACTIONS(5909), 1, - sym__comment_word, - ACTIONS(2823), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2845), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5905), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5907), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1742), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6295), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1654), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [105963] = 21, - ACTIONS(3), 1, + [109613] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5474), 1, + ACTIONS(5891), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, - aux_sym__c_word_token1, - ACTIONS(5480), 1, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(5482), 1, - anon_sym_DQUOTE, - ACTIONS(5484), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5486), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5488), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6067), 1, - aux_sym_heredoc_redirect_token1, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(2476), 1, - sym__c_terminator, - STATE(3630), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - ACTIONS(5472), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6065), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6297), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1701), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [106035] = 17, + [109681] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4373), 1, - anon_sym_DOLLAR, - ACTIONS(4377), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4381), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4383), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4385), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4387), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4389), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4391), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4401), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(6069), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(6075), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(4369), 2, + ACTIONS(6299), 1, + anon_sym_DOLLAR, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4393), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6071), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(6073), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(1717), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145114,44 +148275,191 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106099] = 17, - ACTIONS(3), 1, + [109745] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4455), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(4459), 1, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6301), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1685), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [109813] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6303), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1656), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [109881] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6305), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1643), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [109949] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5829), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(5837), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(4451), 2, + ACTIONS(6307), 1, + anon_sym_DOLLAR, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5833), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(5835), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(1085), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145161,44 +148469,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106163] = 17, + [110013] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 1, + ACTIONS(5700), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(5704), 1, aux_sym_number_token1, - ACTIONS(969), 1, + ACTIONS(5706), 1, aux_sym_number_token2, - ACTIONS(971), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, + ACTIONS(5710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, + ACTIONS(5712), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, + ACTIONS(5714), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, + ACTIONS(5720), 1, sym__brace_start, - ACTIONS(6043), 1, + ACTIONS(6309), 1, sym_word, - ACTIONS(6051), 1, - sym__comment_word, - ACTIONS(6077), 1, + ACTIONS(6311), 1, anon_sym_DOLLAR, - ACTIONS(949), 2, + ACTIONS(6317), 1, + sym__comment_word, + ACTIONS(5694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, + ACTIONS(5716), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6047), 2, - sym__special_character, + ACTIONS(6313), 2, sym_test_operator, - ACTIONS(6049), 2, + sym__special_character, + ACTIONS(6315), 2, sym_raw_string, sym_ansi_c_string, - STATE(1419), 9, + STATE(3150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145208,44 +148516,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106227] = 17, - ACTIONS(3), 1, + [110077] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(200), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(206), 1, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6319), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1681), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [110145] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(212), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(993), 1, + ACTIONS(5869), 1, + sym_word, + ACTIONS(5877), 1, anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(5881), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3210), 1, + ACTIONS(5883), 1, anon_sym_BQUOTE, - ACTIONS(6079), 1, - sym_word, - ACTIONS(6085), 1, + ACTIONS(5885), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5889), 1, sym__comment_word, - ACTIONS(987), 2, + ACTIONS(6321), 1, + anon_sym_DOLLAR, + ACTIONS(5871), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6081), 2, - sym__special_character, + ACTIONS(5875), 2, sym_test_operator, - ACTIONS(6083), 2, + sym__special_character, + ACTIONS(5879), 2, sym_raw_string, sym_ansi_c_string, - STATE(1468), 9, + ACTIONS(5887), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145255,91 +148612,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106291] = 17, - ACTIONS(3), 1, + [110209] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4459), 1, - anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, - sym__brace_start, - ACTIONS(5829), 1, - sym_word, - ACTIONS(5837), 1, - sym__comment_word, - ACTIONS(6087), 1, - anon_sym_DOLLAR, - ACTIONS(4451), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5833), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5835), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1085), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6323), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1722), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [106355] = 17, + [110277] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 1, + ACTIONS(5700), 1, anon_sym_DQUOTE, - ACTIONS(5270), 1, + ACTIONS(5704), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(5706), 1, aux_sym_number_token2, - ACTIONS(5274), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5276), 1, + ACTIONS(5710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5712), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, + ACTIONS(5714), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(5720), 1, sym__brace_start, - ACTIONS(6089), 1, + ACTIONS(6309), 1, sym_word, - ACTIONS(6091), 1, - anon_sym_DOLLAR, - ACTIONS(6097), 1, + ACTIONS(6317), 1, sym__comment_word, - ACTIONS(5260), 2, + ACTIONS(6325), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5282), 2, + ACTIONS(5716), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6093), 2, - sym__special_character, + ACTIONS(6313), 2, sym_test_operator, - ACTIONS(6095), 2, + sym__special_character, + ACTIONS(6315), 2, sym_raw_string, sym_ansi_c_string, - STATE(3088), 9, + STATE(3150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145349,91 +148708,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106419] = 17, - ACTIONS(3), 1, + [110341] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5558), 1, - anon_sym_DQUOTE, - ACTIONS(5562), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5564), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5566), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5568), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5570), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5572), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5578), 1, - sym__brace_start, - ACTIONS(6099), 1, - sym_word, - ACTIONS(6101), 1, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6327), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1658), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [110409] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(6107), 1, - sym__comment_word, - ACTIONS(5552), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6103), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6105), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1534), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6329), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1724), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [106483] = 17, + [110477] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5558), 1, + ACTIONS(97), 1, + anon_sym_DOLLAR, + ACTIONS(101), 1, anon_sym_DQUOTE, - ACTIONS(5562), 1, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(5564), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(5566), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5568), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5570), 1, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(5572), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5578), 1, + ACTIONS(125), 1, sym__brace_start, - ACTIONS(6099), 1, + ACTIONS(6331), 1, sym_word, - ACTIONS(6107), 1, + ACTIONS(6337), 1, sym__comment_word, - ACTIONS(6109), 1, - anon_sym_DOLLAR, - ACTIONS(5552), 2, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5574), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6103), 2, - sym__special_character, + ACTIONS(6333), 2, sym_test_operator, - ACTIONS(6105), 2, + sym__special_character, + ACTIONS(6335), 2, sym_raw_string, sym_ansi_c_string, - STATE(1534), 9, + STATE(354), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145443,44 +148853,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106547] = 17, + [110541] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(101), 1, + ACTIONS(4978), 1, + anon_sym_DOLLAR, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(105), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(107), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(109), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(111), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(113), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(115), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(125), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(6053), 1, + ACTIONS(6339), 1, sym_word, - ACTIONS(6061), 1, + ACTIONS(6345), 1, sym__comment_word, - ACTIONS(6111), 1, - anon_sym_DOLLAR, - ACTIONS(75), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(117), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6057), 2, - sym__special_character, + ACTIONS(6341), 2, sym_test_operator, - ACTIONS(6059), 2, + sym__special_character, + ACTIONS(6343), 2, sym_raw_string, sym_ansi_c_string, - STATE(329), 9, + STATE(2927), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145490,44 +148900,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106611] = 17, - ACTIONS(3), 1, + [110605] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5266), 1, - anon_sym_DQUOTE, - ACTIONS(5270), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5274), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5276), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6347), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1753), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [110673] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1475), 1, + aux_sym_number_token1, + ACTIONS(1477), 1, + aux_sym_number_token2, + ACTIONS(1481), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1495), 1, sym__brace_start, - ACTIONS(6089), 1, + ACTIONS(4423), 1, + anon_sym_DQUOTE, + ACTIONS(4427), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4429), 1, + anon_sym_BQUOTE, + ACTIONS(4431), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5939), 1, sym_word, - ACTIONS(6097), 1, + ACTIONS(5945), 1, sym__comment_word, - ACTIONS(6113), 1, + ACTIONS(6349), 1, anon_sym_DOLLAR, - ACTIONS(5260), 2, + ACTIONS(4417), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5282), 2, + ACTIONS(4433), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6093), 2, - sym__special_character, + ACTIONS(5941), 2, sym_test_operator, - ACTIONS(6095), 2, + sym__special_character, + ACTIONS(5943), 2, sym_raw_string, sym_ansi_c_string, - STATE(3088), 9, + STATE(795), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145537,7 +148996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106675] = 17, + [110737] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(495), 1, @@ -145556,11 +149015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(519), 1, sym__brace_start, - ACTIONS(6115), 1, + ACTIONS(6351), 1, sym_word, - ACTIONS(6117), 1, + ACTIONS(6353), 1, anon_sym_DOLLAR, - ACTIONS(6123), 1, + ACTIONS(6359), 1, sym__comment_word, ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, @@ -145568,13 +149027,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6119), 2, - sym__special_character, + ACTIONS(6355), 2, sym_test_operator, - ACTIONS(6121), 2, + sym__special_character, + ACTIONS(6357), 2, sym_raw_string, sym_ansi_c_string, - STATE(639), 9, + STATE(623), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145584,7 +149043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106739] = 17, + [110801] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(495), 1, @@ -145603,11 +149062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(519), 1, sym__brace_start, - ACTIONS(6115), 1, + ACTIONS(6351), 1, sym_word, - ACTIONS(6123), 1, + ACTIONS(6359), 1, sym__comment_word, - ACTIONS(6125), 1, + ACTIONS(6361), 1, anon_sym_DOLLAR, ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, @@ -145615,13 +149074,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6119), 2, - sym__special_character, + ACTIONS(6355), 2, sym_test_operator, - ACTIONS(6121), 2, + sym__special_character, + ACTIONS(6357), 2, sym_raw_string, sym_ansi_c_string, - STATE(639), 9, + STATE(623), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145631,44 +149090,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106803] = 17, - ACTIONS(3), 1, + [110865] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6363), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1740), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [110933] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2279), 1, + anon_sym_DOLLAR, + ACTIONS(2285), 1, + aux_sym_number_token1, + ACTIONS(2287), 1, + aux_sym_number_token2, + ACTIONS(2291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(5869), 1, sym_word, - ACTIONS(5891), 1, + ACTIONS(5877), 1, + anon_sym_DQUOTE, + ACTIONS(5881), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5883), 1, + anon_sym_BQUOTE, + ACTIONS(5885), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5889), 1, sym__comment_word, - ACTIONS(6127), 1, - anon_sym_DOLLAR, - ACTIONS(4305), 2, + ACTIONS(5871), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, + ACTIONS(5875), 2, sym_test_operator, - ACTIONS(5889), 2, + sym__special_character, + ACTIONS(5879), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + ACTIONS(5887), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145678,44 +149186,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106867] = 17, + [110997] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5296), 1, - anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(5304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(1729), 1, + sym__brace_start, + ACTIONS(4493), 1, + anon_sym_DQUOTE, + ACTIONS(4497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, - sym__brace_start, - ACTIONS(5871), 1, + ACTIONS(5927), 1, sym_word, - ACTIONS(5879), 1, + ACTIONS(5935), 1, sym__comment_word, - ACTIONS(6129), 1, + ACTIONS(6365), 1, anon_sym_DOLLAR, - ACTIONS(5290), 2, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(4503), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5875), 2, - sym__special_character, + ACTIONS(5931), 2, sym_test_operator, - ACTIONS(5877), 2, + sym__special_character, + ACTIONS(5933), 2, sym_raw_string, sym_ansi_c_string, - STATE(2483), 9, + STATE(1000), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145725,91 +149233,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106931] = 17, - ACTIONS(3), 1, + [111061] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5262), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(5266), 1, - anon_sym_DQUOTE, - ACTIONS(5270), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5272), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5274), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5276), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5286), 1, - sym__brace_start, - ACTIONS(6089), 1, - sym_word, - ACTIONS(6097), 1, - sym__comment_word, - ACTIONS(5260), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6093), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6095), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3088), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6367), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1735), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [106995] = 17, + [111129] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, - anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(5891), 1, + ACTIONS(5312), 1, sym__comment_word, - ACTIONS(6131), 1, + ACTIONS(6369), 1, anon_sym_DOLLAR, - ACTIONS(4305), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5889), 2, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + ACTIONS(5316), 2, + sym_test_operator, + sym__special_character, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145819,91 +149329,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107059] = 17, - ACTIONS(3), 1, + [111193] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, - sym__brace_start, - ACTIONS(5883), 1, - sym_word, - ACTIONS(5891), 1, - sym__comment_word, - ACTIONS(6133), 1, - anon_sym_DOLLAR, - ACTIONS(4305), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5889), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2383), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6371), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1725), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107123] = 17, + [111261] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_DOLLAR, - ACTIONS(2216), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(2218), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(2222), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2234), 1, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(6135), 1, - sym_word, - ACTIONS(6141), 1, + ACTIONS(4493), 1, anon_sym_DQUOTE, - ACTIONS(6145), 1, + ACTIONS(4497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6147), 1, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(6149), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6153), 1, + ACTIONS(5927), 1, + sym_word, + ACTIONS(5935), 1, sym__comment_word, - ACTIONS(6137), 2, + ACTIONS(6373), 1, + anon_sym_DOLLAR, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6139), 2, - sym__special_character, + ACTIONS(4503), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5931), 2, sym_test_operator, - ACTIONS(6143), 2, + sym__special_character, + ACTIONS(5933), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1152), 9, + STATE(1000), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -145913,138 +149425,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107187] = 17, - ACTIONS(3), 1, + [111325] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, - sym__brace_start, - ACTIONS(5883), 1, - sym_word, - ACTIONS(5891), 1, - sym__comment_word, - ACTIONS(4305), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5889), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2383), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6375), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1693), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107251] = 17, - ACTIONS(3), 1, + [111393] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, - sym__brace_start, - ACTIONS(5883), 1, - sym_word, - ACTIONS(5891), 1, - sym__comment_word, - ACTIONS(6155), 1, - anon_sym_DOLLAR, - ACTIONS(4305), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5889), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2383), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6377), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1737), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107315] = 17, + [111461] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(41), 1, + anon_sym_DOLLAR, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(5829), 1, + ACTIONS(6379), 1, sym_word, - ACTIONS(5837), 1, + ACTIONS(6385), 1, sym__comment_word, - ACTIONS(6157), 1, - anon_sym_DOLLAR, - ACTIONS(4451), 2, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5833), 2, - sym__special_character, + ACTIONS(6381), 2, sym_test_operator, - ACTIONS(5835), 2, + sym__special_character, + ACTIONS(6383), 2, sym_raw_string, sym_ansi_c_string, - STATE(1085), 9, + STATE(867), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146054,185 +149570,193 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107379] = 17, - ACTIONS(3), 1, + [111525] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(155), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_DQUOTE, - ACTIONS(163), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(165), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(167), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(169), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(171), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(173), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(179), 1, - sym__brace_start, - ACTIONS(5993), 1, - sym_word, - ACTIONS(6001), 1, - sym__comment_word, - ACTIONS(145), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(175), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5997), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5999), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(361), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6387), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1662), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107443] = 17, + [111593] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(5426), 1, + anon_sym_LPAREN, + ACTIONS(5428), 1, + aux_sym__c_word_token1, + ACTIONS(5432), 1, + anon_sym_DOLLAR, + ACTIONS(5434), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(5436), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(5438), 1, aux_sym_number_token2, - ACTIONS(4467), 1, + ACTIONS(5440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(5442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, + ACTIONS(5444), 1, anon_sym_BQUOTE, - ACTIONS(4473), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, - sym__brace_start, - ACTIONS(5829), 1, - sym_word, - ACTIONS(5837), 1, - sym__comment_word, - ACTIONS(6159), 1, - anon_sym_DOLLAR, - ACTIONS(4451), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5833), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5835), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1085), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(6391), 1, + aux_sym_heredoc_redirect_token1, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(2532), 1, + sym__c_terminator, + STATE(3652), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + ACTIONS(5424), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6389), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(1928), 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, - [107507] = 17, - ACTIONS(3), 1, + [111665] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, - sym_word, - ACTIONS(5340), 1, - sym__comment_word, - ACTIONS(6161), 1, - anon_sym_DOLLAR, - ACTIONS(348), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5342), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5344), 2, - sym__special_character, - sym_test_operator, - STATE(1528), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6393), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1660), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107571] = 17, + [111733] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(1475), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(1477), 1, aux_sym_number_token2, - ACTIONS(373), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(1481), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(1495), 1, sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(4423), 1, + anon_sym_DQUOTE, + ACTIONS(4427), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4429), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(4431), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5939), 1, sym_word, - ACTIONS(5340), 1, + ACTIONS(5945), 1, sym__comment_word, - ACTIONS(6163), 1, + ACTIONS(6395), 1, anon_sym_DOLLAR, - ACTIONS(348), 2, + ACTIONS(4417), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(4433), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5342), 2, + ACTIONS(5941), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5943), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5344), 2, - sym__special_character, - sym_test_operator, - STATE(1528), 9, + STATE(795), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146242,91 +149766,126 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107635] = 17, - ACTIONS(3), 1, + [111797] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(1167), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(6165), 1, sym_word, - ACTIONS(6167), 1, - anon_sym_DOLLAR, - ACTIONS(6173), 1, - sym__comment_word, - ACTIONS(1059), 2, + ACTIONS(1169), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6169), 2, sym__special_character, - sym_test_operator, - ACTIONS(6171), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111833] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6397), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1623), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107699] = 17, + [111901] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR, - ACTIONS(4419), 1, - anon_sym_DQUOTE, - ACTIONS(4423), 1, + ACTIONS(4243), 1, aux_sym_number_token1, - ACTIONS(4425), 1, + ACTIONS(4245), 1, aux_sym_number_token2, - ACTIONS(4427), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4429), 1, + ACTIONS(4249), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4431), 1, + ACTIONS(4259), 1, + sym__brace_start, + ACTIONS(5154), 1, + anon_sym_DQUOTE, + ACTIONS(5158), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5160), 1, anon_sym_BQUOTE, - ACTIONS(4433), 1, + ACTIONS(5162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4443), 1, - sym__brace_start, - ACTIONS(5911), 1, + ACTIONS(6399), 1, sym_word, - ACTIONS(5919), 1, + ACTIONS(6405), 1, sym__comment_word, - ACTIONS(4411), 2, + ACTIONS(5150), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4435), 2, + ACTIONS(5164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5915), 2, - sym__special_character, + ACTIONS(6401), 2, sym_test_operator, - ACTIONS(5917), 2, + sym__special_character, + ACTIONS(6403), 2, sym_raw_string, sym_ansi_c_string, - STATE(3060), 9, + STATE(2750), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146336,44 +149895,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107763] = 17, + [111965] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(2107), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(2109), 1, aux_sym_number_token2, - ACTIONS(330), 1, + ACTIONS(2113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, + ACTIONS(2125), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(6025), 1, + sym_word, + ACTIONS(6031), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(6035), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, + ACTIONS(6037), 1, anon_sym_BQUOTE, - ACTIONS(6165), 1, - sym_word, - ACTIONS(6173), 1, + ACTIONS(6039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6043), 1, sym__comment_word, - ACTIONS(6175), 1, + ACTIONS(6407), 1, anon_sym_DOLLAR, - ACTIONS(1059), 2, + ACTIONS(6027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6169), 2, - sym__special_character, + ACTIONS(6029), 2, sym_test_operator, - ACTIONS(6171), 2, + sym__special_character, + ACTIONS(6033), 2, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, + ACTIONS(6041), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(975), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146383,232 +149942,420 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107827] = 17, - ACTIONS(3), 1, + [112029] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(280), 1, - anon_sym_DQUOTE, - ACTIONS(284), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(290), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(292), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(294), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(304), 1, - sym__brace_start, - ACTIONS(6177), 1, - sym_word, - ACTIONS(6179), 1, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6409), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1630), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [112097] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(6185), 1, - sym__comment_word, - ACTIONS(242), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(296), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6181), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6411), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1635), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107891] = 17, - ACTIONS(3), 1, + [112165] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(1859), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(1863), 1, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1877), 1, - sym__brace_start, - ACTIONS(5959), 1, - sym_word, - ACTIONS(5967), 1, - anon_sym_DQUOTE, - ACTIONS(5971), 1, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6413), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1689), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [112233] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5973), 1, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5975), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5979), 1, - sym__comment_word, - ACTIONS(6187), 1, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6415), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1731), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [112301] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(5961), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5965), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5969), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5977), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(809), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6417), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1675), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [112369] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, + aux_sym_number_token1, + ACTIONS(5903), 1, + aux_sym_number_token2, + ACTIONS(5905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6419), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1682), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [107955] = 17, - ACTIONS(3), 1, + [112437] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5651), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(5655), 1, - anon_sym_DQUOTE, - ACTIONS(5659), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5661), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5663), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5665), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5667), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5669), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5675), 1, - sym__brace_start, - ACTIONS(5849), 1, - sym_word, - ACTIONS(5857), 1, - sym__comment_word, - ACTIONS(5649), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5671), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5853), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5855), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6421), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1690), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [108019] = 17, - ACTIONS(3), 1, + [112505] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5554), 1, + ACTIONS(3003), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5558), 1, - anon_sym_DQUOTE, - ACTIONS(5562), 1, aux_sym_number_token1, - ACTIONS(5564), 1, aux_sym_number_token2, - ACTIONS(5566), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5568), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5570), 1, - anon_sym_BQUOTE, - ACTIONS(5572), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5578), 1, - sym__brace_start, - ACTIONS(6099), 1, sym_word, - ACTIONS(6107), 1, - sym__comment_word, - ACTIONS(5552), 2, + ACTIONS(3005), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5574), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6103), 2, sym__special_character, - sym_test_operator, - ACTIONS(6105), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1534), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108083] = 17, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112541] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 1, + ACTIONS(4537), 1, + anon_sym_DOLLAR, + ACTIONS(4541), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(4545), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(4547), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(4549), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(4551), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(4553), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(4555), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, + ACTIONS(4565), 1, sym__brace_start, - ACTIONS(6189), 1, + ACTIONS(6235), 1, sym_word, - ACTIONS(6191), 1, - anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(6243), 1, sym__comment_word, - ACTIONS(389), 2, + ACTIONS(4533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, + ACTIONS(4557), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6193), 2, - sym__special_character, + ACTIONS(6239), 2, sym_test_operator, - ACTIONS(6195), 2, + sym__special_character, + ACTIONS(6241), 2, sym_raw_string, sym_ansi_c_string, - STATE(777), 9, + STATE(942), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146618,138 +150365,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108147] = 17, - ACTIONS(3), 1, + [112605] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(413), 1, - anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(5971), 1, + anon_sym_LPAREN, + ACTIONS(5973), 1, + anon_sym_BANG, + ACTIONS(5979), 1, + anon_sym_DOLLAR, + ACTIONS(5981), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(5983), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(5985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(5987), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(5989), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(5991), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(6189), 1, - sym_word, - ACTIONS(6197), 1, - sym__comment_word, - ACTIONS(6199), 1, - anon_sym_DOLLAR, - ACTIONS(389), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6193), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6195), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(777), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5995), 1, + sym_variable_name, + ACTIONS(6423), 1, + aux_sym__simple_variable_name_token1, + STATE(1830), 1, + sym__arithmetic_binary_expression, + STATE(1839), 1, + sym__arithmetic_ternary_expression, + STATE(1842), 1, + sym__arithmetic_unary_expression, + STATE(1884), 1, + sym__arithmetic_postfix_expression, + ACTIONS(5975), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5977), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1856), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [108211] = 17, - ACTIONS(3), 1, + [112673] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(280), 1, - anon_sym_DQUOTE, - ACTIONS(284), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(290), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(292), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(294), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(304), 1, - sym__brace_start, - ACTIONS(6177), 1, - sym_word, - ACTIONS(6185), 1, - sym__comment_word, - ACTIONS(6201), 1, - anon_sym_DOLLAR, - ACTIONS(242), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(296), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6181), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(403), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6425), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1733), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [108275] = 17, + [112741] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 1, + ACTIONS(5664), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(5668), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(5670), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(5674), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(5676), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(5678), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, + ACTIONS(5684), 1, sym__brace_start, - ACTIONS(6189), 1, + ACTIONS(6427), 1, sym_word, - ACTIONS(6197), 1, - sym__comment_word, - ACTIONS(6203), 1, + ACTIONS(6429), 1, anon_sym_DOLLAR, - ACTIONS(389), 2, + ACTIONS(6435), 1, + sym__comment_word, + ACTIONS(5658), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, + ACTIONS(5680), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6193), 2, - sym__special_character, + ACTIONS(6431), 2, sym_test_operator, - ACTIONS(6195), 2, + sym__special_character, + ACTIONS(6433), 2, sym_raw_string, sym_ansi_c_string, - STATE(777), 9, + STATE(3495), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146759,44 +150510,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108339] = 17, + [112805] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 1, + ACTIONS(5664), 1, anon_sym_DQUOTE, - ACTIONS(4381), 1, + ACTIONS(5668), 1, aux_sym_number_token1, - ACTIONS(4383), 1, + ACTIONS(5670), 1, aux_sym_number_token2, - ACTIONS(4385), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4387), 1, + ACTIONS(5674), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4389), 1, + ACTIONS(5676), 1, anon_sym_BQUOTE, - ACTIONS(4391), 1, + ACTIONS(5678), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4401), 1, + ACTIONS(5684), 1, sym__brace_start, - ACTIONS(6069), 1, + ACTIONS(6427), 1, sym_word, - ACTIONS(6075), 1, + ACTIONS(6435), 1, sym__comment_word, - ACTIONS(6205), 1, + ACTIONS(6437), 1, anon_sym_DOLLAR, - ACTIONS(4369), 2, + ACTIONS(5658), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4393), 2, + ACTIONS(5680), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6071), 2, - sym__special_character, + ACTIONS(6431), 2, sym_test_operator, - ACTIONS(6073), 2, + sym__special_character, + ACTIONS(6433), 2, sym_raw_string, sym_ansi_c_string, - STATE(1717), 9, + STATE(3495), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146806,44 +150557,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108403] = 17, + [112869] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(491), 1, + ACTIONS(361), 1, anon_sym_DOLLAR, - ACTIONS(495), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(499), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(501), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(503), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(505), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(507), 1, - anon_sym_BQUOTE, - ACTIONS(509), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(519), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(6115), 1, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(6123), 1, + ACTIONS(5312), 1, sym__comment_word, - ACTIONS(455), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(511), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6119), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6121), 2, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - STATE(639), 9, + ACTIONS(5316), 2, + sym_test_operator, + sym__special_character, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146853,91 +150604,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108467] = 17, + [112933] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 1, + ACTIONS(5338), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(5342), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(5344), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(5348), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(5350), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(5352), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, + ACTIONS(5358), 1, sym__brace_start, - ACTIONS(6189), 1, + ACTIONS(6253), 1, sym_word, - ACTIONS(6197), 1, + ACTIONS(6261), 1, sym__comment_word, - ACTIONS(6207), 1, + ACTIONS(6439), 1, anon_sym_DOLLAR, - ACTIONS(389), 2, + ACTIONS(5332), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, + ACTIONS(5354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6193), 2, - sym__special_character, + ACTIONS(6257), 2, sym_test_operator, - ACTIONS(6195), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(777), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108531] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2152), 1, - aux_sym_number_token1, - ACTIONS(2154), 1, - aux_sym_number_token2, - ACTIONS(2158), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2170), 1, - sym__brace_start, - ACTIONS(6209), 1, - sym_word, - ACTIONS(6213), 1, - anon_sym_DOLLAR, - ACTIONS(6217), 1, - anon_sym_DQUOTE, - ACTIONS(6221), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6223), 1, - anon_sym_BQUOTE, - ACTIONS(6225), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6229), 1, - sym__comment_word, - ACTIONS(6211), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6215), 2, sym__special_character, - sym_test_operator, - ACTIONS(6219), 2, + ACTIONS(6259), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6227), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(931), 9, + STATE(3610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -146947,91 +150651,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108595] = 17, - ACTIONS(3), 1, + [112997] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4377), 1, - anon_sym_DQUOTE, - ACTIONS(4381), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4383), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4385), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4387), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4389), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4391), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4401), 1, - sym__brace_start, - ACTIONS(6069), 1, - sym_word, - ACTIONS(6075), 1, - sym__comment_word, - ACTIONS(6231), 1, - anon_sym_DOLLAR, - ACTIONS(4369), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6071), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6073), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1717), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6441), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1756), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [108659] = 17, + [113065] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(2154), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(2158), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2170), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(6209), 1, + ACTIONS(5869), 1, sym_word, - ACTIONS(6217), 1, + ACTIONS(5877), 1, anon_sym_DQUOTE, - ACTIONS(6221), 1, + ACTIONS(5881), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6223), 1, + ACTIONS(5883), 1, anon_sym_BQUOTE, - ACTIONS(6225), 1, + ACTIONS(5885), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6229), 1, + ACTIONS(5889), 1, sym__comment_word, - ACTIONS(6233), 1, + ACTIONS(6443), 1, anon_sym_DOLLAR, - ACTIONS(6211), 2, + ACTIONS(5871), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6215), 2, - sym__special_character, + ACTIONS(5875), 2, sym_test_operator, - ACTIONS(6219), 2, + sym__special_character, + ACTIONS(5879), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6227), 2, + ACTIONS(5887), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(931), 9, + STATE(1223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147041,44 +150747,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108723] = 17, + [113129] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5426), 1, + ACTIONS(198), 1, anon_sym_DOLLAR, - ACTIONS(5430), 1, - anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(5436), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(5438), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5440), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5442), 1, - anon_sym_BQUOTE, - ACTIONS(5444), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(6235), 1, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + ACTIONS(6115), 1, sym_word, - ACTIONS(6241), 1, + ACTIONS(6123), 1, sym__comment_word, - ACTIONS(5424), 2, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5446), 2, + ACTIONS(961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6237), 2, - sym__special_character, + ACTIONS(6119), 2, sym_test_operator, - ACTIONS(6239), 2, + sym__special_character, + ACTIONS(6121), 2, sym_raw_string, sym_ansi_c_string, - STATE(3127), 9, + STATE(1449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147088,44 +150794,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108787] = 17, + [113193] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, - anon_sym_DOLLAR, - ACTIONS(4233), 1, + ACTIONS(2285), 1, aux_sym_number_token1, - ACTIONS(4235), 1, + ACTIONS(2287), 1, aux_sym_number_token2, - ACTIONS(4239), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4249), 1, + ACTIONS(2303), 1, sym__brace_start, - ACTIONS(5158), 1, + ACTIONS(5869), 1, + sym_word, + ACTIONS(5877), 1, anon_sym_DQUOTE, - ACTIONS(5162), 1, + ACTIONS(5881), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(5883), 1, anon_sym_BQUOTE, - ACTIONS(5166), 1, + ACTIONS(5885), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6243), 1, - sym_word, - ACTIONS(6249), 1, + ACTIONS(5889), 1, sym__comment_word, - ACTIONS(5154), 2, + ACTIONS(6445), 1, + anon_sym_DOLLAR, + ACTIONS(5871), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5168), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6245), 2, - sym__special_character, + ACTIONS(5875), 2, sym_test_operator, - ACTIONS(6247), 2, + sym__special_character, + ACTIONS(5879), 2, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + ACTIONS(5887), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147135,44 +150841,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108851] = 17, + [113257] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(5244), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, - anon_sym_BQUOTE, - ACTIONS(5250), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(342), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(6447), 1, sym_word, - ACTIONS(5957), 1, - sym__comment_word, - ACTIONS(6251), 1, + ACTIONS(6449), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(6455), 1, + sym__comment_word, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147182,44 +150888,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108915] = 17, + [113321] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_DOLLAR, - ACTIONS(5094), 1, + ACTIONS(5456), 1, anon_sym_DQUOTE, - ACTIONS(5098), 1, + ACTIONS(5460), 1, aux_sym_number_token1, - ACTIONS(5100), 1, + ACTIONS(5462), 1, aux_sym_number_token2, - ACTIONS(5102), 1, + ACTIONS(5464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5106), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5108), 1, + ACTIONS(5468), 1, anon_sym_BQUOTE, - ACTIONS(5110), 1, + ACTIONS(5470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5116), 1, + ACTIONS(5476), 1, sym__brace_start, - ACTIONS(6253), 1, + ACTIONS(6457), 1, sym_word, - ACTIONS(6259), 1, + ACTIONS(6459), 1, + anon_sym_DOLLAR, + ACTIONS(6465), 1, sym__comment_word, - ACTIONS(5088), 2, + ACTIONS(5450), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5112), 2, + ACTIONS(5472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6255), 2, - sym__special_character, + ACTIONS(6461), 2, sym_test_operator, - ACTIONS(6257), 2, + sym__special_character, + ACTIONS(6463), 2, sym_raw_string, sym_ansi_c_string, - STATE(3747), 9, + STATE(3098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147229,44 +150935,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108979] = 17, + [113385] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 1, - anon_sym_DOLLAR, - ACTIONS(963), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(967), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(969), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(971), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(973), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(975), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(977), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(985), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(6043), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(6051), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(949), 2, + ACTIONS(6467), 1, + anon_sym_DOLLAR, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(979), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6047), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(6049), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(1419), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147276,44 +150982,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109043] = 17, + [113449] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(5508), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(5510), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(5512), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5514), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5516), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(5518), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5524), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(6261), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(6263), 1, - anon_sym_DOLLAR, - ACTIONS(6269), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(5498), 2, + ACTIONS(6469), 1, + anon_sym_DOLLAR, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5520), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6265), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(6267), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(3586), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147323,91 +151029,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109107] = 17, - ACTIONS(3), 1, + [113513] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4580), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(4584), 1, - anon_sym_DQUOTE, - ACTIONS(4588), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4590), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4592), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4594), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4596), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4598), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4608), 1, - sym__brace_start, - ACTIONS(6271), 1, - sym_word, - ACTIONS(6277), 1, - sym__comment_word, - ACTIONS(4576), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4600), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6273), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6275), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(886), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6471), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1716), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [109171] = 17, + [113581] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, + ACTIONS(2204), 1, anon_sym_DOLLAR, - ACTIONS(1747), 1, + ACTIONS(2210), 1, aux_sym_number_token1, - ACTIONS(1749), 1, + ACTIONS(2212), 1, aux_sym_number_token2, - ACTIONS(1753), 1, + ACTIONS(2216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1767), 1, + ACTIONS(2228), 1, sym__brace_start, - ACTIONS(4768), 1, + ACTIONS(6473), 1, + sym_word, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(4772), 1, + ACTIONS(6483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4774), 1, + ACTIONS(6485), 1, anon_sym_BQUOTE, - ACTIONS(4776), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6279), 1, - sym_word, - ACTIONS(6285), 1, + ACTIONS(6491), 1, sym__comment_word, - ACTIONS(4762), 2, + ACTIONS(6475), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4778), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6281), 2, - sym__special_character, + ACTIONS(6477), 2, sym_test_operator, - ACTIONS(6283), 2, + sym__special_character, + ACTIONS(6481), 2, sym_raw_string, sym_ansi_c_string, - STATE(975), 9, + ACTIONS(6489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1164), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147417,44 +151125,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109235] = 17, + [113645] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5300), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6135), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(6143), 1, sym__comment_word, - ACTIONS(6287), 1, + ACTIONS(6493), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6139), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6141), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(2574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147464,77 +151172,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109299] = 3, + [113709] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(3357), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, + ACTIONS(5903), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3367), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [109335] = 17, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6495), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1708), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [113777] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(709), 1, anon_sym_DOLLAR, - ACTIONS(101), 1, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(105), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(107), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(109), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(111), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(113), 1, + ACTIONS(725), 1, anon_sym_BQUOTE, - ACTIONS(115), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(125), 1, + ACTIONS(737), 1, sym__brace_start, - ACTIONS(6053), 1, + ACTIONS(6075), 1, sym_word, - ACTIONS(6061), 1, + ACTIONS(6083), 1, sym__comment_word, - ACTIONS(75), 2, + ACTIONS(693), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(117), 2, + ACTIONS(729), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6057), 2, - sym__special_character, + ACTIONS(6079), 2, sym_test_operator, - ACTIONS(6059), 2, + sym__special_character, + ACTIONS(6081), 2, sym_raw_string, sym_ansi_c_string, - STATE(329), 9, + STATE(732), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147544,44 +151268,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109399] = 17, + [113841] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(4629), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4633), 1, aux_sym_number_token1, - ACTIONS(5436), 1, + ACTIONS(4635), 1, aux_sym_number_token2, - ACTIONS(5438), 1, + ACTIONS(4637), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5440), 1, + ACTIONS(4639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5442), 1, + ACTIONS(4641), 1, anon_sym_BQUOTE, - ACTIONS(5444), 1, + ACTIONS(4643), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4653), 1, sym__brace_start, - ACTIONS(6235), 1, + ACTIONS(6497), 1, sym_word, - ACTIONS(6241), 1, - sym__comment_word, - ACTIONS(6289), 1, + ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(5424), 2, + ACTIONS(6505), 1, + sym__comment_word, + ACTIONS(4621), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5446), 2, + ACTIONS(4645), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6237), 2, - sym__special_character, + ACTIONS(6501), 2, sym_test_operator, - ACTIONS(6239), 2, + sym__special_character, + ACTIONS(6503), 2, sym_raw_string, sym_ansi_c_string, - STATE(3127), 9, + STATE(3075), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147591,44 +151315,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109463] = 17, + [113905] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, + ACTIONS(1709), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(1711), 1, aux_sym_number_token2, - ACTIONS(1605), 1, + ACTIONS(1715), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(4742), 1, + ACTIONS(4493), 1, anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(4497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5839), 1, + ACTIONS(5927), 1, sym_word, - ACTIONS(5847), 1, + ACTIONS(5935), 1, sym__comment_word, - ACTIONS(6291), 1, + ACTIONS(6507), 1, anon_sym_DOLLAR, - ACTIONS(4736), 2, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, + ACTIONS(4503), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5843), 2, - sym__special_character, + ACTIONS(5931), 2, sym_test_operator, - ACTIONS(5845), 2, + sym__special_character, + ACTIONS(5933), 2, sym_raw_string, sym_ansi_c_string, - STATE(1010), 9, + STATE(1000), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147638,44 +151362,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109527] = 17, + [113969] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5430), 1, + ACTIONS(4629), 1, anon_sym_DQUOTE, - ACTIONS(5434), 1, + ACTIONS(4633), 1, aux_sym_number_token1, - ACTIONS(5436), 1, + ACTIONS(4635), 1, aux_sym_number_token2, - ACTIONS(5438), 1, + ACTIONS(4637), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5440), 1, + ACTIONS(4639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5442), 1, + ACTIONS(4641), 1, anon_sym_BQUOTE, - ACTIONS(5444), 1, + ACTIONS(4643), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5450), 1, + ACTIONS(4653), 1, sym__brace_start, - ACTIONS(6235), 1, + ACTIONS(6497), 1, sym_word, - ACTIONS(6241), 1, + ACTIONS(6505), 1, sym__comment_word, - ACTIONS(6293), 1, + ACTIONS(6509), 1, anon_sym_DOLLAR, - ACTIONS(5424), 2, + ACTIONS(4621), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5446), 2, + ACTIONS(4645), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6237), 2, - sym__special_character, + ACTIONS(6501), 2, sym_test_operator, - ACTIONS(6239), 2, + sym__special_character, + ACTIONS(6503), 2, sym_raw_string, sym_ansi_c_string, - STATE(3127), 9, + STATE(3075), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147685,44 +151409,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109591] = 17, + [114033] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, + ACTIONS(4661), 1, anon_sym_DOLLAR, - ACTIONS(1389), 1, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(1391), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(1395), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1411), 1, - sym__brace_start, - ACTIONS(4349), 1, - anon_sym_DQUOTE, - ACTIONS(4353), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4355), 1, + ACTIONS(4675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(4357), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6295), 1, + ACTIONS(4689), 1, + sym__brace_start, + ACTIONS(6125), 1, sym_word, - ACTIONS(6301), 1, + ACTIONS(6133), 1, sym__comment_word, - ACTIONS(4343), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4359), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6297), 2, - sym__special_character, + ACTIONS(6129), 2, sym_test_operator, - ACTIONS(6299), 2, + sym__special_character, + ACTIONS(6131), 2, sym_raw_string, sym_ansi_c_string, - STATE(670), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147732,44 +151456,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109655] = 17, - ACTIONS(3), 1, + [114097] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(365), 1, - anon_sym_DQUOTE, - ACTIONS(369), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(371), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(373), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(379), 1, + ACTIONS(5909), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6511), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1642), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [114165] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1709), 1, + aux_sym_number_token1, + ACTIONS(1711), 1, + aux_sym_number_token2, + ACTIONS(1715), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1729), 1, sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(4493), 1, + anon_sym_DQUOTE, + ACTIONS(4497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4499), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(4501), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5927), 1, sym_word, - ACTIONS(5340), 1, + ACTIONS(5935), 1, sym__comment_word, - ACTIONS(6303), 1, + ACTIONS(6513), 1, anon_sym_DOLLAR, - ACTIONS(348), 2, + ACTIONS(4487), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(381), 2, + ACTIONS(4503), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5342), 2, + ACTIONS(5931), 2, + sym_test_operator, + sym__special_character, + ACTIONS(5933), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5344), 2, - sym__special_character, - sym_test_operator, - STATE(1528), 9, + STATE(1000), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147779,7 +151552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109719] = 17, + [114229] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(365), 1, @@ -147796,13 +151569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(385), 1, sym__brace_start, - ACTIONS(3182), 1, + ACTIONS(3215), 1, anon_sym_BQUOTE, - ACTIONS(5336), 1, + ACTIONS(5308), 1, sym_word, - ACTIONS(5340), 1, + ACTIONS(5312), 1, sym__comment_word, - ACTIONS(6305), 1, + ACTIONS(6515), 1, anon_sym_DOLLAR, ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, @@ -147810,13 +151583,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5342), 2, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5344), 2, - sym__special_character, + ACTIONS(5316), 2, sym_test_operator, - STATE(1528), 9, + sym__special_character, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -147826,185 +151599,144 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109783] = 17, + [114293] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(5426), 1, + anon_sym_LPAREN, + ACTIONS(5428), 1, + aux_sym__c_word_token1, + ACTIONS(5432), 1, + anon_sym_DOLLAR, + ACTIONS(5434), 1, anon_sym_DQUOTE, - ACTIONS(4640), 1, + ACTIONS(5436), 1, aux_sym_number_token1, - ACTIONS(4642), 1, + ACTIONS(5438), 1, aux_sym_number_token2, - ACTIONS(4644), 1, + ACTIONS(5440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4646), 1, + ACTIONS(5442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4648), 1, + ACTIONS(5444), 1, anon_sym_BQUOTE, - ACTIONS(4650), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4660), 1, - sym__brace_start, - ACTIONS(6307), 1, - sym_word, - ACTIONS(6309), 1, - anon_sym_DOLLAR, - ACTIONS(6315), 1, - sym__comment_word, - ACTIONS(4628), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4652), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6311), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6313), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2076), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(6519), 1, + aux_sym_heredoc_redirect_token1, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(2542), 1, + sym__c_terminator, + STATE(3628), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + ACTIONS(5424), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6517), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(1928), 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, - [109847] = 17, - ACTIONS(3), 1, + [114365] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(1857), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(1859), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(1863), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1877), 1, - sym__brace_start, - ACTIONS(5959), 1, - sym_word, - ACTIONS(5967), 1, - anon_sym_DQUOTE, - ACTIONS(5971), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5973), 1, - anon_sym_BQUOTE, - ACTIONS(5975), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5979), 1, - sym__comment_word, - ACTIONS(5961), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5965), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5969), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5977), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(809), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109911] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1599), 1, - aux_sym_number_token1, - ACTIONS(1601), 1, - aux_sym_number_token2, - ACTIONS(1605), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, - sym__brace_start, - ACTIONS(4742), 1, - anon_sym_DQUOTE, - ACTIONS(4746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5839), 1, - sym_word, - ACTIONS(5847), 1, - sym__comment_word, - ACTIONS(6317), 1, - anon_sym_DOLLAR, - ACTIONS(4736), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5843), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5845), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6521), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1747), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [109975] = 17, + [114433] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(276), 1, + ACTIONS(5660), 1, anon_sym_DOLLAR, - ACTIONS(280), 1, + ACTIONS(5664), 1, anon_sym_DQUOTE, - ACTIONS(284), 1, + ACTIONS(5668), 1, aux_sym_number_token1, - ACTIONS(286), 1, + ACTIONS(5670), 1, aux_sym_number_token2, - ACTIONS(288), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(290), 1, + ACTIONS(5674), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(292), 1, + ACTIONS(5676), 1, anon_sym_BQUOTE, - ACTIONS(294), 1, + ACTIONS(5678), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(304), 1, + ACTIONS(5684), 1, sym__brace_start, - ACTIONS(6177), 1, + ACTIONS(6427), 1, sym_word, - ACTIONS(6185), 1, + ACTIONS(6435), 1, sym__comment_word, - ACTIONS(242), 2, + ACTIONS(5658), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(296), 2, + ACTIONS(5680), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6181), 2, - sym__special_character, + ACTIONS(6431), 2, sym_test_operator, - ACTIONS(6183), 2, + sym__special_character, + ACTIONS(6433), 2, sym_raw_string, sym_ansi_c_string, - STATE(403), 9, + STATE(3495), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148014,91 +151746,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110039] = 17, - ACTIONS(3), 1, + [114497] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(4672), 1, - anon_sym_DQUOTE, - ACTIONS(4676), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(4678), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(4680), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4682), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(4686), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4696), 1, - sym__brace_start, - ACTIONS(5893), 1, - sym_word, - ACTIONS(5899), 1, - sym__comment_word, - ACTIONS(6319), 1, - anon_sym_DOLLAR, - ACTIONS(4664), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4688), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6523), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, ACTIONS(5895), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5897), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1214), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1743), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [110103] = 17, + [114565] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, + ACTIONS(5280), 1, + anon_sym_DQUOTE, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(5290), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5937), 1, + ACTIONS(5300), 1, + sym__brace_start, + ACTIONS(6135), 1, sym_word, - ACTIONS(5943), 1, + ACTIONS(6143), 1, sym__comment_word, - ACTIONS(6321), 1, + ACTIONS(6525), 1, anon_sym_DOLLAR, - ACTIONS(4135), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4151), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5939), 2, - sym__special_character, + ACTIONS(6139), 2, sym_test_operator, - ACTIONS(5941), 2, + sym__special_character, + ACTIONS(6141), 2, sym_raw_string, sym_ansi_c_string, - STATE(3726), 9, + STATE(2574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148108,44 +151842,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110167] = 17, + [114629] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - anon_sym_DOLLAR, - ACTIONS(5296), 1, + ACTIONS(5456), 1, anon_sym_DQUOTE, - ACTIONS(5300), 1, + ACTIONS(5460), 1, aux_sym_number_token1, - ACTIONS(5302), 1, + ACTIONS(5462), 1, aux_sym_number_token2, - ACTIONS(5304), 1, + ACTIONS(5464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5468), 1, anon_sym_BQUOTE, - ACTIONS(5310), 1, + ACTIONS(5470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5316), 1, + ACTIONS(5476), 1, sym__brace_start, - ACTIONS(5871), 1, + ACTIONS(6457), 1, sym_word, - ACTIONS(5879), 1, + ACTIONS(6465), 1, sym__comment_word, - ACTIONS(5290), 2, + ACTIONS(6527), 1, + anon_sym_DOLLAR, + ACTIONS(5450), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5312), 2, + ACTIONS(5472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5875), 2, - sym__special_character, + ACTIONS(6461), 2, sym_test_operator, - ACTIONS(5877), 2, + sym__special_character, + ACTIONS(6463), 2, sym_raw_string, sym_ansi_c_string, - STATE(2483), 9, + STATE(3098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148155,44 +151889,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110231] = 17, + [114693] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4640), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4642), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4644), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4646), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4648), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4650), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4660), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(6307), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(6315), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(6323), 1, + ACTIONS(6529), 1, anon_sym_DOLLAR, - ACTIONS(4628), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4652), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6311), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(6313), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(2076), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148202,44 +151936,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110295] = 17, + [114757] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3633), 1, + ACTIONS(5276), 1, + anon_sym_DOLLAR, + ACTIONS(5280), 1, + anon_sym_DQUOTE, + ACTIONS(5284), 1, aux_sym_number_token1, - ACTIONS(3635), 1, + ACTIONS(5286), 1, aux_sym_number_token2, - ACTIONS(3639), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3651), 1, - sym__brace_start, - ACTIONS(4141), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4147), 1, + ACTIONS(5290), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5292), 1, anon_sym_BQUOTE, - ACTIONS(4149), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5937), 1, + ACTIONS(5300), 1, + sym__brace_start, + ACTIONS(6135), 1, sym_word, - ACTIONS(5943), 1, + ACTIONS(6143), 1, sym__comment_word, - ACTIONS(6325), 1, - anon_sym_DOLLAR, - ACTIONS(4135), 2, + ACTIONS(5274), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4151), 2, + ACTIONS(5296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5939), 2, - sym__special_character, + ACTIONS(6139), 2, sym_test_operator, - ACTIONS(5941), 2, + sym__special_character, + ACTIONS(6141), 2, sym_raw_string, sym_ansi_c_string, - STATE(3726), 9, + STATE(2574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148249,44 +151983,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110359] = 17, + [114821] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3210), 1, + ACTIONS(4675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(6079), 1, + ACTIONS(4679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4689), 1, + sym__brace_start, + ACTIONS(6125), 1, sym_word, - ACTIONS(6085), 1, + ACTIONS(6133), 1, sym__comment_word, - ACTIONS(6327), 1, + ACTIONS(6531), 1, anon_sym_DOLLAR, - ACTIONS(987), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6081), 2, - sym__special_character, + ACTIONS(6129), 2, sym_test_operator, - ACTIONS(6083), 2, + sym__special_character, + ACTIONS(6131), 2, sym_raw_string, sym_ansi_c_string, - STATE(1468), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148296,44 +152030,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110423] = 17, + [114885] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(709), 1, - anon_sym_DOLLAR, - ACTIONS(713), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, + ACTIONS(4689), 1, sym__brace_start, - ACTIONS(5983), 1, + ACTIONS(6125), 1, sym_word, - ACTIONS(5991), 1, + ACTIONS(6133), 1, sym__comment_word, - ACTIONS(693), 2, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5987), 2, - sym__special_character, + ACTIONS(6129), 2, sym_test_operator, - ACTIONS(5989), 2, + sym__special_character, + ACTIONS(6131), 2, sym_raw_string, sym_ansi_c_string, - STATE(706), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148343,44 +152077,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110487] = 17, + [114949] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, - anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(5891), 1, + ACTIONS(5312), 1, sym__comment_word, - ACTIONS(6329), 1, + ACTIONS(6535), 1, anon_sym_DOLLAR, - ACTIONS(4305), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5889), 2, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + ACTIONS(5316), 2, + sym_test_operator, + sym__special_character, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148390,44 +152124,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110551] = 17, + [115013] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(1789), 1, + anon_sym_DOLLAR, + ACTIONS(1795), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(1797), 1, aux_sym_number_token2, - ACTIONS(212), 1, + ACTIONS(1801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, + ACTIONS(1815), 1, sym__brace_start, - ACTIONS(993), 1, + ACTIONS(4353), 1, anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(4357), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3210), 1, + ACTIONS(4359), 1, anon_sym_BQUOTE, - ACTIONS(6079), 1, + ACTIONS(4361), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6537), 1, sym_word, - ACTIONS(6085), 1, + ACTIONS(6543), 1, sym__comment_word, - ACTIONS(6331), 1, - anon_sym_DOLLAR, - ACTIONS(987), 2, + ACTIONS(4347), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, + ACTIONS(4363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6081), 2, - sym__special_character, + ACTIONS(6539), 2, sym_test_operator, - ACTIONS(6083), 2, + sym__special_character, + ACTIONS(6541), 2, sym_raw_string, sym_ansi_c_string, - STATE(1468), 9, + STATE(951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148437,44 +152171,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110615] = 17, + [115077] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(365), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(369), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(371), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(375), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, - anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(379), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(385), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(3215), 1, + anon_sym_BQUOTE, + ACTIONS(5308), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(5312), 1, sym__comment_word, - ACTIONS(6333), 1, + ACTIONS(6545), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(381), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5955), 2, + ACTIONS(5314), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + ACTIONS(5316), 2, + sym_test_operator, + sym__special_character, + STATE(1539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148484,44 +152218,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110679] = 17, + [115141] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, - anon_sym_DOLLAR, - ACTIONS(4708), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4714), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4716), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4718), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4720), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4722), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4732), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(5819), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(5827), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(4700), 2, + ACTIONS(6547), 1, + anon_sym_DOLLAR, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4724), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5823), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(5825), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(2388), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148531,44 +152265,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110743] = 17, + [115205] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4676), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4678), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4680), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4684), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4686), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4696), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(5893), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(5899), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(6335), 1, + ACTIONS(6549), 1, anon_sym_DOLLAR, - ACTIONS(4664), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4688), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5895), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(5897), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(1214), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148578,44 +152312,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110807] = 17, + [115269] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(5891), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(6337), 1, + ACTIONS(6551), 1, anon_sym_DOLLAR, - ACTIONS(4305), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(5889), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148625,44 +152359,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110871] = 17, + [115333] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5368), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5388), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6103), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(6339), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148672,44 +152406,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110935] = 17, + [115397] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, - anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(318), 1, + anon_sym_DOLLAR, + ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(4465), 1, + ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(4467), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4469), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4471), 1, - anon_sym_BQUOTE, - ACTIONS(4473), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4483), 1, + ACTIONS(342), 1, sym__brace_start, - ACTIONS(5829), 1, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(6447), 1, sym_word, - ACTIONS(5837), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6341), 1, - anon_sym_DOLLAR, - ACTIONS(4451), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4475), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5833), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(5835), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(1085), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148719,44 +152453,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [110999] = 17, + [115461] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_DQUOTE, - ACTIONS(5659), 1, + ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(5661), 1, + ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(5663), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5665), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5667), 1, - anon_sym_BQUOTE, - ACTIONS(5669), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5675), 1, + ACTIONS(342), 1, sym__brace_start, - ACTIONS(5849), 1, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(6447), 1, sym_word, - ACTIONS(5857), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6343), 1, + ACTIONS(6555), 1, anon_sym_DOLLAR, - ACTIONS(5649), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5671), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5853), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(5855), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(3488), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148766,44 +152500,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111063] = 17, + [115525] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 1, - anon_sym_DOLLAR, - ACTIONS(4848), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(4854), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(4856), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4858), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4860), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(4862), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4872), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(6345), 1, + ACTIONS(6379), 1, sym_word, - ACTIONS(6351), 1, + ACTIONS(6385), 1, sym__comment_word, - ACTIONS(4840), 2, + ACTIONS(6557), 1, + anon_sym_DOLLAR, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4864), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6347), 2, - sym__special_character, + ACTIONS(6381), 2, sym_test_operator, - ACTIONS(6349), 2, + sym__special_character, + ACTIONS(6383), 2, sym_raw_string, sym_ansi_c_string, - STATE(952), 9, + STATE(867), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148813,44 +152547,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111127] = 17, + [115589] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(51), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(53), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(55), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(57), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(59), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(5927), 1, + ACTIONS(6339), 1, sym_word, - ACTIONS(5933), 1, + ACTIONS(6345), 1, sym__comment_word, - ACTIONS(6353), 1, + ACTIONS(6559), 1, anon_sym_DOLLAR, - ACTIONS(13), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(61), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5929), 2, - sym__special_character, + ACTIONS(6341), 2, sym_test_operator, - ACTIONS(5931), 2, + sym__special_character, + ACTIONS(6343), 2, sym_raw_string, sym_ansi_c_string, - STATE(790), 9, + STATE(2927), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148860,44 +152594,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111191] = 17, + [115653] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(5244), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, - anon_sym_BQUOTE, - ACTIONS(5250), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(342), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(6447), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6355), 1, + ACTIONS(6561), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148907,44 +152641,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111255] = 17, + [115717] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 1, + ACTIONS(280), 1, anon_sym_DQUOTE, - ACTIONS(4423), 1, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(4425), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(4427), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4429), 1, + ACTIONS(290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4431), 1, + ACTIONS(292), 1, anon_sym_BQUOTE, - ACTIONS(4433), 1, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4443), 1, + ACTIONS(304), 1, sym__brace_start, - ACTIONS(5911), 1, + ACTIONS(6563), 1, sym_word, - ACTIONS(5919), 1, - sym__comment_word, - ACTIONS(6357), 1, + ACTIONS(6565), 1, anon_sym_DOLLAR, - ACTIONS(4411), 2, + ACTIONS(6571), 1, + sym__comment_word, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4435), 2, + ACTIONS(296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5915), 2, - sym__special_character, + ACTIONS(6567), 2, sym_test_operator, - ACTIONS(5917), 2, + sym__special_character, + ACTIONS(6569), 2, sym_raw_string, sym_ansi_c_string, - STATE(3060), 9, + STATE(396), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148954,44 +152688,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111319] = 17, + [115781] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(280), 1, + anon_sym_DQUOTE, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(2218), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(2222), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2234), 1, - sym__brace_start, - ACTIONS(6135), 1, - sym_word, - ACTIONS(6141), 1, - anon_sym_DQUOTE, - ACTIONS(6145), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6147), 1, + ACTIONS(290), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(292), 1, anon_sym_BQUOTE, - ACTIONS(6149), 1, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6153), 1, + ACTIONS(304), 1, + sym__brace_start, + ACTIONS(6563), 1, + sym_word, + ACTIONS(6571), 1, sym__comment_word, - ACTIONS(6359), 1, + ACTIONS(6573), 1, anon_sym_DOLLAR, - ACTIONS(6137), 2, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6139), 2, - sym__special_character, + ACTIONS(296), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6567), 2, sym_test_operator, - ACTIONS(6143), 2, + sym__special_character, + ACTIONS(6569), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1152), 9, + STATE(396), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149001,44 +152735,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111383] = 17, + [115845] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, + ACTIONS(204), 1, aux_sym_number_token1, - ACTIONS(2218), 1, + ACTIONS(206), 1, aux_sym_number_token2, - ACTIONS(2222), 1, + ACTIONS(210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2234), 1, + ACTIONS(224), 1, sym__brace_start, - ACTIONS(6135), 1, - sym_word, - ACTIONS(6141), 1, + ACTIONS(953), 1, anon_sym_DQUOTE, - ACTIONS(6145), 1, + ACTIONS(957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6147), 1, - anon_sym_BQUOTE, - ACTIONS(6149), 1, + ACTIONS(959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6153), 1, + ACTIONS(3253), 1, + anon_sym_BQUOTE, + ACTIONS(6115), 1, + sym_word, + ACTIONS(6123), 1, sym__comment_word, - ACTIONS(6361), 1, + ACTIONS(6575), 1, anon_sym_DOLLAR, - ACTIONS(6137), 2, + ACTIONS(947), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6139), 2, - sym__special_character, + ACTIONS(961), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6119), 2, sym_test_operator, - ACTIONS(6143), 2, + sym__special_character, + ACTIONS(6121), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6151), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1152), 9, + STATE(1449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149048,44 +152782,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111447] = 17, + [115909] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 1, - anon_sym_DOLLAR, - ACTIONS(1505), 1, + ACTIONS(4886), 1, + anon_sym_DQUOTE, + ACTIONS(4890), 1, aux_sym_number_token1, - ACTIONS(1507), 1, + ACTIONS(4892), 1, aux_sym_number_token2, - ACTIONS(1511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1525), 1, - sym__brace_start, - ACTIONS(4794), 1, - anon_sym_DQUOTE, - ACTIONS(4798), 1, + ACTIONS(4894), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4800), 1, + ACTIONS(4896), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4898), 1, anon_sym_BQUOTE, - ACTIONS(4802), 1, + ACTIONS(4900), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6029), 1, + ACTIONS(4910), 1, + sym__brace_start, + ACTIONS(5999), 1, sym_word, - ACTIONS(6037), 1, + ACTIONS(6005), 1, sym__comment_word, - ACTIONS(4788), 2, + ACTIONS(6577), 1, + anon_sym_DOLLAR, + ACTIONS(4878), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4804), 2, + ACTIONS(4902), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6033), 2, - sym__special_character, + ACTIONS(6001), 2, sym_test_operator, - ACTIONS(6035), 2, + sym__special_character, + ACTIONS(6003), 2, sym_raw_string, sym_ansi_c_string, - STATE(799), 9, + STATE(1072), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149095,44 +152829,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111511] = 17, + [115973] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(4982), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(4986), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(4988), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(4992), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(4994), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5002), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6339), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(6345), 1, sym__comment_word, - ACTIONS(6363), 1, + ACTIONS(6579), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(4974), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6341), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6343), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(2927), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149142,44 +152876,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111575] = 17, + [116037] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(318), 1, - anon_sym_DOLLAR, - ACTIONS(324), 1, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(6165), 1, + ACTIONS(427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(6047), 1, sym_word, - ACTIONS(6173), 1, + ACTIONS(6055), 1, sym__comment_word, - ACTIONS(1059), 2, + ACTIONS(6581), 1, + anon_sym_DOLLAR, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6169), 2, - sym__special_character, + ACTIONS(6051), 2, sym_test_operator, - ACTIONS(6171), 2, + sym__special_character, + ACTIONS(6053), 2, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, + STATE(835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149189,91 +152923,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111639] = 17, - ACTIONS(3), 1, + [116101] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2146), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(2152), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(2154), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(2158), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2170), 1, - sym__brace_start, - ACTIONS(6209), 1, - sym_word, - ACTIONS(6217), 1, - anon_sym_DQUOTE, - ACTIONS(6221), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6223), 1, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(6225), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6229), 1, - sym__comment_word, - ACTIONS(6211), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6215), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6219), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6227), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(931), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6583), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1846), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [111703] = 17, + [116169] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(3604), 1, + anon_sym_DOLLAR, + ACTIONS(3610), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(3612), 1, aux_sym_number_token2, - ACTIONS(330), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, + ACTIONS(3628), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(4171), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, + ACTIONS(4177), 1, anon_sym_BQUOTE, - ACTIONS(6165), 1, + ACTIONS(4179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5959), 1, sym_word, - ACTIONS(6173), 1, + ACTIONS(5967), 1, sym__comment_word, - ACTIONS(6365), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 2, + ACTIONS(4165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(4181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6169), 2, - sym__special_character, + ACTIONS(5963), 2, sym_test_operator, - ACTIONS(6171), 2, + sym__special_character, + ACTIONS(5965), 2, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, + STATE(3762), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149283,124 +153019,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111767] = 17, - ACTIONS(3), 1, + [116233] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(6165), 1, - sym_word, - ACTIONS(6173), 1, - sym__comment_word, - ACTIONS(6367), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6169), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6171), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1392), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6585), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1671), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [111831] = 3, + [116301] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(3044), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, + ACTIONS(5903), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3046), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [111867] = 17, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6587), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1816), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116369] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 1, + ACTIONS(101), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(1391), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(1395), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1411), 1, - sym__brace_start, - ACTIONS(4349), 1, - anon_sym_DQUOTE, - ACTIONS(4353), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4355), 1, + ACTIONS(111), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(4357), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6295), 1, + ACTIONS(125), 1, + sym__brace_start, + ACTIONS(6331), 1, sym_word, - ACTIONS(6301), 1, + ACTIONS(6337), 1, sym__comment_word, - ACTIONS(6369), 1, + ACTIONS(6589), 1, anon_sym_DOLLAR, - ACTIONS(4343), 2, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4359), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6297), 2, - sym__special_character, + ACTIONS(6333), 2, sym_test_operator, - ACTIONS(6299), 2, + sym__special_character, + ACTIONS(6335), 2, sym_raw_string, sym_ansi_c_string, - STATE(670), 9, + STATE(354), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149410,44 +153164,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111931] = 17, + [116433] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4714), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4716), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4718), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4720), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4722), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4732), 1, + ACTIONS(4413), 1, sym__brace_start, - ACTIONS(5819), 1, + ACTIONS(6063), 1, sym_word, - ACTIONS(5827), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(6371), 1, + ACTIONS(6591), 1, anon_sym_DOLLAR, - ACTIONS(4700), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4724), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5823), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(5825), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(2388), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149457,44 +153211,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111995] = 17, + [116497] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(4389), 1, + anon_sym_DQUOTE, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3210), 1, + ACTIONS(4399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(6079), 1, + ACTIONS(4403), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4413), 1, + sym__brace_start, + ACTIONS(6063), 1, sym_word, - ACTIONS(6085), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(6373), 1, + ACTIONS(6593), 1, anon_sym_DOLLAR, - ACTIONS(987), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6081), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(6083), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(1468), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149504,44 +153258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112059] = 17, + [116561] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(206), 1, + ACTIONS(5368), 1, + anon_sym_DQUOTE, + ACTIONS(5372), 1, aux_sym_number_token1, - ACTIONS(208), 1, + ACTIONS(5374), 1, aux_sym_number_token2, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(226), 1, - sym__brace_start, - ACTIONS(993), 1, - anon_sym_DQUOTE, - ACTIONS(997), 1, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(999), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3210), 1, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, anon_sym_BQUOTE, - ACTIONS(6079), 1, + ACTIONS(5382), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(6103), 1, sym_word, - ACTIONS(6085), 1, + ACTIONS(6111), 1, sym__comment_word, - ACTIONS(6375), 1, + ACTIONS(6595), 1, anon_sym_DOLLAR, - ACTIONS(987), 2, + ACTIONS(5362), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1001), 2, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6081), 2, - sym__special_character, + ACTIONS(6107), 2, sym_test_operator, - ACTIONS(6083), 2, + sym__special_character, + ACTIONS(6109), 2, sym_raw_string, sym_ansi_c_string, - STATE(1468), 9, + STATE(2557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149551,91 +153305,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112123] = 17, + [116625] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, + ACTIONS(5426), 1, + anon_sym_LPAREN, + ACTIONS(5428), 1, + aux_sym__c_word_token1, + ACTIONS(5432), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(5434), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(5436), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(5438), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(5440), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(5442), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(5444), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, - sym__brace_start, - ACTIONS(6189), 1, - sym_word, - ACTIONS(6197), 1, - sym__comment_word, - ACTIONS(389), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6193), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6195), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(777), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(6599), 1, + aux_sym_heredoc_redirect_token1, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(2567), 1, + sym__c_terminator, + STATE(3633), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + ACTIONS(5424), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6597), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(1928), 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, - [112187] = 17, + [116697] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(101), 1, + anon_sym_DQUOTE, + ACTIONS(105), 1, aux_sym_number_token1, - ACTIONS(1507), 1, + ACTIONS(107), 1, aux_sym_number_token2, - ACTIONS(1511), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1525), 1, - sym__brace_start, - ACTIONS(4794), 1, - anon_sym_DQUOTE, - ACTIONS(4798), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4800), 1, + ACTIONS(111), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(113), 1, anon_sym_BQUOTE, - ACTIONS(4802), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6029), 1, + ACTIONS(125), 1, + sym__brace_start, + ACTIONS(6331), 1, sym_word, - ACTIONS(6037), 1, + ACTIONS(6337), 1, sym__comment_word, - ACTIONS(6377), 1, + ACTIONS(6601), 1, anon_sym_DOLLAR, - ACTIONS(4788), 2, + ACTIONS(75), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4804), 2, + ACTIONS(117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6033), 2, - sym__special_character, + ACTIONS(6333), 2, sym_test_operator, - ACTIONS(6035), 2, + sym__special_character, + ACTIONS(6335), 2, sym_raw_string, sym_ansi_c_string, - STATE(799), 9, + STATE(354), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149645,73 +153403,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112251] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3243), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3245), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [112287] = 3, - ACTIONS(63), 1, + [116761] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(3249), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(5368), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5372), 1, + aux_sym_number_token1, + ACTIONS(5374), 1, + aux_sym_number_token2, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5380), 1, anon_sym_BQUOTE, + ACTIONS(5382), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5388), 1, + sym__brace_start, + ACTIONS(6103), 1, + sym_word, + ACTIONS(6111), 1, + sym__comment_word, + ACTIONS(6603), 1, + anon_sym_DOLLAR, + ACTIONS(5362), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5384), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(6107), 2, sym_test_operator, - [112323] = 17, + sym__special_character, + ACTIONS(6109), 2, + sym_raw_string, + sym_ansi_c_string, + 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, + [116825] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(324), 1, @@ -149722,33 +153461,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(6165), 1, + ACTIONS(6447), 1, sym_word, - ACTIONS(6173), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6379), 1, + ACTIONS(6605), 1, anon_sym_DOLLAR, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6169), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(6171), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149758,7 +153497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112387] = 17, + [116889] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(413), 1, @@ -149777,11 +153516,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(437), 1, sym__brace_start, - ACTIONS(6189), 1, + ACTIONS(6047), 1, sym_word, - ACTIONS(6197), 1, + ACTIONS(6055), 1, sym__comment_word, - ACTIONS(6381), 1, + ACTIONS(6607), 1, anon_sym_DOLLAR, ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, @@ -149789,13 +153528,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6193), 2, - sym__special_character, + ACTIONS(6051), 2, sym_test_operator, - ACTIONS(6195), 2, + sym__special_character, + ACTIONS(6053), 2, sym_raw_string, sym_ansi_c_string, - STATE(777), 9, + STATE(835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149805,44 +153544,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112451] = 17, + [116953] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, - anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(4321), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, - anon_sym_BQUOTE, - ACTIONS(4327), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(342), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1039), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(6447), 1, sym_word, - ACTIONS(5891), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6383), 1, + ACTIONS(6609), 1, anon_sym_DOLLAR, - ACTIONS(4305), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(5889), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149852,44 +153591,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112515] = 17, + [117017] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(276), 1, anon_sym_DOLLAR, - ACTIONS(4928), 1, + ACTIONS(280), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(284), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(286), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(292), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(294), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4948), 1, + ACTIONS(304), 1, sym__brace_start, - ACTIONS(6385), 1, + ACTIONS(6563), 1, sym_word, - ACTIONS(6391), 1, + ACTIONS(6571), 1, sym__comment_word, - ACTIONS(4920), 2, + ACTIONS(242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4944), 2, + ACTIONS(296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6387), 2, - sym__special_character, + ACTIONS(6567), 2, sym_test_operator, - ACTIONS(6389), 2, + sym__special_character, + ACTIONS(6569), 2, sym_raw_string, sym_ansi_c_string, - STATE(2922), 9, + STATE(396), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149899,44 +153638,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112579] = 17, + [117081] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(4459), 1, + anon_sym_DQUOTE, + ACTIONS(4463), 1, aux_sym_number_token1, - ACTIONS(1749), 1, + ACTIONS(4465), 1, aux_sym_number_token2, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1767), 1, - sym__brace_start, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4772), 1, + ACTIONS(4467), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4469), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4471), 1, anon_sym_BQUOTE, - ACTIONS(4776), 1, + ACTIONS(4473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6279), 1, + ACTIONS(4483), 1, + sym__brace_start, + ACTIONS(5917), 1, sym_word, - ACTIONS(6285), 1, + ACTIONS(5925), 1, sym__comment_word, - ACTIONS(6393), 1, + ACTIONS(6611), 1, anon_sym_DOLLAR, - ACTIONS(4762), 2, + ACTIONS(4451), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4778), 2, + ACTIONS(4475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6281), 2, - sym__special_character, + ACTIONS(5921), 2, sym_test_operator, - ACTIONS(6283), 2, + sym__special_character, + ACTIONS(5923), 2, sym_raw_string, sym_ansi_c_string, - STATE(975), 9, + STATE(2465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149946,44 +153685,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112643] = 17, + [117145] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(413), 1, + ACTIONS(4826), 1, + anon_sym_DOLLAR, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(4834), 1, aux_sym_number_token1, - ACTIONS(419), 1, + ACTIONS(4836), 1, aux_sym_number_token2, - ACTIONS(421), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(423), 1, + ACTIONS(4840), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(425), 1, + ACTIONS(4842), 1, anon_sym_BQUOTE, - ACTIONS(427), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(437), 1, + ACTIONS(4854), 1, sym__brace_start, - ACTIONS(6189), 1, + ACTIONS(6613), 1, sym_word, - ACTIONS(6197), 1, + ACTIONS(6619), 1, sym__comment_word, - ACTIONS(6395), 1, - anon_sym_DOLLAR, - ACTIONS(389), 2, + ACTIONS(4822), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(429), 2, + ACTIONS(4846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6193), 2, - sym__special_character, + ACTIONS(6615), 2, sym_test_operator, - ACTIONS(6195), 2, + sym__special_character, + ACTIONS(6617), 2, sym_raw_string, sym_ansi_c_string, - STATE(777), 9, + STATE(1667), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -149993,44 +153732,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112707] = 17, + [117209] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(409), 1, + anon_sym_DOLLAR, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(1749), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1767), 1, - sym__brace_start, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4772), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4774), 1, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(4776), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6279), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(6047), 1, sym_word, - ACTIONS(6285), 1, + ACTIONS(6055), 1, sym__comment_word, - ACTIONS(6397), 1, - anon_sym_DOLLAR, - ACTIONS(4762), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4778), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6281), 2, - sym__special_character, + ACTIONS(6051), 2, sym_test_operator, - ACTIONS(6283), 2, + sym__special_character, + ACTIONS(6053), 2, sym_raw_string, sym_ansi_c_string, - STATE(975), 9, + STATE(835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150040,44 +153779,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112771] = 17, + [117273] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(4243), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(4245), 1, aux_sym_number_token2, - ACTIONS(2252), 1, + ACTIONS(4249), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2264), 1, + ACTIONS(4259), 1, sym__brace_start, - ACTIONS(6007), 1, - sym_word, - ACTIONS(6015), 1, + ACTIONS(5154), 1, anon_sym_DQUOTE, - ACTIONS(6019), 1, + ACTIONS(5158), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6021), 1, + ACTIONS(5160), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + ACTIONS(5162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6027), 1, - sym__comment_word, ACTIONS(6399), 1, + sym_word, + ACTIONS(6405), 1, + sym__comment_word, + ACTIONS(6621), 1, anon_sym_DOLLAR, - ACTIONS(6009), 2, + ACTIONS(5150), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6013), 2, - sym__special_character, + ACTIONS(5164), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6401), 2, sym_test_operator, - ACTIONS(6017), 2, + sym__special_character, + ACTIONS(6403), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6025), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1122), 9, + STATE(2750), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150087,44 +153826,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112835] = 17, - ACTIONS(3), 1, + [117337] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(5971), 1, + anon_sym_LPAREN, + ACTIONS(5973), 1, + anon_sym_BANG, + ACTIONS(5979), 1, + anon_sym_DOLLAR, + ACTIONS(5981), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(5983), 1, aux_sym_number_token2, - ACTIONS(2252), 1, + ACTIONS(5985), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5987), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(6007), 1, - sym_word, - ACTIONS(6015), 1, + ACTIONS(5989), 1, + anon_sym_BQUOTE, + ACTIONS(5991), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5995), 1, + sym_variable_name, + ACTIONS(6623), 1, + aux_sym__simple_variable_name_token1, + STATE(1830), 1, + sym__arithmetic_binary_expression, + STATE(1839), 1, + sym__arithmetic_ternary_expression, + STATE(1842), 1, + sym__arithmetic_unary_expression, + STATE(1884), 1, + sym__arithmetic_postfix_expression, + ACTIONS(5975), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5977), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1873), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117405] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(6019), 1, + ACTIONS(4834), 1, + aux_sym_number_token1, + ACTIONS(4836), 1, + aux_sym_number_token2, + ACTIONS(4838), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6021), 1, + ACTIONS(4840), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4842), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6027), 1, + ACTIONS(4854), 1, + sym__brace_start, + ACTIONS(6613), 1, + sym_word, + ACTIONS(6619), 1, sym__comment_word, - ACTIONS(6401), 1, + ACTIONS(6625), 1, anon_sym_DOLLAR, - ACTIONS(6009), 2, + ACTIONS(4822), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6013), 2, - sym__special_character, + ACTIONS(4846), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6615), 2, sym_test_operator, - ACTIONS(6017), 2, + sym__special_character, + ACTIONS(6617), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6025), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1122), 9, + STATE(1667), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150134,44 +153922,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112899] = 17, + [117469] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, - anon_sym_DQUOTE, - ACTIONS(5508), 1, + ACTIONS(4243), 1, aux_sym_number_token1, - ACTIONS(5510), 1, + ACTIONS(4245), 1, aux_sym_number_token2, - ACTIONS(5512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5514), 1, + ACTIONS(4249), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5516), 1, + ACTIONS(4259), 1, + sym__brace_start, + ACTIONS(5154), 1, + anon_sym_DQUOTE, + ACTIONS(5158), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5160), 1, anon_sym_BQUOTE, - ACTIONS(5518), 1, + ACTIONS(5162), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5524), 1, - sym__brace_start, - ACTIONS(6261), 1, + ACTIONS(6399), 1, sym_word, - ACTIONS(6269), 1, + ACTIONS(6405), 1, sym__comment_word, - ACTIONS(6403), 1, + ACTIONS(6627), 1, anon_sym_DOLLAR, - ACTIONS(5498), 2, + ACTIONS(5150), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5520), 2, + ACTIONS(5164), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6265), 2, - sym__special_character, + ACTIONS(6401), 2, sym_test_operator, - ACTIONS(6267), 2, + sym__special_character, + ACTIONS(6403), 2, sym_raw_string, sym_ansi_c_string, - STATE(3586), 9, + STATE(2750), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150181,44 +153969,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112963] = 17, + [117533] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(49), 1, aux_sym_number_token1, - ACTIONS(4854), 1, + ACTIONS(51), 1, aux_sym_number_token2, - ACTIONS(4856), 1, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4858), 1, + ACTIONS(55), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4860), 1, + ACTIONS(57), 1, anon_sym_BQUOTE, - ACTIONS(4862), 1, + ACTIONS(59), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4872), 1, + ACTIONS(71), 1, sym__brace_start, - ACTIONS(6345), 1, + ACTIONS(6379), 1, sym_word, - ACTIONS(6351), 1, + ACTIONS(6385), 1, sym__comment_word, - ACTIONS(6405), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR, - ACTIONS(4840), 2, + ACTIONS(13), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4864), 2, + ACTIONS(61), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6347), 2, - sym__special_character, + ACTIONS(6381), 2, sym_test_operator, - ACTIONS(6349), 2, + sym__special_character, + ACTIONS(6383), 2, sym_raw_string, sym_ansi_c_string, - STATE(952), 9, + STATE(867), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150228,95 +154016,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113027] = 21, - ACTIONS(3), 1, + [117597] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(5474), 1, - anon_sym_LPAREN, - ACTIONS(5476), 1, - aux_sym__c_word_token1, - ACTIONS(5480), 1, + ACTIONS(2975), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_DOLLAR, - ACTIONS(5482), 1, - anon_sym_DQUOTE, - ACTIONS(5484), 1, aux_sym_number_token1, - ACTIONS(5486), 1, aux_sym_number_token2, - ACTIONS(5488), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5490), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5492), 1, + sym_word, + ACTIONS(2977), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(5494), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6409), 1, - aux_sym_heredoc_redirect_token1, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(2497), 1, - sym__c_terminator, - STATE(3626), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - ACTIONS(5472), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6407), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [113099] = 17, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [117633] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(5452), 1, + anon_sym_DOLLAR, + ACTIONS(5456), 1, anon_sym_DQUOTE, - ACTIONS(4852), 1, + ACTIONS(5460), 1, aux_sym_number_token1, - ACTIONS(4854), 1, + ACTIONS(5462), 1, aux_sym_number_token2, - ACTIONS(4856), 1, + ACTIONS(5464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4858), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4860), 1, + ACTIONS(5468), 1, anon_sym_BQUOTE, - ACTIONS(4862), 1, + ACTIONS(5470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4872), 1, + ACTIONS(5476), 1, sym__brace_start, - ACTIONS(6345), 1, + ACTIONS(6457), 1, sym_word, - ACTIONS(6351), 1, + ACTIONS(6465), 1, sym__comment_word, - ACTIONS(6411), 1, - anon_sym_DOLLAR, - ACTIONS(4840), 2, + ACTIONS(5450), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4864), 2, + ACTIONS(5472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6347), 2, - sym__special_character, + ACTIONS(6461), 2, sym_test_operator, - ACTIONS(6349), 2, + sym__special_character, + ACTIONS(6463), 2, sym_raw_string, sym_ansi_c_string, - STATE(952), 9, + STATE(3098), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150326,54 +154096,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113163] = 17, - ACTIONS(3), 1, + [117697] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(2465), 1, - anon_sym_DQUOTE, - ACTIONS(2469), 1, + ACTIONS(5971), 1, + anon_sym_LPAREN, + ACTIONS(5973), 1, + anon_sym_BANG, + ACTIONS(5979), 1, + anon_sym_DOLLAR, + ACTIONS(5981), 1, aux_sym_number_token1, - ACTIONS(2471), 1, + ACTIONS(5983), 1, aux_sym_number_token2, - ACTIONS(2473), 1, + ACTIONS(5985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2475), 1, + ACTIONS(5987), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2477), 1, + ACTIONS(5989), 1, anon_sym_BQUOTE, - ACTIONS(2479), 1, + ACTIONS(5991), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2489), 1, - sym__brace_start, - ACTIONS(5861), 1, - sym_word, - ACTIONS(5869), 1, - sym__comment_word, - ACTIONS(6413), 1, - anon_sym_DOLLAR, - ACTIONS(2459), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2481), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5865), 2, - sym__special_character, - sym_test_operator, - ACTIONS(5867), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1543), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5995), 1, + sym_variable_name, + ACTIONS(6631), 1, + aux_sym__simple_variable_name_token1, + STATE(1830), 1, + sym__arithmetic_binary_expression, + STATE(1839), 1, + sym__arithmetic_ternary_expression, + STATE(1842), 1, + sym__arithmetic_unary_expression, + STATE(1884), 1, + sym__arithmetic_postfix_expression, + ACTIONS(5975), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5977), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1843), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [113227] = 17, + [117765] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(324), 1, @@ -150384,33 +154156,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(342), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(6165), 1, + ACTIONS(6447), 1, sym_word, - ACTIONS(6173), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6415), 1, + ACTIONS(6633), 1, anon_sym_DOLLAR, - ACTIONS(1059), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6169), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(6171), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150420,44 +154192,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113291] = 17, + [117829] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 1, + ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(1391), 1, + ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(1395), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1411), 1, + ACTIONS(342), 1, sym__brace_start, - ACTIONS(4349), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(4353), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4355), 1, - anon_sym_BQUOTE, - ACTIONS(4357), 1, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6295), 1, + ACTIONS(3232), 1, + anon_sym_BQUOTE, + ACTIONS(6447), 1, sym_word, - ACTIONS(6301), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6417), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(4343), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4359), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6297), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(6299), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(670), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150467,44 +154239,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113355] = 17, + [117893] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(4385), 1, anon_sym_DOLLAR, - ACTIONS(1599), 1, + ACTIONS(4389), 1, + anon_sym_DQUOTE, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(1605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, - sym__brace_start, - ACTIONS(4742), 1, - anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(4399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5839), 1, + ACTIONS(4413), 1, + sym__brace_start, + ACTIONS(6063), 1, sym_word, - ACTIONS(5847), 1, + ACTIONS(6071), 1, sym__comment_word, - ACTIONS(4736), 2, + ACTIONS(4381), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5843), 2, - sym__special_character, + ACTIONS(6067), 2, sym_test_operator, - ACTIONS(5845), 2, + sym__special_character, + ACTIONS(6069), 2, sym_raw_string, sym_ansi_c_string, - STATE(1010), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150514,44 +154286,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113419] = 17, + [117957] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(5334), 1, anon_sym_DOLLAR, - ACTIONS(4636), 1, + ACTIONS(5338), 1, anon_sym_DQUOTE, - ACTIONS(4640), 1, + ACTIONS(5342), 1, aux_sym_number_token1, - ACTIONS(4642), 1, + ACTIONS(5344), 1, aux_sym_number_token2, - ACTIONS(4644), 1, + ACTIONS(5346), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4646), 1, + ACTIONS(5348), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4648), 1, + ACTIONS(5350), 1, anon_sym_BQUOTE, - ACTIONS(4650), 1, + ACTIONS(5352), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4660), 1, + ACTIONS(5358), 1, sym__brace_start, - ACTIONS(6307), 1, + ACTIONS(6253), 1, sym_word, - ACTIONS(6315), 1, + ACTIONS(6261), 1, sym__comment_word, - ACTIONS(4628), 2, + ACTIONS(5332), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4652), 2, + ACTIONS(5354), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6311), 2, - sym__special_character, + ACTIONS(6257), 2, sym_test_operator, - ACTIONS(6313), 2, + sym__special_character, + ACTIONS(6259), 2, sym_raw_string, sym_ansi_c_string, - STATE(2076), 9, + STATE(3610), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150561,44 +154333,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113483] = 17, + [118021] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(4665), 1, + anon_sym_DQUOTE, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(2252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(6007), 1, - sym_word, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6019), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6021), 1, + ACTIONS(4675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6027), 1, + ACTIONS(4689), 1, + sym__brace_start, + ACTIONS(6125), 1, + sym_word, + ACTIONS(6133), 1, sym__comment_word, - ACTIONS(6419), 1, + ACTIONS(6637), 1, anon_sym_DOLLAR, - ACTIONS(6009), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6013), 2, - sym__special_character, + ACTIONS(4681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6129), 2, sym_test_operator, - ACTIONS(6017), 2, + sym__special_character, + ACTIONS(6131), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(6025), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1122), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150608,91 +154380,129 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113547] = 17, + [118085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 1, + ACTIONS(6639), 1, + aux_sym_concatenation_token1, + ACTIONS(6641), 1, + sym__concat, + STATE(2421), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [118127] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, + anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(2248), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(2252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(6007), 1, - sym_word, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6019), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6021), 1, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6027), 1, - sym__comment_word, - ACTIONS(6421), 1, - anon_sym_DOLLAR, - ACTIONS(6009), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6013), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6017), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6025), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6643), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1627), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [113611] = 17, + [118195] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, + ACTIONS(979), 1, anon_sym_DQUOTE, - ACTIONS(4588), 1, + ACTIONS(983), 1, aux_sym_number_token1, - ACTIONS(4590), 1, + ACTIONS(985), 1, aux_sym_number_token2, - ACTIONS(4592), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4594), 1, + ACTIONS(989), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4596), 1, + ACTIONS(991), 1, anon_sym_BQUOTE, - ACTIONS(4598), 1, + ACTIONS(993), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4608), 1, + ACTIONS(1001), 1, sym__brace_start, - ACTIONS(6271), 1, + ACTIONS(5949), 1, sym_word, - ACTIONS(6277), 1, + ACTIONS(5957), 1, sym__comment_word, - ACTIONS(6423), 1, + ACTIONS(6645), 1, anon_sym_DOLLAR, - ACTIONS(4576), 2, + ACTIONS(965), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4600), 2, + ACTIONS(995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6273), 2, - sym__special_character, + ACTIONS(5953), 2, sym_test_operator, - ACTIONS(6275), 2, + sym__special_character, + ACTIONS(5955), 2, sym_raw_string, sym_ansi_c_string, - STATE(886), 9, + STATE(1435), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150702,95 +154512,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113675] = 21, - ACTIONS(3), 1, + [118259] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(5474), 1, + ACTIONS(5891), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, - aux_sym__c_word_token1, - ACTIONS(5480), 1, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, - ACTIONS(5482), 1, - anon_sym_DQUOTE, - ACTIONS(5484), 1, + ACTIONS(5901), 1, aux_sym_number_token1, - ACTIONS(5486), 1, + ACTIONS(5903), 1, aux_sym_number_token2, - ACTIONS(5488), 1, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5492), 1, + ACTIONS(5909), 1, anon_sym_BQUOTE, - ACTIONS(5494), 1, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6427), 1, - aux_sym_heredoc_redirect_token1, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(2515), 1, - sym__c_terminator, - STATE(3635), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - ACTIONS(5472), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6425), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6647), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1738), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [113747] = 17, + [118327] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(5696), 1, + anon_sym_DOLLAR, + ACTIONS(5700), 1, anon_sym_DQUOTE, - ACTIONS(4317), 1, + ACTIONS(5704), 1, aux_sym_number_token1, - ACTIONS(4319), 1, + ACTIONS(5706), 1, aux_sym_number_token2, - ACTIONS(4321), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4323), 1, + ACTIONS(5710), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4325), 1, + ACTIONS(5712), 1, anon_sym_BQUOTE, - ACTIONS(4327), 1, + ACTIONS(5714), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4337), 1, + ACTIONS(5720), 1, sym__brace_start, - ACTIONS(5883), 1, + ACTIONS(6309), 1, sym_word, - ACTIONS(5891), 1, + ACTIONS(6317), 1, sym__comment_word, - ACTIONS(6429), 1, - anon_sym_DOLLAR, - ACTIONS(4305), 2, + ACTIONS(5694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4329), 2, + ACTIONS(5716), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5887), 2, - sym__special_character, + ACTIONS(6313), 2, sym_test_operator, - ACTIONS(5889), 2, + sym__special_character, + ACTIONS(6315), 2, sym_raw_string, sym_ansi_c_string, - STATE(2383), 9, + STATE(3150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150800,44 +154608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113811] = 17, + [118391] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(4712), 1, + ACTIONS(4669), 1, aux_sym_number_token1, - ACTIONS(4714), 1, + ACTIONS(4671), 1, aux_sym_number_token2, - ACTIONS(4716), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4718), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4720), 1, + ACTIONS(4677), 1, anon_sym_BQUOTE, - ACTIONS(4722), 1, + ACTIONS(4679), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4732), 1, + ACTIONS(4689), 1, sym__brace_start, - ACTIONS(5819), 1, + ACTIONS(6125), 1, sym_word, - ACTIONS(5827), 1, + ACTIONS(6133), 1, sym__comment_word, - ACTIONS(6431), 1, + ACTIONS(6649), 1, anon_sym_DOLLAR, - ACTIONS(4700), 2, + ACTIONS(4657), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4724), 2, + ACTIONS(4681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5823), 2, - sym__special_character, + ACTIONS(6129), 2, sym_test_operator, - ACTIONS(5825), 2, + sym__special_character, + ACTIONS(6131), 2, sym_raw_string, sym_ansi_c_string, - STATE(2388), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150847,44 +154655,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113875] = 17, + [118455] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(4625), 1, + anon_sym_DOLLAR, + ACTIONS(4629), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4633), 1, aux_sym_number_token1, - ACTIONS(4934), 1, + ACTIONS(4635), 1, aux_sym_number_token2, - ACTIONS(4936), 1, + ACTIONS(4637), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, + ACTIONS(4639), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, + ACTIONS(4641), 1, anon_sym_BQUOTE, - ACTIONS(4942), 1, + ACTIONS(4643), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4948), 1, + ACTIONS(4653), 1, sym__brace_start, - ACTIONS(6385), 1, + ACTIONS(6497), 1, sym_word, - ACTIONS(6391), 1, + ACTIONS(6505), 1, sym__comment_word, - ACTIONS(6433), 1, - anon_sym_DOLLAR, - ACTIONS(4920), 2, + ACTIONS(4621), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4944), 2, + ACTIONS(4645), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6387), 2, - sym__special_character, + ACTIONS(6501), 2, sym_test_operator, - ACTIONS(6389), 2, + sym__special_character, + ACTIONS(6503), 2, sym_raw_string, sym_ansi_c_string, - STATE(2922), 9, + STATE(3075), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150894,44 +154702,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113939] = 17, + [118519] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, - anon_sym_DQUOTE, - ACTIONS(4588), 1, + ACTIONS(1795), 1, aux_sym_number_token1, - ACTIONS(4590), 1, + ACTIONS(1797), 1, aux_sym_number_token2, - ACTIONS(4592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4594), 1, + ACTIONS(1801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4596), 1, + ACTIONS(1815), 1, + sym__brace_start, + ACTIONS(4353), 1, + anon_sym_DQUOTE, + ACTIONS(4357), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4359), 1, anon_sym_BQUOTE, - ACTIONS(4598), 1, + ACTIONS(4361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4608), 1, - sym__brace_start, - ACTIONS(6271), 1, + ACTIONS(6537), 1, sym_word, - ACTIONS(6277), 1, + ACTIONS(6543), 1, sym__comment_word, - ACTIONS(6435), 1, + ACTIONS(6651), 1, anon_sym_DOLLAR, - ACTIONS(4576), 2, + ACTIONS(4347), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4600), 2, + ACTIONS(4363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6273), 2, - sym__special_character, + ACTIONS(6539), 2, sym_test_operator, - ACTIONS(6275), 2, + sym__special_character, + ACTIONS(6541), 2, sym_raw_string, sym_ansi_c_string, - STATE(886), 9, + STATE(951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150941,44 +154749,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114003] = 17, + [118583] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(1795), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(1797), 1, aux_sym_number_token2, - ACTIONS(330), 1, + ACTIONS(1801), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, + ACTIONS(1815), 1, sym__brace_start, - ACTIONS(1065), 1, + ACTIONS(4353), 1, anon_sym_DQUOTE, - ACTIONS(1069), 1, + ACTIONS(4357), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, + ACTIONS(4359), 1, anon_sym_BQUOTE, - ACTIONS(6165), 1, + ACTIONS(4361), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6537), 1, sym_word, - ACTIONS(6173), 1, + ACTIONS(6543), 1, sym__comment_word, - ACTIONS(6437), 1, + ACTIONS(6653), 1, anon_sym_DOLLAR, - ACTIONS(1059), 2, + ACTIONS(4347), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, + ACTIONS(4363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6169), 2, - sym__special_character, + ACTIONS(6539), 2, sym_test_operator, - ACTIONS(6171), 2, + sym__special_character, + ACTIONS(6541), 2, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, + STATE(951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -150988,232 +154796,110 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114067] = 17, - ACTIONS(3), 1, + [118647] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(3258), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(4934), 1, aux_sym_number_token2, - ACTIONS(4936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4938), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4940), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4948), 1, - sym__brace_start, - ACTIONS(6385), 1, sym_word, - ACTIONS(6391), 1, - sym__comment_word, - ACTIONS(6439), 1, - anon_sym_DOLLAR, - ACTIONS(4920), 2, + ACTIONS(3260), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4944), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6387), 2, sym__special_character, - sym_test_operator, - ACTIONS(6389), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2922), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114131] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2240), 1, - anon_sym_DOLLAR, - ACTIONS(2246), 1, - aux_sym_number_token1, - ACTIONS(2248), 1, - aux_sym_number_token2, - ACTIONS(2252), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2264), 1, - sym__brace_start, - ACTIONS(6007), 1, - sym_word, - ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(6019), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6021), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6027), 1, - sym__comment_word, - ACTIONS(6009), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6013), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6017), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6025), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114195] = 17, - ACTIONS(3), 1, + [118683] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(3262), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(342), 1, - sym__brace_start, - ACTIONS(1065), 1, - anon_sym_DQUOTE, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1071), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3194), 1, - anon_sym_BQUOTE, - ACTIONS(6165), 1, sym_word, - ACTIONS(6173), 1, - sym__comment_word, - ACTIONS(6441), 1, - anon_sym_DOLLAR, - ACTIONS(1059), 2, + ACTIONS(3264), 20, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6169), 2, sym__special_character, - sym_test_operator, - ACTIONS(6171), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1392), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114259] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5094), 1, - anon_sym_DQUOTE, - ACTIONS(5098), 1, - aux_sym_number_token1, - ACTIONS(5100), 1, - aux_sym_number_token2, - ACTIONS(5102), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5108), 1, anon_sym_BQUOTE, - ACTIONS(5110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5116), 1, - sym__brace_start, - ACTIONS(6253), 1, - sym_word, - ACTIONS(6259), 1, - sym__comment_word, - ACTIONS(6443), 1, - anon_sym_DOLLAR, - ACTIONS(5088), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6255), 2, - sym__special_character, - sym_test_operator, - ACTIONS(6257), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(3747), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114323] = 17, + [118719] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR, - ACTIONS(5236), 1, + ACTIONS(413), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(437), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6047), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(6055), 1, sym__comment_word, - ACTIONS(5230), 2, + ACTIONS(6655), 1, + anon_sym_DOLLAR, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6051), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6053), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151223,44 +154909,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114387] = 17, + [118783] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 1, + ACTIONS(413), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, aux_sym_number_token1, - ACTIONS(4235), 1, + ACTIONS(419), 1, aux_sym_number_token2, - ACTIONS(4239), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4249), 1, - sym__brace_start, - ACTIONS(5158), 1, - anon_sym_DQUOTE, - ACTIONS(5162), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(423), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(5166), 1, + ACTIONS(427), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6243), 1, + ACTIONS(437), 1, + sym__brace_start, + ACTIONS(6047), 1, sym_word, - ACTIONS(6249), 1, + ACTIONS(6055), 1, sym__comment_word, - ACTIONS(6445), 1, + ACTIONS(6657), 1, anon_sym_DOLLAR, - ACTIONS(5154), 2, + ACTIONS(389), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5168), 2, + ACTIONS(429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6245), 2, - sym__special_character, + ACTIONS(6051), 2, sym_test_operator, - ACTIONS(6247), 2, + sym__special_character, + ACTIONS(6053), 2, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151270,10 +154956,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114451] = 3, + [118847] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3034), 8, + ACTIONS(3341), 8, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151282,9 +154968,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3036), 20, + ACTIONS(3353), 20, sym_file_descriptor, sym_variable_name, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -151302,78 +154989,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [114487] = 3, + [118883] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(2947), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(5891), 1, + anon_sym_LPAREN, + ACTIONS(5893), 1, + anon_sym_BANG, + ACTIONS(5899), 1, anon_sym_DOLLAR, + ACTIONS(5901), 1, aux_sym_number_token1, + ACTIONS(5903), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2949), 20, - sym_file_descriptor, - sym_variable_name, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5907), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5909), 1, anon_sym_BQUOTE, + ACTIONS(5911), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114523] = 17, + ACTIONS(5915), 1, + sym_variable_name, + ACTIONS(6659), 1, + aux_sym__simple_variable_name_token1, + STATE(1717), 1, + sym__arithmetic_postfix_expression, + STATE(1718), 1, + sym__arithmetic_unary_expression, + STATE(1719), 1, + sym__arithmetic_ternary_expression, + STATE(1730), 1, + sym__arithmetic_binary_expression, + ACTIONS(5895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(5897), 3, + anon_sym_TILDE, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + STATE(1628), 8, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [118951] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(4830), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(4834), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(4836), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(4840), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(4842), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(4854), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6613), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(6619), 1, sym__comment_word, - ACTIONS(6447), 1, + ACTIONS(6661), 1, anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(4822), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(4846), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6615), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6617), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(1667), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151383,44 +155085,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114587] = 17, + [119015] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(1827), 1, anon_sym_DOLLAR, - ACTIONS(5504), 1, - anon_sym_DQUOTE, - ACTIONS(5508), 1, + ACTIONS(1833), 1, aux_sym_number_token1, - ACTIONS(5510), 1, + ACTIONS(1835), 1, aux_sym_number_token2, - ACTIONS(5512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5514), 1, + ACTIONS(1839), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5516), 1, - anon_sym_BQUOTE, - ACTIONS(5518), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5524), 1, + ACTIONS(1851), 1, sym__brace_start, - ACTIONS(6261), 1, + ACTIONS(6173), 1, sym_word, - ACTIONS(6269), 1, + ACTIONS(6181), 1, + anon_sym_DQUOTE, + ACTIONS(6185), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6187), 1, + anon_sym_BQUOTE, + ACTIONS(6189), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6193), 1, sym__comment_word, - ACTIONS(5498), 2, + ACTIONS(6175), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5520), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6265), 2, - sym__special_character, + ACTIONS(6179), 2, sym_test_operator, - ACTIONS(6267), 2, + sym__special_character, + ACTIONS(6183), 2, sym_raw_string, sym_ansi_c_string, - STATE(3586), 9, + ACTIONS(6191), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(851), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151430,44 +155132,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114651] = 17, + [119079] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 1, + ACTIONS(2210), 1, aux_sym_number_token1, - ACTIONS(4235), 1, + ACTIONS(2212), 1, aux_sym_number_token2, - ACTIONS(4239), 1, + ACTIONS(2216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4249), 1, + ACTIONS(2228), 1, sym__brace_start, - ACTIONS(5158), 1, + ACTIONS(6473), 1, + sym_word, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(5162), 1, + ACTIONS(6483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(6485), 1, anon_sym_BQUOTE, - ACTIONS(5166), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6243), 1, - sym_word, - ACTIONS(6249), 1, + ACTIONS(6491), 1, sym__comment_word, - ACTIONS(6449), 1, + ACTIONS(6663), 1, anon_sym_DOLLAR, - ACTIONS(5154), 2, + ACTIONS(6475), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5168), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6245), 2, - sym__special_character, + ACTIONS(6477), 2, sym_test_operator, - ACTIONS(6247), 2, + sym__special_character, + ACTIONS(6481), 2, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + ACTIONS(6489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1164), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151477,77 +155179,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114715] = 3, - ACTIONS(63), 1, + [119143] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1180), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(324), 1, aux_sym_number_token1, + ACTIONS(326), 1, aux_sym_number_token2, + ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1182), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(342), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(1033), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1039), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [114751] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5094), 1, - anon_sym_DQUOTE, - ACTIONS(5098), 1, - aux_sym_number_token1, - ACTIONS(5100), 1, - aux_sym_number_token2, - ACTIONS(5102), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5106), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5108), 1, + ACTIONS(3232), 1, anon_sym_BQUOTE, - ACTIONS(5110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5116), 1, - sym__brace_start, - ACTIONS(6253), 1, + ACTIONS(6447), 1, sym_word, - ACTIONS(6259), 1, + ACTIONS(6455), 1, sym__comment_word, - ACTIONS(6451), 1, + ACTIONS(6665), 1, anon_sym_DOLLAR, - ACTIONS(5088), 2, + ACTIONS(1027), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5112), 2, + ACTIONS(1041), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6255), 2, - sym__special_character, + ACTIONS(6451), 2, sym_test_operator, - ACTIONS(6257), 2, + sym__special_character, + ACTIONS(6453), 2, sym_raw_string, sym_ansi_c_string, - STATE(3747), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151557,44 +155226,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114815] = 17, + [119207] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, + ACTIONS(2210), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(2212), 1, aux_sym_number_token2, - ACTIONS(1605), 1, + ACTIONS(2216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, + ACTIONS(2228), 1, sym__brace_start, - ACTIONS(4742), 1, + ACTIONS(6473), 1, + sym_word, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(6483), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(6485), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5839), 1, - sym_word, - ACTIONS(5847), 1, + ACTIONS(6491), 1, sym__comment_word, - ACTIONS(6453), 1, + ACTIONS(6667), 1, anon_sym_DOLLAR, - ACTIONS(4736), 2, + ACTIONS(6475), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5843), 2, - sym__special_character, + ACTIONS(6477), 2, sym_test_operator, - ACTIONS(5845), 2, + sym__special_character, + ACTIONS(6481), 2, sym_raw_string, sym_ansi_c_string, - STATE(1010), 9, + ACTIONS(6489), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1164), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151604,44 +155273,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114879] = 17, + [119271] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1599), 1, + ACTIONS(491), 1, + anon_sym_DOLLAR, + ACTIONS(495), 1, + anon_sym_DQUOTE, + ACTIONS(499), 1, aux_sym_number_token1, - ACTIONS(1601), 1, + ACTIONS(501), 1, aux_sym_number_token2, - ACTIONS(1605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1619), 1, - sym__brace_start, - ACTIONS(4742), 1, - anon_sym_DQUOTE, - ACTIONS(4746), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4748), 1, + ACTIONS(505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(507), 1, anon_sym_BQUOTE, - ACTIONS(4750), 1, + ACTIONS(509), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5839), 1, + ACTIONS(519), 1, + sym__brace_start, + ACTIONS(6351), 1, sym_word, - ACTIONS(5847), 1, + ACTIONS(6359), 1, sym__comment_word, - ACTIONS(6455), 1, - anon_sym_DOLLAR, - ACTIONS(4736), 2, + ACTIONS(455), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4752), 2, + ACTIONS(511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5843), 2, - sym__special_character, + ACTIONS(6355), 2, sym_test_operator, - ACTIONS(5845), 2, + sym__special_character, + ACTIONS(6357), 2, sym_raw_string, sym_ansi_c_string, - STATE(1010), 9, + STATE(623), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151651,44 +155320,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114943] = 17, + [119335] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5218), 1, + anon_sym_DOLLAR, + ACTIONS(5222), 1, anon_sym_DQUOTE, - ACTIONS(5240), 1, + ACTIONS(5226), 1, aux_sym_number_token1, - ACTIONS(5242), 1, + ACTIONS(5228), 1, aux_sym_number_token2, - ACTIONS(5244), 1, + ACTIONS(5230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5234), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5248), 1, + ACTIONS(5236), 1, anon_sym_BQUOTE, - ACTIONS(5250), 1, + ACTIONS(5238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5256), 1, + ACTIONS(5244), 1, sym__brace_start, - ACTIONS(5949), 1, + ACTIONS(6275), 1, sym_word, - ACTIONS(5957), 1, + ACTIONS(6283), 1, sym__comment_word, - ACTIONS(6457), 1, - anon_sym_DOLLAR, - ACTIONS(5230), 2, + ACTIONS(5216), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5252), 2, + ACTIONS(5240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5953), 2, - sym__special_character, + ACTIONS(6279), 2, sym_test_operator, - ACTIONS(5955), 2, + sym__special_character, + ACTIONS(6281), 2, sym_raw_string, sym_ansi_c_string, - STATE(2553), 9, + STATE(3756), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -151698,20 +155367,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115007] = 6, + [119399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6459), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6462), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2348), 1, + STATE(2504), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(1169), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 21, + ACTIONS(1167), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151733,20 +155401,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [115048] = 6, + sym__special_character, + [119440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, + ACTIONS(6673), 1, aux_sym_concatenation_token1, - ACTIONS(5923), 1, + ACTIONS(6676), 1, sym__concat, - STATE(2431), 1, + STATE(2419), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1185), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 21, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151754,6 +155423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -151767,193 +155437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [115089] = 4, + [119481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6465), 1, - sym__concat, - ACTIONS(3804), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3802), 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, - [115126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6467), 1, + ACTIONS(6639), 1, + aux_sym_concatenation_token1, + ACTIONS(6679), 1, sym__concat, - ACTIONS(3778), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3776), 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, - [115163] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, - anon_sym_LT_LT_LT, - ACTIONS(6471), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6473), 1, + STATE(2419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 3, sym_file_descriptor, - ACTIONS(2580), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2582), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2584), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2588), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2586), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2362), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6469), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [115214] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6475), 1, - sym__concat, - ACTIONS(3772), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3770), 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, - [115251] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6477), 1, - sym__concat, - ACTIONS(3760), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3758), 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, - [115288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6483), 1, sym_variable_name, - STATE(3953), 1, - sym_subscript, - ACTIONS(6481), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2355), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6479), 21, + ACTIONS(1177), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151975,19 +155472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [115329] = 6, + [119522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6639), 1, aux_sym_concatenation_token1, - ACTIONS(6488), 1, + ACTIONS(6681), 1, sym__concat, - STATE(2394), 1, + STATE(2419), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(1173), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 22, + ACTIONS(1171), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152009,19 +155507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [115370] = 4, + [119563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(2588), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2590), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2362), 4, + STATE(2427), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 21, + ACTIONS(2586), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152030,11 +155530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -152043,20 +155541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [115407] = 6, + [119602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, + ACTIONS(6639), 1, aux_sym_concatenation_token1, - ACTIONS(5923), 1, + ACTIONS(6641), 1, sym__concat, - STATE(2367), 1, + STATE(2421), 1, aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(2969), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 21, + ACTIONS(2967), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152078,57 +155576,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [115448] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6500), 1, - anon_sym_LT_LT_LT, - ACTIONS(6503), 1, - sym_file_descriptor, - ACTIONS(6492), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2359), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6495), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(6490), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [115493] = 6, + [119643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, + ACTIONS(6639), 1, aux_sym_concatenation_token1, - ACTIONS(5923), 1, + ACTIONS(6641), 1, sym__concat, - STATE(2364), 1, + STATE(2420), 1, aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(2977), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 21, + ACTIONS(2975), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152150,64 +155611,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [115534] = 11, + [119684] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2590), 1, - anon_sym_LT_LT_LT, - ACTIONS(6473), 1, - sym_file_descriptor, - ACTIONS(6506), 1, + ACTIONS(6691), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2582), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2584), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2588), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2615), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2408), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2362), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6469), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [115585] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2590), 1, + ACTIONS(6693), 1, anon_sym_LT_LT_LT, - ACTIONS(6473), 1, + ACTIONS(6696), 1, sym_file_descriptor, - ACTIONS(6510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(2584), 2, + ACTIONS(6685), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2359), 4, + STATE(2425), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6469), 8, + ACTIONS(6688), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -152216,7 +155637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(6508), 10, + ACTIONS(6683), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152227,273 +155648,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP, - [115630] = 5, + [119729] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2588), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2743), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2362), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_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_LT_DASH, + ACTIONS(2607), 1, anon_sym_LT_LT_LT, - anon_sym_AMP, - [115669] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5921), 1, - aux_sym_concatenation_token1, - ACTIONS(6512), 1, - sym__concat, - STATE(2348), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2666), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [115710] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6518), 1, - sym_variable_name, - STATE(3953), 1, - sym_subscript, - ACTIONS(6516), 2, + ACTIONS(6701), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2355), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6514), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, + ACTIONS(2588), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [115751] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6520), 1, - aux_sym_concatenation_token1, - ACTIONS(6523), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 20, - anon_sym_SEMI, + ACTIONS(2599), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2601), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [115792] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5921), 1, - aux_sym_concatenation_token1, - ACTIONS(6526), 1, - sym__concat, - STATE(2348), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 21, + ACTIONS(2664), 2, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, anon_sym_AMP, - [115833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2418), 4, anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [115867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1246), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [115901] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 1, - anon_sym_LT_LT_LT, - ACTIONS(6530), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6532), 1, - sym_file_descriptor, - ACTIONS(2584), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2705), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2707), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2586), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(2373), 4, + STATE(2427), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6528), 8, + ACTIONS(6699), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -152502,377 +155688,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [115951] = 6, + [119780] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2394), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6536), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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(2607), 1, anon_sym_LT_LT_LT, - anon_sym_AMP, - [115991] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2397), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6540), 2, + ACTIONS(6701), 1, sym_file_descriptor, + ACTIONS(6705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [116031] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 1, - anon_sym_LT_LT_LT, - ACTIONS(6510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6532), 1, - sym_file_descriptor, - ACTIONS(2584), 2, + ACTIONS(2601), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2399), 4, + STATE(2425), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6528), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(6508), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [116075] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6542), 1, - sym_variable_name, - STATE(3928), 1, - sym_subscript, - ACTIONS(6481), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2374), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6479), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(6699), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [116115] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6545), 1, - sym_variable_name, - STATE(3928), 1, - sym_subscript, - ACTIONS(6516), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2374), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6514), 20, + ACTIONS(6703), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, anon_sym_AMP, - [116155] = 3, + [119825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 5, - sym_file_descriptor, + ACTIONS(6707), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [116189] = 3, + ACTIONS(3850), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(3848), 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, + [119862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, - sym_file_descriptor, + ACTIONS(6709), 1, sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1196), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [116223] = 6, + ACTIONS(3859), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(3857), 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, + [119899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, + ACTIONS(6711), 1, sym__concat, - STATE(2397), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [116263] = 3, + ACTIONS(3841), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(3839), 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, + [119936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, - sym_file_descriptor, + ACTIONS(6713), 1, sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1212), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [116297] = 3, + ACTIONS(3835), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(3833), 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, + [119973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(6715), 1, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [116331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1210), 4, - sym_file_descriptor, + ACTIONS(6718), 1, sym__concat, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [116365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1218), 5, + STATE(2432), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 4, sym_file_descriptor, - sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1216), 21, + ACTIONS(1183), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152892,18 +155891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [116399] = 3, + [120014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(6725), 1, sym_variable_name, - ts_builtin_sym_end, + STATE(3963), 1, + sym_subscript, + ACTIONS(6723), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 21, + STATE(2433), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6721), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152911,9 +155913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152923,18 +155927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [116433] = 3, + [120055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 5, + ACTIONS(2662), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1262), 21, + STATE(2427), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2660), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152942,9 +155946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152954,18 +155960,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [116467] = 3, + [120092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 5, - sym_file_descriptor, + ACTIONS(6639), 1, + aux_sym_concatenation_token1, + ACTIONS(6641), 1, sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 21, + ACTIONS(1167), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152973,9 +155981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152985,50 +155994,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [116501] = 5, + sym__special_character, + [120133] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6547), 1, - sym__special_character, - STATE(2386), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2605), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, + ACTIONS(2607), 1, + anon_sym_LT_LT_LT, + ACTIONS(6701), 1, + sym_file_descriptor, + ACTIONS(2588), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2597), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(2599), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2601), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT_DASH, + ACTIONS(2603), 4, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(2427), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6699), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [116539] = 3, + [120184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(6732), 1, sym_variable_name, + STATE(3963), 1, + sym_subscript, + ACTIONS(6730), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1216), 22, + STATE(2433), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6728), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153050,16 +156070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [116573] = 3, + [120225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1237), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 22, + ACTIONS(1235), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153067,11 +156087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153082,16 +156100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [116607] = 3, + anon_sym_BQUOTE, + [120259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1225), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1238), 21, + ACTIONS(1223), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153113,18 +156132,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [116641] = 5, + [120293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6550), 1, - sym__special_character, - STATE(2386), 1, - aux_sym__literal_repeat1, - ACTIONS(2939), 3, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2558), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 21, + ACTIONS(1167), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153132,11 +156153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153146,20 +156164,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [116679] = 6, + sym__special_character, + anon_sym_BQUOTE, + [120333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, - aux_sym_concatenation_token1, - ACTIONS(6552), 1, - sym__concat, - STATE(2348), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(2590), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 20, + ACTIONS(2671), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2461), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153167,11 +156188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153180,18 +156199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [116719] = 4, + [120371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, + sym__concat, + STATE(2504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2373), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 20, + ACTIONS(2995), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153199,6 +156219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -153212,19 +156233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [116755] = 6, + [120411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6488), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2466), 1, + STATE(2498), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(3005), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 21, + ACTIONS(3003), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153232,6 +156253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -153245,20 +156267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [116795] = 6, + [120451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6554), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2414), 1, + STATE(2504), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(3065), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 21, + ACTIONS(3063), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153280,16 +156301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [116835] = 3, + [120491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 5, - sym_file_descriptor, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(2498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1254), 21, + ACTIONS(3067), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153297,9 +156321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153309,18 +156335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [116869] = 3, + [120531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 5, + ACTIONS(6738), 1, + sym__special_character, + STATE(2475), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 3, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1250), 21, + ACTIONS(2967), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153328,9 +156354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153340,21 +156368,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [116903] = 6, + [120569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6740), 1, aux_sym_concatenation_token1, - ACTIONS(6556), 1, + ACTIONS(6743), 1, sym__concat, - STATE(2414), 1, + STATE(2447), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(1185), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 21, + ACTIONS(1183), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153362,11 +156389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153376,15 +156401,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [116943] = 3, + anon_sym_BQUOTE, + [120609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(6746), 1, + sym__special_character, + STATE(2482), 1, + aux_sym__literal_repeat1, + ACTIONS(2969), 4, sym_file_descriptor, - sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1238), 22, + ACTIONS(2967), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153392,11 +156422,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153406,58 +156434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [116977] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6561), 1, - anon_sym_LT_LT_LT, - ACTIONS(6564), 1, - sym_file_descriptor, - ACTIONS(6492), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2399), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6558), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(6490), 9, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP, - [117021] = 5, + anon_sym_BQUOTE, + [120647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2743), 2, + ACTIONS(2662), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2373), 4, + STATE(2461), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 18, + ACTIONS(2660), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153465,123 +156454,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [117059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3950), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3948), 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, - [117093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3944), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3942), 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, - [117127] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [120683] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(2691), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 21, + ACTIONS(2693), 1, + anon_sym_LT_LT_LT, + ACTIONS(6750), 1, + sym_file_descriptor, + ACTIONS(2601), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2671), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2687), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(2689), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(2603), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2461), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6748), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [117161] = 5, + [120733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6567), 1, - sym__special_character, - STATE(2439), 1, - aux_sym__literal_repeat1, - ACTIONS(2939), 4, + ACTIONS(1213), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 20, + ACTIONS(1211), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153589,9 +156522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153601,16 +156536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [117199] = 3, + aux_sym_concatenation_token1, + [120767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1270), 22, + ACTIONS(1239), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153633,16 +156568,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [117233] = 3, + [120801] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 5, + ACTIONS(2693), 1, + anon_sym_LT_LT_LT, + ACTIONS(2715), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6750), 1, sym_file_descriptor, + ACTIONS(2601), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2671), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2689), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2713), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(2418), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(2461), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6748), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [120851] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(2504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6754), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 21, + ACTIONS(6752), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153650,9 +156627,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153662,17 +156641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [117267] = 3, + [120891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(6756), 1, sym_variable_name, + STATE(3943), 1, + sym_subscript, + ACTIONS(6730), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 22, + STATE(2457), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6728), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153680,7 +156662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -153694,20 +156675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [117301] = 6, + [120931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6488), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2397), 1, + STATE(2667), 1, aux_sym_concatenation_repeat1, - ACTIONS(6571), 2, + ACTIONS(1169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 21, + ACTIONS(1167), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153715,7 +156695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -153729,19 +156708,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [117341] = 6, + sym__special_character, + [120971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2394), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6575), 2, + ACTIONS(6758), 1, + sym_variable_name, + STATE(3943), 1, + sym_subscript, + ACTIONS(6723), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 21, + STATE(2457), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6721), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153749,7 +156730,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -153763,16 +156743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [117381] = 3, + [121011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 5, - sym_file_descriptor, + ACTIONS(6639), 1, + aux_sym_concatenation_token1, + ACTIONS(6761), 1, sym__concat, + STATE(2419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1200), 21, + ACTIONS(1177), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153780,9 +156764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153792,17 +156777,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [117415] = 3, + [121051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, - sym_file_descriptor, + ACTIONS(6639), 1, + aux_sym_concatenation_token1, + ACTIONS(6763), 1, sym__concat, + STATE(2419), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 22, + ACTIONS(1171), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153810,7 +156798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -153824,17 +156811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [117449] = 3, + [121091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 5, + ACTIONS(1249), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 21, + ACTIONS(1247), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153842,9 +156827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153855,38 +156842,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [117483] = 11, + [121125] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 1, + ACTIONS(2693), 1, anon_sym_LT_LT_LT, - ACTIONS(6532), 1, - sym_file_descriptor, - ACTIONS(6577), 1, + ACTIONS(6705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2584), 2, + ACTIONS(6750), 1, + sym_file_descriptor, + ACTIONS(2601), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2705), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2709), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2713), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(2408), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(2373), 4, + STATE(2462), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6528), 8, + ACTIONS(6748), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -153895,84 +156868,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [117533] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6579), 1, - aux_sym_concatenation_token1, - ACTIONS(6582), 1, - sym__concat, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 21, + ACTIONS(6703), 9, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, anon_sym_AMP, - [117573] = 6, + [121169] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, - aux_sym_concatenation_token1, - ACTIONS(5923), 1, - sym__concat, - STATE(2391), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6691), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6768), 1, + anon_sym_LT_LT_LT, + ACTIONS(6771), 1, + sym_file_descriptor, + ACTIONS(6685), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2462), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6765), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, + ACTIONS(6683), 9, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP, - [117613] = 3, + [121213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 5, + ACTIONS(1269), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 21, + ACTIONS(1267), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153980,9 +156930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153993,17 +156945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [117647] = 3, + [121247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 5, - sym_file_descriptor, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, sym__concat, + STATE(2650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1212), 21, + ACTIONS(1167), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154023,17 +156978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [117681] = 3, + sym__special_character, + [121287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1185), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1250), 22, + ACTIONS(1183), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154056,15 +157010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [117715] = 3, + [121321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1257), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1254), 22, + ACTIONS(1255), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154087,47 +157041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [117749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3776), 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, - [117783] = 3, + [121355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 5, + ACTIONS(1203), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1196), 21, + ACTIONS(1201), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154149,20 +157072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [117817] = 6, + [121389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, - aux_sym_concatenation_token1, - ACTIONS(5923), 1, - sym__concat, - STATE(2431), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1203), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 20, + ACTIONS(1201), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154170,6 +157088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -154183,20 +157102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [117857] = 6, + aux_sym_concatenation_token1, + [121423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1257), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 20, + ACTIONS(1255), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154216,16 +157132,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [117897] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [121457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1185), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 22, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154233,11 +157151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154248,20 +157164,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [117931] = 6, + anon_sym_BQUOTE, + [121491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6639), 1, aux_sym_concatenation_token1, - ACTIONS(6587), 1, + ACTIONS(6641), 1, sym__concat, - STATE(2468), 1, + STATE(2459), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(2969), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 20, + ACTIONS(2967), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154271,6 +157188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154280,17 +157199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [117971] = 3, + [121531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, - sym_file_descriptor, + ACTIONS(6639), 1, + aux_sym_concatenation_token1, + ACTIONS(6641), 1, sym__concat, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1246), 22, + ACTIONS(2975), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154298,7 +157220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -154312,16 +157233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [118005] = 3, + [121571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, + ACTIONS(1269), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1200), 22, + ACTIONS(1267), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154329,11 +157250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154344,15 +157263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [118039] = 3, + anon_sym_BQUOTE, + [121605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1213), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 22, + ACTIONS(1211), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154360,11 +157281,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154375,47 +157294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [118073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3804), 5, - anon_sym_COMMA, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_COLON, - ACTIONS(3802), 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, - [118107] = 3, + anon_sym_BQUOTE, + [121639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 5, + ACTIONS(6774), 1, + sym__special_character, + STATE(2475), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 3, sym_file_descriptor, - sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1204), 21, + ACTIONS(1273), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154423,9 +157314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154435,22 +157328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [118141] = 6, + [121677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6589), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2348), 1, + STATE(2498), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(6779), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 20, + ACTIONS(6777), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154458,6 +157348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -154471,16 +157362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [118181] = 3, + [121717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 5, - sym_file_descriptor, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(2504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1270), 21, + ACTIONS(6781), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154488,9 +157382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154500,23 +157396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [118215] = 6, + [121757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6587), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2603), 1, + STATE(2498), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 4, + ACTIONS(6787), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 19, + ACTIONS(6785), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154524,8 +157416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154535,16 +157430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [118255] = 3, + [121797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(1241), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1262), 22, + ACTIONS(1239), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154552,11 +157447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154567,15 +157460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [118289] = 3, + anon_sym_BQUOTE, + [121831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1249), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1204), 22, + ACTIONS(1247), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154583,11 +157478,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154598,20 +157491,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [118323] = 6, + anon_sym_BQUOTE, + [121865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6591), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6594), 1, + ACTIONS(6736), 1, sym__concat, - STATE(2436), 1, + STATE(2665), 1, aux_sym_concatenation_repeat1, - ACTIONS(1175), 3, + ACTIONS(1169), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 20, + ACTIONS(1167), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154619,7 +157514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -154631,20 +157525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [118363] = 6, + sym__special_character, + [121905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2394), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 2, + ACTIONS(6789), 1, + sym__special_character, + STATE(2482), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 21, + ACTIONS(1273), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154652,11 +157546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154666,15 +157558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [118403] = 3, + anon_sym_BQUOTE, + [121943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1221), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 22, + ACTIONS(1219), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154682,11 +157576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154697,19 +157589,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [118437] = 5, + anon_sym_BQUOTE, + [121977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6597), 1, - sym__special_character, - STATE(2439), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 4, + ACTIONS(1207), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 20, + ACTIONS(1205), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154717,9 +157606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154729,20 +157620,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [118475] = 6, + aux_sym_concatenation_token1, + [122011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2394), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 2, + ACTIONS(1237), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 21, + ACTIONS(1235), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154764,19 +157651,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [118515] = 6, + aux_sym_concatenation_token1, + [122045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2397), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 2, + ACTIONS(1207), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 21, + ACTIONS(1205), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154798,133 +157682,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [118555] = 16, + aux_sym_concatenation_token1, + [122079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_RBRACE3, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4255), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4009), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4007), 21, + sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_0, - anon_sym__, - [118614] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6620), 1, anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4389), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, + anon_sym_AT, anon_sym_EQ2, - ACTIONS(4277), 3, + 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, + [122113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(4003), 21, + sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_0, - anon_sym__, - [118673] = 6, + 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, + [122147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 1, - aux_sym_concatenation_token1, - ACTIONS(6626), 1, + ACTIONS(1245), 5, + sym_file_descriptor, sym__concat, - ACTIONS(6628), 1, - sym__brace_start, - STATE(2566), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 21, - anon_sym_LPAREN_LPAREN, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 21, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [118712] = 3, + [122181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1217), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1270), 22, + ACTIONS(1215), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154947,60 +157807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [118745] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6630), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4269), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [118804] = 5, + [122215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 1, - sym__special_character, - STATE(2447), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 2, + ACTIONS(1225), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, + ACTIONS(1223), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155022,103 +157837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [118841] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6635), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, - anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3806), 1, - sym__c_expression, - STATE(3925), 1, - sym__c_variable_assignment, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [118906] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6659), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4230), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [118965] = 3, + aux_sym_concatenation_token1, + [122249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 3, + ACTIONS(1253), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1212), 22, + ACTIONS(1251), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155126,11 +157855,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155141,152 +157868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [118998] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, - anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6661), 1, - anon_sym_RPAREN_RPAREN, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3807), 1, - sym__c_expression, - STATE(3925), 1, - sym__c_variable_assignment, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [119063] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6663), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4197), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [119122] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6665), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4051), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [119181] = 6, + [122283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6792), 1, aux_sym_concatenation_token1, - ACTIONS(6587), 1, + ACTIONS(6795), 1, sym__concat, - STATE(2652), 1, + STATE(2493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1185), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 19, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155294,8 +157889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155305,139 +157903,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [119220] = 16, + [122323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(1261), 5, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(6667), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4378), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [119279] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2408), 1, - anon_sym_BQUOTE, - ACTIONS(2917), 1, - anon_sym_LT_LT_LT, - ACTIONS(6671), 1, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6673), 1, - sym_file_descriptor, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2902), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2915), 2, + ACTIONS(1259), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2913), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2596), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6669), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [119328] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6675), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4365), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [119387] = 3, + [122357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 3, + ACTIONS(1265), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1196), 22, + ACTIONS(1263), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155460,57 +157965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [119420] = 16, + [122391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6677), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4502), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(3859), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(3857), 21, + sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_0, - anon_sym__, - [119479] = 3, + 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, + [122425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 3, + ACTIONS(1221), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1204), 22, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155533,62 +158027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [119512] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6679), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4366), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [119571] = 6, + [122459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6798), 1, sym__concat, - STATE(2665), 1, + STATE(2493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(1179), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 20, + ACTIONS(1177), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155596,8 +158047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155607,16 +158061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - anon_sym_BQUOTE, - [119610] = 3, + [122499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(1253), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 22, + ACTIONS(1251), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155638,20 +158091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [119643] = 6, + aux_sym_concatenation_token1, + [122533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6685), 1, - sym__concat, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(1207), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 20, + ACTIONS(1205), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155659,10 +158109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155672,14 +158121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119682] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [122567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 3, + ACTIONS(1207), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1200), 22, + ACTIONS(1205), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155687,11 +158140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155702,19 +158153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [119715] = 6, + anon_sym_BQUOTE, + [122601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6687), 1, - sym__concat, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(1217), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 20, + ACTIONS(1215), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155722,10 +158171,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155735,63 +158183,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119754] = 16, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [122635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6689), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4118), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(3850), 5, + anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_COLON, + ACTIONS(3848), 21, + sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_0, - anon_sym__, - [119813] = 6, + 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, + [122669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6691), 1, + ACTIONS(6800), 1, sym__concat, - STATE(2366), 1, + STATE(2493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1173), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 19, + ACTIONS(1171), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155799,8 +158236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155810,21 +158250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [119852] = 6, + [122709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6693), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1229), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 19, + ACTIONS(1227), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155832,9 +158266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155844,20 +158280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119891] = 6, + aux_sym_concatenation_token1, + [122743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6695), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1261), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 19, + ACTIONS(1259), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155865,8 +158297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155876,21 +158311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [119930] = 6, + aux_sym_concatenation_token1, + [122777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6697), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1245), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 19, + ACTIONS(1243), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -155898,9 +158328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155910,105 +158342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [119969] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6699), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4074), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [120028] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6701), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4410), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [120087] = 6, + aux_sym_concatenation_token1, + [122811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(1265), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 20, + ACTIONS(1263), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156028,107 +158372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [120126] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, - anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6703), 1, - anon_sym_RPAREN_RPAREN, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3883), 1, - sym__c_expression, - STATE(3925), 1, - sym__c_variable_assignment, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [120191] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6705), 1, - anon_sym_RPAREN_RPAREN, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3885), 1, - sym__c_expression, - STATE(3925), 1, - sym__c_variable_assignment, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [120256] = 3, + [122845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 3, + ACTIONS(1233), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1238), 22, + ACTIONS(1231), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156136,11 +158391,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156151,57 +158404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [120289] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6707), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4047), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [120348] = 3, + [122879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 3, + ACTIONS(1233), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 22, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156224,60 +158436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [120381] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, - anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6709), 1, - anon_sym_RPAREN_RPAREN, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3880), 1, - sym__c_expression, - STATE(3925), 1, - sym__c_variable_assignment, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [120446] = 3, + [122913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 3, + ACTIONS(1229), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 22, + ACTIONS(1227), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156285,11 +158453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156300,60 +158466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [120479] = 19, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6711), 1, - anon_sym_RPAREN_RPAREN, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3890), 1, - sym__c_expression, - STATE(3925), 1, - sym__c_variable_assignment, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [120544] = 3, + [122947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 3, + ACTIONS(6802), 1, + sym__special_character, + STATE(2587), 1, + aux_sym__literal_repeat1, + ACTIONS(6754), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 22, + ACTIONS(6752), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156361,11 +158486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156375,15 +158498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [120577] = 3, + anon_sym_BQUOTE, + [122984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 3, + ACTIONS(1249), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1216), 22, + ACTIONS(1247), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156406,100 +158529,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [120610] = 16, + [123017] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6713), 1, + ACTIONS(6808), 1, anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4431), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [120669] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6715), 1, - anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4021), 1, + STATE(4533), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [120728] = 3, + [123076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, + ACTIONS(1265), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 22, + ACTIONS(1263), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156522,14 +158602,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [120761] = 3, + [123109] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6824), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4087), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [123168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(1203), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 22, + ACTIONS(1201), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156552,65 +158675,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [120794] = 16, + [123201] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6717), 1, + ACTIONS(6826), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4452), 1, + STATE(4531), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [120853] = 6, + [123260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 1, + ACTIONS(6832), 1, aux_sym_concatenation_token1, - ACTIONS(6626), 1, + ACTIONS(6834), 1, sym__concat, - ACTIONS(6721), 1, - sym__brace_start, - STATE(2564), 1, + STATE(2584), 1, aux_sym_concatenation_repeat1, - ACTIONS(6719), 21, + ACTIONS(6830), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6828), 19, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -156627,208 +158751,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [120892] = 16, + [123299] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6836), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6842), 1, + aux_sym__c_word_token1, + ACTIONS(6844), 1, + anon_sym_DOLLAR, + ACTIONS(6846), 1, + anon_sym_DQUOTE, + ACTIONS(6848), 1, + aux_sym_number_token1, + ACTIONS(6850), 1, + aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6856), 1, + anon_sym_BQUOTE, + ACTIONS(6858), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + STATE(3896), 1, + sym__c_expression, + STATE(3980), 1, + sym__c_variable_assignment, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2012), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [123364] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6723), 1, + ACTIONS(6860), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4455), 1, + STATE(4088), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [120951] = 16, + [123423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6832), 1, + aux_sym_concatenation_token1, + ACTIONS(6834), 1, + sym__concat, + STATE(2576), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6864), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6862), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_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(6612), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6725), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4033), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [123462] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6842), 1, + aux_sym__c_word_token1, + ACTIONS(6844), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [121010] = 16, + ACTIONS(6846), 1, + anon_sym_DQUOTE, + ACTIONS(6848), 1, + aux_sym_number_token1, + ACTIONS(6850), 1, + aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6856), 1, + anon_sym_BQUOTE, + ACTIONS(6858), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6866), 1, + anon_sym_RPAREN_RPAREN, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + STATE(3897), 1, + sym__c_expression, + STATE(3980), 1, + sym__c_variable_assignment, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2012), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [123527] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6727), 1, + ACTIONS(6868), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4515), 1, + STATE(4089), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [121069] = 6, + [123586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6733), 1, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2598), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 3, sym_file_descriptor, - STATE(2505), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6469), 8, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(6729), 13, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [123625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2558), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [121108] = 19, + anon_sym_BQUOTE, + [123664] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(6639), 1, + ACTIONS(6840), 1, anon_sym_LPAREN, - ACTIONS(6641), 1, + ACTIONS(6842), 1, aux_sym__c_word_token1, - ACTIONS(6643), 1, + ACTIONS(6844), 1, anon_sym_DOLLAR, - ACTIONS(6645), 1, + ACTIONS(6846), 1, anon_sym_DQUOTE, - ACTIONS(6647), 1, + ACTIONS(6848), 1, aux_sym_number_token1, - ACTIONS(6649), 1, + ACTIONS(6850), 1, aux_sym_number_token2, - ACTIONS(6651), 1, + ACTIONS(6852), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, + ACTIONS(6856), 1, anon_sym_BQUOTE, - ACTIONS(6657), 1, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6735), 1, + ACTIONS(6870), 1, anon_sym_RPAREN_RPAREN, - STATE(1981), 1, + STATE(1980), 1, sym__c_postfix_expression, - STATE(2010), 1, + STATE(1986), 1, sym__c_binary_expression, - STATE(2014), 1, + STATE(1996), 1, sym__c_unary_expression, - STATE(3814), 1, + STATE(3839), 1, sym__c_expression, - STATE(3925), 1, + STATE(3980), 1, sym__c_variable_assignment, - ACTIONS(6637), 2, + ACTIONS(6838), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2016), 7, + STATE(2012), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -156836,88 +159074,45 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [121173] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6737), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4445), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [121232] = 19, + [123729] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(6639), 1, + ACTIONS(6840), 1, anon_sym_LPAREN, - ACTIONS(6641), 1, + ACTIONS(6842), 1, aux_sym__c_word_token1, - ACTIONS(6643), 1, + ACTIONS(6844), 1, anon_sym_DOLLAR, - ACTIONS(6645), 1, + ACTIONS(6846), 1, anon_sym_DQUOTE, - ACTIONS(6647), 1, + ACTIONS(6848), 1, aux_sym_number_token1, - ACTIONS(6649), 1, + ACTIONS(6850), 1, aux_sym_number_token2, - ACTIONS(6651), 1, + ACTIONS(6852), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, + ACTIONS(6856), 1, anon_sym_BQUOTE, - ACTIONS(6657), 1, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6739), 1, + ACTIONS(6872), 1, anon_sym_RPAREN_RPAREN, - STATE(1981), 1, + STATE(1980), 1, sym__c_postfix_expression, - STATE(2010), 1, + STATE(1986), 1, sym__c_binary_expression, - STATE(2014), 1, + STATE(1996), 1, sym__c_unary_expression, - STATE(3805), 1, + STATE(3853), 1, sym__c_expression, - STATE(3925), 1, + STATE(3980), 1, sym__c_variable_assignment, - ACTIONS(6637), 2, + ACTIONS(6838), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2016), 7, + STATE(2012), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -156925,18 +159120,14 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [121297] = 5, + [123794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - sym__special_character, - STATE(2567), 1, - aux_sym__literal_repeat1, - ACTIONS(6575), 3, + ACTIONS(1233), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 20, + ACTIONS(1231), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156944,9 +159135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156956,22 +159149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [121334] = 5, + aux_sym_concatenation_token1, + [123827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 2, + ACTIONS(1229), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2902), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2596), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 17, + ACTIONS(1227), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -156979,7 +159165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156988,18 +159179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [121371] = 5, + aux_sym_concatenation_token1, + [123860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6743), 1, - sym__special_character, - STATE(2447), 1, - aux_sym__literal_repeat1, - ACTIONS(6536), 2, + ACTIONS(1221), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 21, + ACTIONS(1219), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157021,60 +159209,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [121408] = 16, + aux_sym_concatenation_token1, + [123893] = 19, + ACTIONS(63), 1, + sym_comment, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6842), 1, + aux_sym__c_word_token1, + ACTIONS(6844), 1, + anon_sym_DOLLAR, + ACTIONS(6846), 1, + anon_sym_DQUOTE, + ACTIONS(6848), 1, + aux_sym_number_token1, + ACTIONS(6850), 1, + aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6856), 1, + anon_sym_BQUOTE, + ACTIONS(6858), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6874), 1, + anon_sym_RPAREN_RPAREN, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + STATE(3849), 1, + sym__c_expression, + STATE(3980), 1, + sym__c_variable_assignment, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2012), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [123958] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6745), 1, + ACTIONS(6876), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4113), 1, + STATE(4475), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [121467] = 5, + [124017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6743), 1, + ACTIONS(6878), 1, sym__special_character, - STATE(2447), 1, + STATE(2549), 1, aux_sym__literal_repeat1, - ACTIONS(6575), 2, + ACTIONS(2997), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 21, + ACTIONS(2995), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157096,472 +159331,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [121504] = 16, + [124054] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6747), 1, + ACTIONS(6880), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4380), 1, + STATE(4462), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [121563] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6741), 1, - sym__special_character, - STATE(2567), 1, - aux_sym__literal_repeat1, - ACTIONS(3042), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [121600] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6754), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6756), 1, - sym_file_descriptor, - STATE(2505), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6751), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(6749), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [121639] = 16, + [124113] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6759), 1, + ACTIONS(6882), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4426), 1, + STATE(4455), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [121698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2743), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2524), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 17, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [121735] = 5, + [124172] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6741), 1, - sym__special_character, - STATE(2567), 1, - aux_sym__literal_repeat1, - ACTIONS(3062), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, anon_sym_BQUOTE, - [121772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1252), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1250), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [121805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1254), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [121838] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2602), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 4, - sym_file_descriptor, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [121877] = 6, - ACTIONS(3), 1, + ACTIONS(6884), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4051), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [124231] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2603), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [121916] = 16, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6842), 1, + aux_sym__c_word_token1, + ACTIONS(6844), 1, + anon_sym_DOLLAR, + ACTIONS(6846), 1, + anon_sym_DQUOTE, + ACTIONS(6848), 1, + aux_sym_number_token1, + ACTIONS(6850), 1, + aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6856), 1, + anon_sym_BQUOTE, + ACTIONS(6858), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6886), 1, + anon_sym_RPAREN_RPAREN, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + STATE(3864), 1, + sym__c_expression, + STATE(3980), 1, + sym__c_variable_assignment, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2012), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [124296] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6761), 1, + ACTIONS(6888), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4412), 1, + STATE(4058), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [121975] = 16, + [124355] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6763), 1, + ACTIONS(6890), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4207), 1, + STATE(4030), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [122034] = 19, + [124414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6878), 1, + sym__special_character, + STATE(2549), 1, + aux_sym__literal_repeat1, + ACTIONS(3065), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [124451] = 19, ACTIONS(63), 1, sym_comment, - ACTIONS(6639), 1, + ACTIONS(6840), 1, anon_sym_LPAREN, - ACTIONS(6641), 1, + ACTIONS(6842), 1, aux_sym__c_word_token1, - ACTIONS(6643), 1, + ACTIONS(6844), 1, anon_sym_DOLLAR, - ACTIONS(6645), 1, + ACTIONS(6846), 1, anon_sym_DQUOTE, - ACTIONS(6647), 1, + ACTIONS(6848), 1, aux_sym_number_token1, - ACTIONS(6649), 1, + ACTIONS(6850), 1, aux_sym_number_token2, - ACTIONS(6651), 1, + ACTIONS(6852), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, + ACTIONS(6856), 1, anon_sym_BQUOTE, - ACTIONS(6657), 1, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6765), 1, + ACTIONS(6892), 1, anon_sym_RPAREN_RPAREN, - STATE(1981), 1, + STATE(1980), 1, sym__c_postfix_expression, - STATE(2010), 1, + STATE(1986), 1, sym__c_binary_expression, - STATE(2014), 1, + STATE(1996), 1, sym__c_unary_expression, - STATE(3847), 1, + STATE(3867), 1, sym__c_expression, - STATE(3925), 1, + STATE(3980), 1, sym__c_variable_assignment, - ACTIONS(6637), 2, + ACTIONS(6838), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2016), 7, + STATE(2012), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -157569,86 +159670,21 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [122099] = 6, + [124516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6767), 1, - sym_variable_name, - STATE(3950), 1, - sym_subscript, - STATE(2516), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6481), 3, + ACTIONS(2590), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6479), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2736), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [122138] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6776), 1, - anon_sym_LT_LT_LT, - ACTIONS(6779), 1, - sym_file_descriptor, - ACTIONS(6498), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(6770), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2517), 4, + STATE(2619), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6490), 7, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(6773), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [122181] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6741), 1, - sym__special_character, - STATE(2567), 1, - aux_sym__literal_repeat1, - ACTIONS(6536), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 20, + ACTIONS(2586), 17, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157657,9 +159693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157668,15 +159702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [122218] = 3, + [124553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(6894), 1, + sym_variable_name, + STATE(4016), 1, + sym_subscript, + ACTIONS(6723), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 22, + STATE(2544), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6721), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157684,11 +159723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157698,45 +159734,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [122251] = 3, + anon_sym_BQUOTE, + [124592] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1246), 22, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, - [122284] = 3, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6897), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4034), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [124651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1225), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 22, + ACTIONS(1223), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157759,19 +159808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [122317] = 4, + [124684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 3, + ACTIONS(6802), 1, + sym__special_character, + STATE(2587), 1, + aux_sym__literal_repeat1, + ACTIONS(6783), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 18, + ACTIONS(6781), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157779,6 +159827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -157790,65 +159839,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [122352] = 5, + anon_sym_BQUOTE, + [124721] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2743), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(6691), 1, aux_sym_heredoc_redirect_token1, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 16, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_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_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [122389] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2721), 1, + ACTIONS(6905), 1, anon_sym_LT_LT_LT, - ACTIONS(6510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6784), 1, + ACTIONS(6908), 1, sym_file_descriptor, - ACTIONS(2717), 2, + ACTIONS(6899), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2527), 4, + STATE(2548), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6508), 8, + ACTIONS(6683), 8, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP, - ACTIONS(6782), 8, + anon_sym_BQUOTE, + ACTIONS(6902), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -157857,20 +159875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [122432] = 6, + [124764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6786), 1, - sym_variable_name, - STATE(3990), 1, - sym_subscript, - ACTIONS(6516), 2, + ACTIONS(6911), 1, + sym__special_character, + STATE(2549), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2528), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6514), 19, + ACTIONS(1273), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157878,9 +159893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157890,18 +159907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [122471] = 4, + [124801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(1203), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(2524), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 19, + ACTIONS(1201), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157921,55 +159935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [122506] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6791), 1, - anon_sym_LT_LT_LT, - ACTIONS(6794), 1, - sym_file_descriptor, - ACTIONS(6770), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2527), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6490), 8, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(6788), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [122549] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [124834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6797), 1, - sym_variable_name, - STATE(3990), 1, - sym_subscript, - ACTIONS(6481), 2, + ACTIONS(1217), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(2528), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6479), 19, + ACTIONS(1215), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157977,9 +159952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157989,143 +159966,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [122588] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6800), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4244), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [122647] = 16, + aux_sym_concatenation_token1, + [124867] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6802), 1, + ACTIONS(6914), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4174), 1, + STATE(4108), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [122706] = 16, + [124926] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6804), 1, + ACTIONS(6916), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4093), 1, + STATE(4105), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [122765] = 3, + [124985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 3, + ACTIONS(1257), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1262), 22, + ACTIONS(1255), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158133,11 +160069,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158148,106 +160082,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - [122798] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6806), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4049), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [122857] = 16, + [125018] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6808), 1, + ACTIONS(6918), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4015), 1, + STATE(4141), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [122916] = 6, + [125077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2468), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(2662), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 19, + STATE(2562), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2660), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158267,20 +160157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [122955] = 6, + [125112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1185), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 19, + ACTIONS(1183), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158288,6 +160173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -158299,15 +160185,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [122994] = 3, + [125145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 3, - sym_file_descriptor, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6920), 1, sym__concat, + STATE(2432), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 22, + ACTIONS(1171), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158315,11 +160208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158329,314 +160219,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - [123027] = 11, + anon_sym_BQUOTE, + [125184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 1, - anon_sym_RPAREN, - ACTIONS(2721), 1, - anon_sym_LT_LT_LT, - ACTIONS(6577), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6784), 1, + ACTIONS(1213), 4, sym_file_descriptor, - ACTIONS(2715), 2, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 21, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2717), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2713), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2524), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6782), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [123076] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6810), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4048), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123135] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6812), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4043), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123194] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6814), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4070), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123253] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6816), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4084), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123312] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6818), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4109), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123371] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6820), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4135), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123430] = 5, + [125217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6743), 1, - sym__special_character, - STATE(2447), 1, - aux_sym__literal_repeat1, - ACTIONS(3042), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2718), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 21, + ACTIONS(1167), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158644,11 +160270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158658,103 +160281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [123467] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + sym__special_character, anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6822), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4394), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123526] = 16, + [125256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6926), 1, sym_variable_name, - ACTIONS(6824), 1, - anon_sym_RBRACE3, - STATE(1949), 1, + STATE(4016), 1, sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4142), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123585] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6743), 1, - sym__special_character, - STATE(2447), 1, - aux_sym__literal_repeat1, - ACTIONS(3062), 2, + ACTIONS(6730), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 21, + STATE(2544), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6728), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158762,11 +160304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158776,36 +160315,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [123622] = 11, + anon_sym_BQUOTE, + [125295] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_BQUOTE, - ACTIONS(2917), 1, + ACTIONS(2914), 1, anon_sym_LT_LT_LT, - ACTIONS(6673), 1, - sym_file_descriptor, - ACTIONS(6826), 1, + ACTIONS(6705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2717), 2, + ACTIONS(6930), 1, + sym_file_descriptor, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2902), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2915), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2925), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2596), 4, + STATE(2548), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6669), 8, + ACTIONS(6703), 8, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + anon_sym_BQUOTE, + ACTIONS(6928), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -158814,62 +160351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [123671] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6828), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4306), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123730] = 6, + [125338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2464), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6540), 2, + ACTIONS(1221), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 20, + ACTIONS(1219), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158877,10 +160367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158890,15 +160379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [123769] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [125371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1207), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1216), 21, + ACTIONS(1205), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158906,9 +160396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158919,16 +160411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [123802] = 3, + [125404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1237), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 21, + ACTIONS(1235), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158936,9 +160426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158949,16 +160441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [123835] = 3, + [125437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1207), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 21, + ACTIONS(1205), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -158966,9 +160456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158979,59 +160471,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [123868] = 16, - ACTIONS(3), 1, + [125470] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6842), 1, + aux_sym__c_word_token1, + ACTIONS(6844), 1, + anon_sym_DOLLAR, + ACTIONS(6846), 1, + anon_sym_DQUOTE, + ACTIONS(6848), 1, + aux_sym_number_token1, + ACTIONS(6850), 1, + aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6856), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, - sym_variable_name, - ACTIONS(6830), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, + ACTIONS(6932), 1, + anon_sym_RPAREN_RPAREN, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + STATE(3924), 1, + sym__c_expression, + STATE(3980), 1, + sym__c_variable_assignment, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2012), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(4382), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [123927] = 3, + [125535] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2728), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [125574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1238), 21, + ACTIONS(1239), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159053,15 +160580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [123960] = 3, + [125607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(1245), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 21, + ACTIONS(1243), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159083,15 +160610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [123993] = 3, + [125640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1269), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1270), 21, + ACTIONS(1267), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159113,15 +160640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [124026] = 3, + [125673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 4, + ACTIONS(1253), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1200), 21, + ACTIONS(1251), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159143,15 +160670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [124059] = 3, + [125706] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 4, - sym_file_descriptor, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1196), 21, + ACTIONS(1167), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159159,7 +160691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -159171,17 +160702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [124092] = 3, + sym__special_character, + [125745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1185), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1204), 21, + ACTIONS(1183), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159189,9 +160718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159202,16 +160733,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [124125] = 3, + [125778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1261), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1212), 21, + ACTIONS(1259), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159219,9 +160748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159232,21 +160763,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, + [125811] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + aux_sym_concatenation_token1, + ACTIONS(6934), 1, + sym__concat, + STATE(2588), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [125850] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6936), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4135), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [125909] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2418), 1, + anon_sym_RPAREN, + ACTIONS(2715), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2738), 1, + anon_sym_LT_LT_LT, + ACTIONS(6940), 1, + sym_file_descriptor, + ACTIONS(2732), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2736), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2713), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2619), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6938), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [125958] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 1, + anon_sym_BQUOTE, + ACTIONS(2912), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2914), 1, + anon_sym_LT_LT_LT, + ACTIONS(6930), 1, + sym_file_descriptor, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2908), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2910), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2906), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2562), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6928), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [126007] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6942), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4240), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126066] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6944), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4216), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126125] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, anon_sym_BQUOTE, - [124158] = 6, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6946), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4204), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(1257), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 19, + ACTIONS(1255), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159254,8 +161059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159265,23 +161073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [124197] = 6, + aux_sym_concatenation_token1, + [126217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 1, - sym__brace_start, - ACTIONS(6624), 1, - aux_sym_concatenation_token1, ACTIONS(6832), 1, + aux_sym_concatenation_token1, + ACTIONS(6948), 1, sym__concat, - STATE(2568), 1, + STATE(2588), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 21, + ACTIONS(1179), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 19, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -159298,85 +161107,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [124236] = 6, + [126256] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, sym_variable_name, - STATE(4000), 1, + ACTIONS(6950), 1, + anon_sym_RBRACE3, + STATE(1956), 1, sym_subscript, - ACTIONS(6481), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2565), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6479), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [124275] = 6, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4459), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126315] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1192), 1, - sym__brace_start, - ACTIONS(6624), 1, - aux_sym_concatenation_token1, - ACTIONS(6837), 1, - sym__concat, - STATE(2568), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__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(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, anon_sym_BQUOTE, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [124314] = 5, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6952), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4248), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6839), 1, + ACTIONS(6954), 1, sym__special_character, - STATE(2567), 1, + STATE(2587), 1, aux_sym__literal_repeat1, - ACTIONS(1281), 3, + ACTIONS(1275), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 20, + ACTIONS(1273), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159397,22 +161225,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [124351] = 6, + [126411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, - sym__brace_start, - ACTIONS(6842), 1, + ACTIONS(6957), 1, aux_sym_concatenation_token1, - ACTIONS(6845), 1, + ACTIONS(6960), 1, sym__concat, - STATE(2568), 1, + STATE(2588), 1, aux_sym_concatenation_repeat1, - ACTIONS(1170), 21, + ACTIONS(1185), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 19, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -159429,50 +161258,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [124390] = 3, - ACTIONS(3), 1, + [126450] = 19, + ACTIONS(63), 1, sym_comment, - ACTIONS(1222), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - aux_sym_concatenation_token1, + ACTIONS(6840), 1, + anon_sym_LPAREN, + ACTIONS(6842), 1, + aux_sym__c_word_token1, + ACTIONS(6844), 1, + anon_sym_DOLLAR, + ACTIONS(6846), 1, + anon_sym_DQUOTE, + ACTIONS(6848), 1, + aux_sym_number_token1, + ACTIONS(6850), 1, + aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6856), 1, anon_sym_BQUOTE, - [124423] = 6, + ACTIONS(6858), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6963), 1, + anon_sym_RPAREN_RPAREN, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + STATE(3822), 1, + sym__c_expression, + STATE(3980), 1, + sym__c_variable_assignment, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2012), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [126515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6488), 1, + ACTIONS(6736), 1, sym__concat, - STATE(2466), 1, + STATE(2664), 1, aux_sym_concatenation_repeat1, - ACTIONS(6536), 2, + ACTIONS(2977), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 20, + ACTIONS(2975), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159482,8 +161328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159493,19 +161337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124462] = 6, + [126554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2464), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6571), 2, + ACTIONS(1269), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 20, + ACTIONS(1267), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159513,6 +161352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -159526,19 +161366,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124501] = 6, + aux_sym_concatenation_token1, + [126587] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2466), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6575), 2, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6965), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4183), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126646] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6967), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4241), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1261), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 20, + ACTIONS(1259), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159546,10 +161469,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159559,20 +161481,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124540] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [126738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2469), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, - sym_file_descriptor, + ACTIONS(6969), 1, sym_variable_name, + STATE(3964), 1, + sym_subscript, + STATE(2595), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6723), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 19, + ACTIONS(6721), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159580,7 +161505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -159592,24 +161516,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124579] = 8, + [126777] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6851), 1, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6972), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4261), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [126836] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6977), 1, anon_sym_LT_LT_LT, - ACTIONS(6854), 1, + ACTIONS(6980), 1, sym_file_descriptor, - ACTIONS(6770), 2, + ACTIONS(6691), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6899), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2574), 4, + STATE(2597), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6490), 8, + ACTIONS(6683), 7, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159617,8 +161585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP, - anon_sym_BQUOTE, - ACTIONS(6848), 8, + ACTIONS(6974), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -159627,20 +161594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [124622] = 6, + [126879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6587), 1, + ACTIONS(6983), 1, sym__concat, - STATE(2471), 1, + STATE(2432), 1, aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(1179), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 19, + ACTIONS(1177), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159648,7 +161615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -159660,15 +161626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124661] = 3, + anon_sym_BQUOTE, + [126918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 4, + ACTIONS(1265), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 21, + ACTIONS(1263), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159688,21 +161655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [124694] = 6, + [126951] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6488), 1, + ACTIONS(6736), 1, sym__concat, - STATE(2464), 1, + STATE(2665), 1, aux_sym_concatenation_repeat1, - ACTIONS(3036), 2, + ACTIONS(2969), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 20, + ACTIONS(2967), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159712,8 +161681,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159723,19 +161690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124733] = 6, + [126990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2466), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 2, + ACTIONS(2662), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 20, + STATE(2623), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2660), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159745,8 +161712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159756,19 +161721,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124772] = 6, + [127025] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, - aux_sym_concatenation_token1, - ACTIONS(6488), 1, - sym__concat, - STATE(2464), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 2, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6985), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4346), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [127084] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6987), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4345), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [127143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6802), 1, + sym__special_character, + STATE(2587), 1, + aux_sym__literal_repeat1, + ACTIONS(3065), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 20, + ACTIONS(3063), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159776,10 +161826,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159789,92 +161838,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124811] = 6, + anon_sym_BQUOTE, + [127180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6486), 1, + ACTIONS(6832), 1, aux_sym_concatenation_token1, - ACTIONS(6488), 1, + ACTIONS(6834), 1, sym__concat, - STATE(2466), 1, + STATE(2576), 1, aux_sym_concatenation_repeat1, - ACTIONS(3062), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [124850] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 1, - ts_builtin_sym_end, - ACTIONS(2738), 1, - anon_sym_LT_LT_LT, - ACTIONS(6859), 1, + ACTIONS(1169), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(6861), 1, - sym_file_descriptor, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2734), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2736), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2732), 3, + ACTIONS(1167), 19, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6857), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [124899] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [127219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, - sym_variable_name, - STATE(3950), 1, - sym_subscript, - STATE(2516), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6516), 3, + ACTIONS(1233), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6514), 18, + ACTIONS(1231), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159882,6 +161888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -159893,18 +161900,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [124938] = 4, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [127252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(1229), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(2596), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 19, + ACTIONS(1227), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159912,6 +161918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -159923,145 +161930,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [124973] = 16, + [127285] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6865), 1, + ACTIONS(6989), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4209), 1, + STATE(4393), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [125032] = 16, + [127344] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6867), 1, + ACTIONS(6991), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4356), 1, + STATE(4251), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [125091] = 16, + [127403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_BANG2, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(1169), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(6869), 1, - anon_sym_RBRACE3, - STATE(1949), 1, - sym_subscript, - STATE(3668), 1, - aux_sym__expansion_body_repeat1, - STATE(3674), 1, - sym_command_substitution, - STATE(4338), 1, - sym__expansion_body, - ACTIONS(6608), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(6600), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(6602), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [125150] = 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + anon_sym_BQUOTE, + [127436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1225), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 21, + ACTIONS(1223), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160083,50 +162078,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [125183] = 8, + [127469] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LT_LT_LT, - ACTIONS(6861), 1, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6993), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4419), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [127528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2590), 3, sym_file_descriptor, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(6510), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(2517), 4, + STATE(2623), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6508), 7, + ACTIONS(2586), 16, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(6857), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_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, - [125226] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [127565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1245), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 21, + ACTIONS(1243), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160134,9 +162168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160147,16 +162183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [125259] = 3, + [127598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1217), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1246), 21, + ACTIONS(1215), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160178,15 +162213,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [125292] = 3, + [127631] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6995), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4477), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [127690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1213), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 21, + ACTIONS(1211), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160194,9 +162271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160207,37 +162286,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, aux_sym_concatenation_token1, + [127723] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, anon_sym_BQUOTE, - [125325] = 11, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(6997), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4435), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [127782] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2738), 1, anon_sym_LT_LT_LT, - ACTIONS(2853), 1, - ts_builtin_sym_end, - ACTIONS(6861), 1, - sym_file_descriptor, - ACTIONS(6871), 1, + ACTIONS(6705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2717), 2, + ACTIONS(6940), 1, + sym_file_descriptor, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2734), 2, + STATE(2627), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6703), 8, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2736), 2, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2855), 3, - anon_sym_SEMI, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP, - STATE(2588), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6857), 8, + ACTIONS(6938), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -160246,48 +162364,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [125374] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 1, - sym__brace_start, - ACTIONS(6624), 1, - aux_sym_concatenation_token1, - ACTIONS(6626), 1, - sym__concat, - STATE(2564), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1180), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [125413] = 3, + [127825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(6999), 1, + sym_variable_name, + STATE(3993), 1, + sym_subscript, + ACTIONS(6730), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1250), 21, + STATE(2631), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6728), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160307,59 +162397,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [125446] = 6, + [127864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6873), 1, - sym_variable_name, - STATE(4000), 1, - sym_subscript, - ACTIONS(6516), 2, - sym_file_descriptor, + ACTIONS(7006), 1, aux_sym_heredoc_redirect_token1, - STATE(2565), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6514), 19, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7008), 1, + sym_file_descriptor, + STATE(2621), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7003), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(7001), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [125485] = 8, + [127903] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2863), 1, anon_sym_LT_LT_LT, - ACTIONS(6510), 1, + ACTIONS(2865), 1, + ts_builtin_sym_end, + ACTIONS(2869), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(6673), 1, + ACTIONS(7013), 1, + sym_file_descriptor, + ACTIONS(2727), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2859), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2867), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2623), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7011), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [127952] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2863), 1, + anon_sym_LT_LT_LT, + ACTIONS(7013), 1, sym_file_descriptor, - ACTIONS(2717), 2, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(2574), 4, + ACTIONS(6705), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(2597), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6508), 8, + ACTIONS(6703), 7, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160367,8 +162494,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP, + ACTIONS(7011), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [127995] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6669), 8, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7015), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4401), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [128054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7019), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7021), 1, + sym_file_descriptor, + STATE(2621), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(6699), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -160377,15 +162565,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [125528] = 3, + ACTIONS(7017), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [128093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(2662), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1254), 21, + STATE(2619), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2660), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160405,17 +162610,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, + [128128] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6691), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7026), 1, + anon_sym_LT_LT_LT, + ACTIONS(7029), 1, + sym_file_descriptor, + ACTIONS(6899), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2627), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6683), 8, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7023), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [128171] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7032), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4586), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [128230] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7034), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4522), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [128289] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, anon_sym_BQUOTE, - [125561] = 3, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7036), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4479), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [128348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(7038), 1, + sym_variable_name, + STATE(3993), 1, + sym_subscript, + ACTIONS(6723), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1262), 21, + STATE(2631), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6721), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160435,103 +162807,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [125594] = 16, + [128387] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6875), 1, + ACTIONS(7041), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4198), 1, + STATE(4420), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [125653] = 16, + [128446] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6877), 1, + ACTIONS(7043), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4243), 1, + STATE(4321), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [125712] = 3, + [128505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(6802), 1, + sym__special_character, + STATE(2587), 1, + aux_sym__literal_repeat1, + ACTIONS(2997), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 21, + ACTIONS(2995), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160551,23 +162924,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [125745] = 6, + [128542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6879), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 4, + ACTIONS(1249), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 18, + ACTIONS(1247), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160575,6 +162941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -160586,21 +162953,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [125784] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [128575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6881), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 4, - sym_file_descriptor, + ACTIONS(7045), 1, sym_variable_name, + STATE(3964), 1, + sym_subscript, + STATE(2595), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6730), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 18, + ACTIONS(6728), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160619,218 +162988,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [125823] = 11, + [128614] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2586), 1, - anon_sym_RPAREN, - ACTIONS(2721), 1, - anon_sym_LT_LT_LT, - ACTIONS(6530), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6784), 1, - sym_file_descriptor, - ACTIONS(2715), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2707), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2524), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6782), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [125872] = 16, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7047), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4341), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [128673] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6883), 1, + ACTIONS(7049), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4318), 1, + STATE(4451), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [125931] = 16, + [128732] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6885), 1, + ACTIONS(7051), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4328), 1, + STATE(4429), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [125990] = 16, + [128791] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6810), 1, anon_sym_BANG2, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6616), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6618), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6887), 1, + ACTIONS(7053), 1, anon_sym_RBRACE3, - STATE(1949), 1, + STATE(1956), 1, sym_subscript, - STATE(3668), 1, + STATE(3672), 1, aux_sym__expansion_body_repeat1, - STATE(3674), 1, + STATE(3683), 1, sym_command_substitution, - STATE(4216), 1, + STATE(4416), 1, sym__expansion_body, - ACTIONS(6608), 2, + ACTIONS(6812), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(6600), 4, + ACTIONS(6804), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(6602), 5, + ACTIONS(6806), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [126049] = 6, + [128850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2652), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, + ACTIONS(2590), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2910), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [126087] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 19, + STATE(2562), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 17, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160838,9 +163182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -160850,126 +163192,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [126125] = 16, - ACTIONS(63), 1, + [128887] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(6889), 1, - anon_sym_LPAREN, - ACTIONS(6891), 1, - anon_sym_BANG, - ACTIONS(6897), 1, - anon_sym_DOLLAR, - ACTIONS(6899), 1, - aux_sym_number_token1, - ACTIONS(6901), 1, - aux_sym_number_token2, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6905), 1, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6907), 1, + ACTIONS(6822), 1, sym_variable_name, - STATE(1817), 1, - sym__arithmetic_unary_expression, - STATE(1868), 1, - sym__arithmetic_binary_expression, - STATE(1870), 1, - sym__arithmetic_ternary_expression, - STATE(1871), 1, - sym__arithmetic_postfix_expression, - ACTIONS(6893), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6895), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1822), 7, + ACTIONS(7055), 1, + anon_sym_RBRACE3, + STATE(1956), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [126183] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4276), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, anon_sym_BANG, - ACTIONS(6917), 1, anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6925), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6927), 1, - sym_variable_name, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1679), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [126241] = 3, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [128946] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 2, - sym__concat, - sym__brace_start, - ACTIONS(1266), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(2420), 1, + ts_builtin_sym_end, + ACTIONS(2861), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2863), 1, + anon_sym_LT_LT_LT, + ACTIONS(7013), 1, + sym_file_descriptor, + ACTIONS(2727), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2859), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2857), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [126273] = 3, + STATE(2623), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7011), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [128995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 2, + ACTIONS(6878), 1, + sym__special_character, + STATE(2549), 1, + aux_sym__literal_repeat1, + ACTIONS(6754), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 22, + ACTIONS(6752), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160991,294 +163305,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [126305] = 18, - ACTIONS(63), 1, + [129032] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(6931), 1, - anon_sym_LPAREN, - ACTIONS(6933), 1, - aux_sym__c_word_token1, - ACTIONS(6935), 1, - anon_sym_DOLLAR, - ACTIONS(6937), 1, - anon_sym_DQUOTE, - ACTIONS(6939), 1, - aux_sym_number_token1, - ACTIONS(6941), 1, - aux_sym_number_token2, - ACTIONS(6943), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6945), 1, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6947), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6949), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1989), 1, - sym__c_binary_expression, - STATE(1990), 1, - sym__c_unary_expression, - STATE(2005), 1, - sym__c_postfix_expression, - STATE(3870), 1, - sym__c_expression, - STATE(4001), 1, - sym__c_variable_assignment, - ACTIONS(6929), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1998), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [126367] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6951), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1707), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [126425] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6953), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1659), 7, + ACTIONS(7057), 1, + anon_sym_RBRACE3, + STATE(1956), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [126483] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4376), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, anon_sym_BANG, - ACTIONS(6917), 1, anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6955), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1690), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [126541] = 3, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [129091] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 2, - sym__concat, - sym__brace_start, - ACTIONS(1262), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__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(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, anon_sym_BQUOTE, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [126573] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6957), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1725), 7, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7059), 1, + anon_sym_RBRACE3, + STATE(1956), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [126631] = 6, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4351), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [129150] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2742), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(2603), 1, + anon_sym_RPAREN, + ACTIONS(2691), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 18, - anon_sym_SEMI, + ACTIONS(2738), 1, + anon_sym_LT_LT_LT, + ACTIONS(6940), 1, + sym_file_descriptor, + ACTIONS(2732), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(2734), 2, anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2736), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2687), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2619), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6938), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [126669] = 6, + [129199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 3, + ACTIONS(6878), 1, + sym__special_character, + STATE(2549), 1, + aux_sym__literal_repeat1, + ACTIONS(6783), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 18, + ACTIONS(6781), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161286,8 +163447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161297,15 +163461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [126707] = 3, + [129236] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 4, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2686), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 20, + ACTIONS(1167), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161325,286 +163493,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [126739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 2, - sym__concat, - sym__brace_start, - ACTIONS(1254), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [126771] = 3, + [129275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 2, - sym__concat, - sym__brace_start, - ACTIONS(1250), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6734), 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, - sym_test_operator, - [126803] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LT_LT_LT, - ACTIONS(6961), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6963), 1, + ACTIONS(7061), 1, + sym__concat, + STATE(2432), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 3, sym_file_descriptor, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 19, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2891), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2705), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6959), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [126849] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6889), 1, - anon_sym_LPAREN, - ACTIONS(6891), 1, - anon_sym_BANG, - ACTIONS(6897), 1, - anon_sym_DOLLAR, - ACTIONS(6899), 1, - aux_sym_number_token1, - ACTIONS(6901), 1, - aux_sym_number_token2, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6907), 1, - sym_variable_name, - ACTIONS(6965), 1, - aux_sym__simple_variable_name_token1, - STATE(1817), 1, - sym__arithmetic_unary_expression, - STATE(1868), 1, - sym__arithmetic_binary_expression, - STATE(1870), 1, - sym__arithmetic_ternary_expression, - STATE(1871), 1, - sym__arithmetic_postfix_expression, - ACTIONS(6893), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6895), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1856), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [126907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym__concat, - sym__brace_start, - ACTIONS(1242), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [126939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1248), 2, - sym__concat, - sym__brace_start, - ACTIONS(1246), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [126971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1244), 2, - sym__concat, - sym__brace_start, - ACTIONS(1242), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [127003] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6967), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1702), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [127061] = 6, + [129314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2653), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1169), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 18, + ACTIONS(1167), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161612,8 +163542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161623,498 +163556,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 2, - sym__concat, - sym__brace_start, - ACTIONS(1228), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [127131] = 3, + [129347] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 2, - sym__concat, - sym__brace_start, - ACTIONS(1220), 22, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [127163] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6969), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1669), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [127221] = 18, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5480), 1, - anon_sym_DOLLAR, - ACTIONS(5486), 1, - aux_sym_number_token2, - ACTIONS(6973), 1, - anon_sym_LPAREN, - ACTIONS(6975), 1, - aux_sym__c_word_token1, - ACTIONS(6977), 1, - anon_sym_DQUOTE, - ACTIONS(6979), 1, - aux_sym_number_token1, - ACTIONS(6981), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6983), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6985), 1, - anon_sym_BQUOTE, - ACTIONS(6987), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(3708), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - ACTIONS(6971), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [127283] = 18, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5480), 1, - anon_sym_DOLLAR, - ACTIONS(5486), 1, - aux_sym_number_token2, - ACTIONS(6973), 1, - anon_sym_LPAREN, - ACTIONS(6975), 1, - aux_sym__c_word_token1, - ACTIONS(6977), 1, - anon_sym_DQUOTE, - ACTIONS(6979), 1, - aux_sym_number_token1, - ACTIONS(6981), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6983), 1, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6985), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6987), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - STATE(3710), 1, - sym__c_expression, - STATE(3765), 1, - sym__c_variable_assignment, - ACTIONS(6971), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1932), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [127345] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6989), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1653), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [127403] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6991), 1, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1636), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [127461] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, + ACTIONS(6822), 1, sym_variable_name, - ACTIONS(6993), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1734), 7, + ACTIONS(7063), 1, + anon_sym_RBRACE3, + STATE(1956), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [127519] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6889), 1, - anon_sym_LPAREN, - ACTIONS(6891), 1, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4324), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, anon_sym_BANG, - ACTIONS(6897), 1, anon_sym_DOLLAR, - ACTIONS(6899), 1, - aux_sym_number_token1, - ACTIONS(6901), 1, - aux_sym_number_token2, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6907), 1, - sym_variable_name, - ACTIONS(6995), 1, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [129406] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - STATE(1817), 1, - sym__arithmetic_unary_expression, - STATE(1868), 1, - sym__arithmetic_binary_expression, - STATE(1870), 1, - sym__arithmetic_ternary_expression, - STATE(1871), 1, - sym__arithmetic_postfix_expression, - ACTIONS(6893), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6895), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1819), 7, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7065), 1, + anon_sym_RBRACE3, + STATE(1956), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [127577] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4315), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, anon_sym_BANG, - ACTIONS(6917), 1, anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(6997), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1711), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [127635] = 10, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [129465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_LT_LT_LT, - ACTIONS(6963), 1, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, + sym__concat, + STATE(2676), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 2, sym_file_descriptor, - ACTIONS(6999), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, + ACTIONS(3067), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - ACTIONS(2935), 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_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [129504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(7067), 1, + sym__concat, + STATE(2432), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 19, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, anon_sym_AMP, - STATE(2705), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6959), 8, + [129543] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, + sym__concat, + STATE(2667), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [127681] = 18, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6931), 1, - anon_sym_LPAREN, - ACTIONS(6933), 1, - aux_sym__c_word_token1, - ACTIONS(6935), 1, - anon_sym_DOLLAR, - ACTIONS(6937), 1, - anon_sym_DQUOTE, - ACTIONS(6939), 1, - aux_sym_number_token1, - ACTIONS(6941), 1, - aux_sym_number_token2, - ACTIONS(6943), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6945), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6947), 1, - anon_sym_BQUOTE, - ACTIONS(6949), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1989), 1, - sym__c_binary_expression, - STATE(1990), 1, - sym__c_unary_expression, - STATE(2005), 1, - sym__c_postfix_expression, - STATE(3836), 1, - sym__c_expression, - STATE(4001), 1, - sym__c_variable_assignment, - ACTIONS(6929), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1998), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [127743] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [129582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2739), 1, + STATE(2676), 1, aux_sym_concatenation_repeat1, - ACTIONS(3042), 3, + ACTIONS(3005), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 18, + ACTIONS(3003), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162124,6 +163764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162133,20 +163775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127781] = 6, + [129621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2742), 1, + STATE(2667), 1, aux_sym_concatenation_repeat1, - ACTIONS(3036), 3, + ACTIONS(2997), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 18, + ACTIONS(2995), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162156,6 +163797,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162165,34 +163808,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127819] = 10, + [129660] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7069), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4356), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [129719] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2418), 1, + anon_sym_BQUOTE, + ACTIONS(2914), 1, anon_sym_LT_LT_LT, - ACTIONS(6963), 1, - sym_file_descriptor, - ACTIONS(7001), 1, + ACTIONS(2985), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2717), 2, + ACTIONS(6930), 1, + sym_file_descriptor, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, + ACTIONS(2908), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, + ACTIONS(2910), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2919), 3, + ACTIONS(2983), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2705), 4, + STATE(2562), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6959), 8, + ACTIONS(6928), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -162201,20 +163889,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [127865] = 6, + [129768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6736), 1, sym__concat, - STATE(2739), 1, + STATE(2655), 1, aux_sym_concatenation_repeat1, - ACTIONS(6536), 3, + ACTIONS(2977), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 18, + ACTIONS(2975), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162222,6 +163910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -162233,20 +163922,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127903] = 6, + [129807] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7071), 1, + anon_sym_RBRACE3, + STATE(1956), 1, + sym_subscript, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4352), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [129866] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6736), 1, sym__concat, - STATE(2742), 1, + STATE(2650), 1, aux_sym_concatenation_repeat1, - ACTIONS(6540), 3, + ACTIONS(2969), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 18, + ACTIONS(2967), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162254,6 +163986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -162265,19 +163998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [127941] = 6, + [129905] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(7073), 1, sym__concat, - STATE(2836), 1, + STATE(2432), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, + ACTIONS(1179), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 19, + ACTIONS(1177), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162296,105 +164031,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - sym__special_character, - [127979] = 16, - ACTIONS(63), 1, + [129944] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(7075), 1, + sym__concat, + STATE(2432), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(7003), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [129983] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_BANG2, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6820), 1, aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1613), 7, + ACTIONS(6822), 1, + sym_variable_name, + ACTIONS(7077), 1, + anon_sym_RBRACE3, + STATE(1956), 1, sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128037] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, + STATE(3672), 1, + aux_sym__expansion_body_repeat1, + STATE(3683), 1, + sym_command_substitution, + STATE(4390), 1, + sym__expansion_body, + ACTIONS(6812), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(6804), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(6806), 5, anon_sym_BANG, - ACTIONS(6917), 1, anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7005), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1620), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128095] = 6, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [130042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(7007), 1, + ACTIONS(7079), 1, sym__concat, - STATE(2366), 1, + STATE(2493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1173), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 18, + ACTIONS(1171), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162404,6 +164129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162413,20 +164140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128133] = 6, + [130081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(7009), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(1207), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 18, + ACTIONS(1205), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162434,6 +164156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -162445,99 +164168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128171] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7011), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1736), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128229] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7013), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1732), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128287] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [130114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 4, + ACTIONS(1237), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3247), 20, + ACTIONS(1235), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162557,291 +164198,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [128319] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7015), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1824), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128377] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7017), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1735), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128435] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7019), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1740), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128493] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7021), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1744), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128551] = 3, + [130147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 2, + ACTIONS(1207), 4, + sym_file_descriptor, sym__concat, - sym__brace_start, - ACTIONS(1212), 22, - anon_sym_LPAREN_LPAREN, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 21, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [128583] = 16, - ACTIONS(63), 1, + [130180] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7023), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1728), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [128641] = 6, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, + sym__concat, + STATE(2676), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6779), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6777), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [130219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6733), 1, + ACTIONS(6669), 1, + aux_sym_concatenation_token1, + ACTIONS(6671), 1, + sym__concat, + STATE(2667), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 2, sym_file_descriptor, - ACTIONS(7027), 1, aux_sym_heredoc_redirect_token1, - STATE(2829), 1, - sym_file_redirect, - ACTIONS(6469), 8, + ACTIONS(6781), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_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(7025), 13, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [130258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [128679] = 6, + aux_sym_concatenation_token1, + [130291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2691), 1, + STATE(2676), 1, aux_sym_concatenation_repeat1, - ACTIONS(6540), 2, + ACTIONS(6787), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 19, + ACTIONS(6785), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162849,9 +164346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162861,19 +164359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128717] = 6, + [130330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(7029), 1, + ACTIONS(6671), 1, sym__concat, - STATE(2436), 1, + STATE(2667), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(6754), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 19, + ACTIONS(6752), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162883,6 +164381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162892,20 +164392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [128755] = 6, + [130369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6669), 1, aux_sym_concatenation_token1, - ACTIONS(7031), 1, + ACTIONS(7081), 1, sym__concat, - STATE(2436), 1, + STATE(2493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(1179), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 19, + ACTIONS(1177), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162915,6 +164414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162924,20 +164425,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [128793] = 6, + [130408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(1253), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 22, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + [130441] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + ACTIONS(2921), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7085), 1, + sym_file_descriptor, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2898), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2900), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2919), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7083), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [130487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, sym__concat, - STATE(2695), 1, + STATE(2711), 1, aux_sym_concatenation_repeat1, - ACTIONS(6536), 2, + ACTIONS(6787), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 19, + ACTIONS(6785), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162945,7 +164512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -162957,105 +164523,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [128831] = 18, - ACTIONS(63), 1, + [130525] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2716), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3925), 1, - sym__c_variable_assignment, - STATE(3964), 1, - sym__c_expression, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [128893] = 18, - ACTIONS(63), 1, + [130563] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - aux_sym__c_word_token1, - ACTIONS(6643), 1, + ACTIONS(1229), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1227), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(6645), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(6647), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6649), 1, aux_sym_number_token2, - ACTIONS(6651), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, anon_sym_BQUOTE, - ACTIONS(6657), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - STATE(3925), 1, - sym__c_variable_assignment, - STATE(3979), 1, - sym__c_expression, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2016), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [128955] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [130595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 2, + ACTIONS(1225), 4, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1196), 22, + aux_sym_heredoc_redirect_token1, + ACTIONS(1223), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -163073,188 +164613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [128987] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7033), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1726), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129045] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7035), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1719), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129103] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7037), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1614), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129161] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7039), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1682), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129219] = 6, + [130627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2691), 1, + STATE(2718), 1, aux_sym_concatenation_repeat1, - ACTIONS(6571), 2, + ACTIONS(3065), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 19, + ACTIONS(3063), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163262,7 +164633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -163274,19 +164644,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129257] = 6, + anon_sym_BQUOTE, + [130665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(1233), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [130697] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + ACTIONS(2981), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7085), 1, + sym_file_descriptor, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2898), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2900), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2979), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7083), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [130743] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(7087), 1, sym__concat, - STATE(2695), 1, + STATE(2447), 1, aux_sym_concatenation_repeat1, - ACTIONS(6575), 2, + ACTIONS(1173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 19, + ACTIONS(1171), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163306,101 +164742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129295] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7041), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1727), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129353] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6889), 1, - anon_sym_LPAREN, - ACTIONS(6891), 1, - anon_sym_BANG, - ACTIONS(6897), 1, - anon_sym_DOLLAR, - ACTIONS(6899), 1, - aux_sym_number_token1, - ACTIONS(6901), 1, - aux_sym_number_token2, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6907), 1, - sym_variable_name, - ACTIONS(7043), 1, - aux_sym__simple_variable_name_token1, - STATE(1817), 1, - sym__arithmetic_unary_expression, - STATE(1868), 1, - sym__arithmetic_binary_expression, - STATE(1870), 1, - sym__arithmetic_ternary_expression, - STATE(1871), 1, - sym__arithmetic_postfix_expression, - ACTIONS(6893), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6895), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1823), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129411] = 3, + [130781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1265), 4, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1270), 22, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -163418,20 +164771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [129443] = 6, + [130813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2665), 1, + STATE(2689), 1, aux_sym_concatenation_repeat1, - ACTIONS(3062), 2, + ACTIONS(3069), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 19, + ACTIONS(3067), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163439,6 +164791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -163450,22 +164803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [129481] = 5, + [130851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(7089), 1, + sym__concat, + STATE(2447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2895), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2705), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 16, + ACTIONS(1177), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163473,7 +164823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163482,103 +164835,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129517] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7045), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1709), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129575] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7047), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1691), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129633] = 6, + [130889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2666), 1, + STATE(2716), 1, aux_sym_concatenation_repeat1, - ACTIONS(3046), 2, + ACTIONS(3005), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 19, + ACTIONS(3003), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163598,91 +164867,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [129671] = 16, + [130927] = 18, ACTIONS(63), 1, sym_comment, - ACTIONS(6909), 1, + ACTIONS(7093), 1, anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, + ACTIONS(7095), 1, + aux_sym__c_word_token1, + ACTIONS(7097), 1, anon_sym_DOLLAR, - ACTIONS(6919), 1, + ACTIONS(7099), 1, + anon_sym_DQUOTE, + ACTIONS(7101), 1, aux_sym_number_token1, - ACTIONS(6921), 1, + ACTIONS(7103), 1, aux_sym_number_token2, - ACTIONS(6923), 1, + ACTIONS(7105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7049), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1708), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(7107), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7109), 1, + anon_sym_BQUOTE, + ACTIONS(7111), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1984), 1, + sym__c_unary_expression, + STATE(1988), 1, + sym__c_binary_expression, + STATE(1989), 1, + sym__c_postfix_expression, + STATE(3880), 1, + sym__c_expression, + STATE(3936), 1, + sym__c_variable_assignment, + ACTIONS(7091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1983), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [129729] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6733), 1, - sym_file_descriptor, - ACTIONS(7053), 1, - aux_sym_heredoc_redirect_token1, - STATE(2775), 1, - sym_file_redirect, - ACTIONS(6469), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7051), 13, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [129767] = 3, + sym_command_substitution, + [130989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 2, + ACTIONS(1261), 4, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1204), 22, + aux_sym_heredoc_redirect_token1, + ACTIONS(1259), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -163700,63 +164940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [129799] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7055), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1848), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [129857] = 6, + [131021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2742), 1, + STATE(2686), 1, aux_sym_concatenation_repeat1, - ACTIONS(6571), 3, + ACTIONS(3065), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 18, + ACTIONS(3063), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163764,6 +164960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -163775,20 +164972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129895] = 6, + [131059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2739), 1, + STATE(2718), 1, aux_sym_concatenation_repeat1, - ACTIONS(6575), 3, + ACTIONS(2997), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 18, + ACTIONS(2995), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163807,52 +165003,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129933] = 6, + anon_sym_BQUOTE, + [131097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(7057), 1, - sym__concat, - STATE(2436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, - sym_file_descriptor, + ACTIONS(7006), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 19, + ACTIONS(7116), 1, + sym_file_descriptor, + STATE(2695), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7113), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7001), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131135] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7021), 1, + sym_file_descriptor, + ACTIONS(7121), 1, + aux_sym_heredoc_redirect_token1, + STATE(2788), 1, + sym_file_redirect, + ACTIONS(6699), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7119), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [129971] = 6, + [131173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7123), 1, sym_variable_name, - STATE(4008), 1, + STATE(4001), 1, sym_subscript, - ACTIONS(6481), 2, + ACTIONS(6730), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2692), 2, + STATE(2736), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(6479), 18, + ACTIONS(6728), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163871,95 +165100,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130009] = 8, + [131211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7065), 1, - anon_sym_LT_LT_LT, - ACTIONS(7068), 1, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2689), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 2, sym_file_descriptor, - ACTIONS(6770), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2693), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6490), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(7062), 8, + [131249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2686), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [130051] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7071), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1622), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130109] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(7073), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2436), 1, + STATE(2716), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(6779), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 19, + ACTIONS(6777), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163967,7 +165184,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -163979,102 +165195,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130147] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7075), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1643), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130205] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7077), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1657), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130263] = 4, + anon_sym_BQUOTE, + [131325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2718), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2705), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 18, + ACTIONS(6781), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164093,19 +165227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130297] = 6, + anon_sym_BQUOTE, + [131363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2666), 1, + STATE(2716), 1, aux_sym_concatenation_repeat1, - ACTIONS(3036), 2, + ACTIONS(6787), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 19, + ACTIONS(6785), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164125,104 +165260,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [130335] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7079), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1712), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130393] = 16, - ACTIONS(63), 1, + [131401] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7081), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1704), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130451] = 6, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + ACTIONS(6705), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7085), 1, + sym_file_descriptor, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2735), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6703), 7, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7083), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [131443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, - sym_variable_name, - STATE(4008), 1, - sym_subscript, - ACTIONS(6516), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6779), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(2692), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6514), 18, + ACTIONS(6777), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164241,17 +165326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [130489] = 3, + [131481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 2, + ACTIONS(1217), 4, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1200), 22, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -164269,134 +165355,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [130521] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7085), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1737), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130579] = 8, + [131513] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_LT_LT_LT, - ACTIONS(6510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6963), 1, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 3, sym_file_descriptor, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(2693), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(6508), 7, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6781), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP, - ACTIONS(6959), 8, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [130621] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6889), 1, - anon_sym_LPAREN, - ACTIONS(6891), 1, - anon_sym_BANG, - ACTIONS(6897), 1, - anon_sym_DOLLAR, - ACTIONS(6899), 1, - aux_sym_number_token1, - ACTIONS(6901), 1, - aux_sym_number_token2, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6907), 1, - sym_variable_name, - ACTIONS(7087), 1, - aux_sym__simple_variable_name_token1, - STATE(1817), 1, - sym__arithmetic_unary_expression, - STATE(1868), 1, - sym__arithmetic_binary_expression, - STATE(1870), 1, - sym__arithmetic_ternary_expression, - STATE(1871), 1, - sym__arithmetic_postfix_expression, - ACTIONS(6893), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6895), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1837), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130679] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 4, + ACTIONS(2977), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3243), 20, + ACTIONS(2975), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164404,9 +165402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164416,390 +165416,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [130711] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7089), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1731), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130769] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7091), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1676), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130827] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7093), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1632), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130885] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6889), 1, - anon_sym_LPAREN, - ACTIONS(6891), 1, - anon_sym_BANG, - ACTIONS(6897), 1, - anon_sym_DOLLAR, - ACTIONS(6899), 1, - aux_sym_number_token1, - ACTIONS(6901), 1, - aux_sym_number_token2, - ACTIONS(6903), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6907), 1, - sym_variable_name, - ACTIONS(7095), 1, - aux_sym__simple_variable_name_token1, - STATE(1817), 1, - sym__arithmetic_unary_expression, - STATE(1868), 1, - sym__arithmetic_binary_expression, - STATE(1870), 1, - sym__arithmetic_ternary_expression, - STATE(1871), 1, - sym__arithmetic_postfix_expression, - ACTIONS(6893), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6895), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1825), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [130943] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7097), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1642), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [131001] = 6, + [131583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7099), 1, + ACTIONS(3264), 3, sym_file_descriptor, - STATE(2726), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6528), 8, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_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(6729), 12, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(3258), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [131039] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7101), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1638), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [131097] = 18, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6931), 1, - anon_sym_LPAREN, - ACTIONS(6933), 1, - aux_sym__c_word_token1, - ACTIONS(6935), 1, - anon_sym_DOLLAR, - ACTIONS(6937), 1, - anon_sym_DQUOTE, - ACTIONS(6939), 1, - aux_sym_number_token1, - ACTIONS(6941), 1, - aux_sym_number_token2, - ACTIONS(6943), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6945), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6947), 1, - anon_sym_BQUOTE, - ACTIONS(6949), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1989), 1, - sym__c_binary_expression, - STATE(1990), 1, - sym__c_unary_expression, - STATE(2005), 1, - sym__c_postfix_expression, - STATE(3895), 1, - sym__c_expression, - STATE(4001), 1, - sym__c_variable_assignment, - ACTIONS(6929), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1998), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [131159] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7103), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1815), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [131217] = 6, + [131647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2666), 1, + STATE(2718), 1, aux_sym_concatenation_repeat1, - ACTIONS(6540), 2, + ACTIONS(6754), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 19, + ACTIONS(6752), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164819,103 +165506,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [131255] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7105), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1673), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [131313] = 16, - ACTIONS(63), 1, + [131685] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7107), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1701), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [131371] = 6, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(7125), 1, + sym__concat, + STATE(2447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131723] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(7127), 1, sym__concat, - STATE(2665), 1, + STATE(2447), 1, aux_sym_concatenation_repeat1, - ACTIONS(6536), 2, + ACTIONS(1173), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 19, + ACTIONS(1171), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164934,119 +165570,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [131409] = 16, - ACTIONS(63), 1, + [131761] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, + ACTIONS(3264), 4, + sym_file_descriptor, sym_variable_name, - ACTIONS(7109), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1631), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [131467] = 16, - ACTIONS(63), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3262), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [131793] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7111), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1694), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [131525] = 10, + ACTIONS(7019), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7129), 1, + sym_file_descriptor, + STATE(2695), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(6748), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7017), 12, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [131831] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2902), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2904), 1, anon_sym_LT_LT_LT, - ACTIONS(6963), 1, + ACTIONS(7085), 1, sym_file_descriptor, - ACTIONS(7113), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(2717), 2, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(2893), 2, + ACTIONS(2898), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(2895), 2, + ACTIONS(2900), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(2933), 3, + ACTIONS(2896), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2705), 4, + STATE(2703), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(6959), 8, + ACTIONS(7083), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -165055,19 +165667,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [131571] = 6, + [131877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(7131), 1, sym__concat, - STATE(2695), 1, + STATE(2447), 1, aux_sym_concatenation_repeat1, - ACTIONS(3062), 2, + ACTIONS(1179), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 19, + ACTIONS(1177), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165075,7 +165687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165087,19 +165698,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131609] = 6, + anon_sym_BQUOTE, + [131915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2691), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 2, + ACTIONS(3260), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 19, + ACTIONS(3258), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165119,51 +165727,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131647] = 6, + anon_sym_BQUOTE, + [131947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7118), 1, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(7133), 1, + sym__concat, + STATE(2447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 2, sym_file_descriptor, - STATE(2726), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7115), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(6749), 12, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [131985] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [131685] = 6, + [132023] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5432), 1, + anon_sym_DOLLAR, + ACTIONS(5438), 1, + aux_sym_number_token2, + ACTIONS(7137), 1, + anon_sym_LPAREN, + ACTIONS(7139), 1, + aux_sym__c_word_token1, + ACTIONS(7141), 1, + anon_sym_DQUOTE, + ACTIONS(7143), 1, + aux_sym_number_token1, + ACTIONS(7145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7147), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7149), 1, + anon_sym_BQUOTE, + ACTIONS(7151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(3735), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + ACTIONS(7135), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1928), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [132085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6736), 1, sym__concat, - STATE(2695), 1, + STATE(2728), 1, aux_sym_concatenation_repeat1, - ACTIONS(3042), 2, + ACTIONS(2969), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 19, + ACTIONS(2967), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165171,7 +165857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165183,19 +165868,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131723] = 6, + [132123] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7093), 1, + anon_sym_LPAREN, + ACTIONS(7095), 1, + aux_sym__c_word_token1, + ACTIONS(7097), 1, + anon_sym_DOLLAR, + ACTIONS(7099), 1, + anon_sym_DQUOTE, + ACTIONS(7101), 1, + aux_sym_number_token1, + ACTIONS(7103), 1, + aux_sym_number_token2, + ACTIONS(7105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7107), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7109), 1, + anon_sym_BQUOTE, + ACTIONS(7111), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1984), 1, + sym__c_unary_expression, + STATE(1988), 1, + sym__c_binary_expression, + STATE(1989), 1, + sym__c_postfix_expression, + STATE(3842), 1, + sym__c_expression, + STATE(3936), 1, + sym__c_variable_assignment, + ACTIONS(7091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1983), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [132185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(7153), 1, sym__concat, - STATE(2691), 1, + STATE(2432), 1, aux_sym_concatenation_repeat1, - ACTIONS(3036), 2, + ACTIONS(1179), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 19, + ACTIONS(1177), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165203,7 +165933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165215,14 +165944,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131761] = 3, + [132223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 21, + ACTIONS(2995), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165230,11 +165965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165244,16 +165976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131793] = 6, + [132261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6733), 1, + ACTIONS(7021), 1, sym_file_descriptor, - ACTIONS(7123), 1, + ACTIONS(7157), 1, aux_sym_heredoc_redirect_token1, - STATE(2752), 1, + STATE(2849), 1, sym_file_redirect, - ACTIONS(6469), 8, + ACTIONS(6699), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -165262,7 +165994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7121), 13, + ACTIONS(7155), 13, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165276,19 +166008,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131831] = 6, + [132299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2665), 1, + STATE(2711), 1, aux_sym_concatenation_repeat1, - ACTIONS(6575), 2, + ACTIONS(3005), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 19, + ACTIONS(3003), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165307,20 +166040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [131869] = 6, + [132337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6571), 2, + ACTIONS(2590), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 19, + ACTIONS(2900), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 16, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165328,9 +166062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165339,15 +166071,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [131907] = 3, + [132373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 3, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(7159), 1, + sym__concat, + STATE(2432), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3243), 21, + ACTIONS(1171), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165355,11 +166092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165369,85 +166103,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [131939] = 3, + [132411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 2, - sym__concat, - sym__brace_start, - ACTIONS(1238), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(2662), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2660), 18, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, + [132445] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5432), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5438), 1, + aux_sym_number_token2, + ACTIONS(7137), 1, + anon_sym_LPAREN, + ACTIONS(7139), 1, + aux_sym__c_word_token1, + ACTIONS(7141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7143), 1, aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(7145), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7147), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7149), 1, anon_sym_BQUOTE, + ACTIONS(7151), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [131971] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7125), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1624), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + STATE(3746), 1, + sym__c_expression, + STATE(3772), 1, + sym__c_variable_assignment, + ACTIONS(7135), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1928), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - [132029] = 3, + sym_command_substitution, + [132507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2689), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6779), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3247), 21, + ACTIONS(6777), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165455,11 +166197,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165469,17 +166209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132061] = 3, + [132545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 2, + ACTIONS(1253), 4, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1224), 22, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -165497,63 +166238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [132093] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7127), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1644), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [132151] = 6, + [132577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(7129), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2436), 1, + STATE(2686), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(6783), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 18, + ACTIONS(6781), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165561,6 +166258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165572,78 +166270,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132189] = 3, + [132615] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 2, - sym__concat, - sym__brace_start, - ACTIONS(1170), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(2904), 1, + anon_sym_LT_LT_LT, + ACTIONS(2935), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7085), 1, + sym_file_descriptor, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(2898), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2900), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2933), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [132221] = 3, + STATE(2703), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7083), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [132661] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 2, - sym__concat, - sym__brace_start, - ACTIONS(1216), 22, - anon_sym_LPAREN_LPAREN, + ACTIONS(6691), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7164), 1, + anon_sym_LT_LT_LT, + ACTIONS(7167), 1, + sym_file_descriptor, + ACTIONS(6899), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(2735), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(6683), 7, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP, + ACTIONS(7161), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [132703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7170), 1, + sym_variable_name, + STATE(4001), 1, + sym_subscript, + ACTIONS(6723), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, + STATE(2736), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6721), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [132253] = 6, + [132741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(7131), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2436), 1, + STATE(2689), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, + ACTIONS(6787), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 18, + ACTIONS(6785), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165651,6 +166392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -165662,56 +166404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132291] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7133), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1723), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [132349] = 3, + [132779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2686), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6754), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 21, + ACTIONS(6752), 19, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165731,87 +166436,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + [132817] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 19, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + sym__special_character, + [132855] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7021), 1, + sym_file_descriptor, + ACTIONS(7175), 1, + aux_sym_heredoc_redirect_token1, + STATE(2771), 1, + sym_file_redirect, + ACTIONS(6699), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7173), 13, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [132893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1203), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1201), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [132381] = 16, - ACTIONS(63), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [132925] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, + ACTIONS(1207), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(6919), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6921), 1, aux_sym_number_token2, - ACTIONS(6923), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7135), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1739), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [132439] = 18, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [132957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1235), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [132989] = 18, ACTIONS(63), 1, sym_comment, - ACTIONS(6931), 1, + ACTIONS(6840), 1, anon_sym_LPAREN, - ACTIONS(6933), 1, + ACTIONS(6842), 1, aux_sym__c_word_token1, - ACTIONS(6935), 1, + ACTIONS(6844), 1, anon_sym_DOLLAR, - ACTIONS(6937), 1, + ACTIONS(6846), 1, anon_sym_DQUOTE, - ACTIONS(6939), 1, + ACTIONS(6848), 1, aux_sym_number_token1, - ACTIONS(6941), 1, + ACTIONS(6850), 1, aux_sym_number_token2, - ACTIONS(6943), 1, + ACTIONS(6852), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6945), 1, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6947), 1, + ACTIONS(6856), 1, anon_sym_BQUOTE, - ACTIONS(6949), 1, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1989), 1, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, sym__c_binary_expression, - STATE(1990), 1, + STATE(1996), 1, sym__c_unary_expression, - STATE(2005), 1, - sym__c_postfix_expression, - STATE(3962), 1, + STATE(3951), 1, sym__c_expression, - STATE(4001), 1, + STATE(3980), 1, sym__c_variable_assignment, - ACTIONS(6929), 2, + ACTIONS(6838), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1998), 7, + STATE(2012), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -165819,43 +166631,43 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [132501] = 18, + [133051] = 18, ACTIONS(63), 1, sym_comment, - ACTIONS(6931), 1, + ACTIONS(6840), 1, anon_sym_LPAREN, - ACTIONS(6933), 1, + ACTIONS(6842), 1, aux_sym__c_word_token1, - ACTIONS(6935), 1, + ACTIONS(6844), 1, anon_sym_DOLLAR, - ACTIONS(6937), 1, + ACTIONS(6846), 1, anon_sym_DQUOTE, - ACTIONS(6939), 1, + ACTIONS(6848), 1, aux_sym_number_token1, - ACTIONS(6941), 1, + ACTIONS(6850), 1, aux_sym_number_token2, - ACTIONS(6943), 1, + ACTIONS(6852), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6945), 1, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6947), 1, + ACTIONS(6856), 1, anon_sym_BQUOTE, - ACTIONS(6949), 1, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1989), 1, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, sym__c_binary_expression, - STATE(1990), 1, + STATE(1996), 1, sym__c_unary_expression, - STATE(2005), 1, - sym__c_postfix_expression, - STATE(3958), 1, - sym__c_expression, - STATE(4001), 1, + STATE(3980), 1, sym__c_variable_assignment, - ACTIONS(6929), 2, + STATE(3982), 1, + sym__c_expression, + ACTIONS(6838), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1998), 7, + STATE(2012), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -165863,17 +166675,18 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [132563] = 3, + [133113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 2, + ACTIONS(1207), 4, sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1208), 22, + aux_sym_heredoc_redirect_token1, + ACTIONS(1205), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, @@ -165891,57 +166704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [132595] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6909), 1, - anon_sym_LPAREN, - ACTIONS(6911), 1, - anon_sym_BANG, - ACTIONS(6917), 1, - anon_sym_DOLLAR, - ACTIONS(6919), 1, - aux_sym_number_token1, - ACTIONS(6921), 1, - aux_sym_number_token2, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - sym_variable_name, - ACTIONS(7137), 1, - aux_sym__simple_variable_name_token1, - STATE(1625), 1, - sym__arithmetic_postfix_expression, - STATE(1668), 1, - sym__arithmetic_binary_expression, - STATE(1684), 1, - sym__arithmetic_ternary_expression, - STATE(1700), 1, - sym__arithmetic_unary_expression, - ACTIONS(6913), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6915), 3, - anon_sym_TILDE, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - STATE(1687), 7, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_number, - sym_simple_expansion, - sym_expansion, - [132653] = 3, + [133145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 3, + ACTIONS(1169), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7141), 20, + ACTIONS(1167), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165961,98 +166731,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, + sym__special_character, anon_sym_BQUOTE, - [132684] = 3, + [133177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1245), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(7145), 20, + ACTIONS(1243), 20, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [132715] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [133209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7149), 2, - sym_file_descriptor, + ACTIONS(1257), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(7147), 21, + ACTIONS(1255), 20, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, anon_sym_AMP, - [132746] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [133241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7151), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1185), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(7153), 20, + ACTIONS(1183), 20, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [132777] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [133273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7157), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7155), 21, + ACTIONS(3063), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166060,11 +166841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166074,14 +166852,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132808] = 3, + [133311] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7093), 1, + anon_sym_LPAREN, + ACTIONS(7095), 1, + aux_sym__c_word_token1, + ACTIONS(7097), 1, + anon_sym_DOLLAR, + ACTIONS(7099), 1, + anon_sym_DQUOTE, + ACTIONS(7101), 1, + aux_sym_number_token1, + ACTIONS(7103), 1, + aux_sym_number_token2, + ACTIONS(7105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7107), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7109), 1, + anon_sym_BQUOTE, + ACTIONS(7111), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1984), 1, + sym__c_unary_expression, + STATE(1988), 1, + sym__c_binary_expression, + STATE(1989), 1, + sym__c_postfix_expression, + STATE(3936), 1, + sym__c_variable_assignment, + STATE(3994), 1, + sym__c_expression, + ACTIONS(7091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1983), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [133373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7161), 20, + ACTIONS(3067), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166089,7 +166917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -166101,52 +166928,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [132839] = 3, + [133411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7165), 2, - sym_file_descriptor, + ACTIONS(1221), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(7163), 21, + ACTIONS(1219), 20, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, anon_sym_AMP, - [132870] = 5, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [133443] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7093), 1, + anon_sym_LPAREN, + ACTIONS(7095), 1, + aux_sym__c_word_token1, + ACTIONS(7097), 1, + anon_sym_DOLLAR, + ACTIONS(7099), 1, + anon_sym_DQUOTE, + ACTIONS(7101), 1, + aux_sym_number_token1, + ACTIONS(7103), 1, + aux_sym_number_token2, + ACTIONS(7105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7107), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7109), 1, + anon_sym_BQUOTE, + ACTIONS(7111), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1984), 1, + sym__c_unary_expression, + STATE(1988), 1, + sym__c_binary_expression, + STATE(1989), 1, + sym__c_postfix_expression, + STATE(3936), 1, + sym__c_variable_assignment, + STATE(4011), 1, + sym__c_expression, + ACTIONS(7091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1983), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [133505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6721), 1, + ACTIONS(1269), 4, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(7167), 1, - sym__special_character, - STATE(2834), 1, - aux_sym__literal_repeat1, - ACTIONS(6719), 20, + aux_sym_heredoc_redirect_token1, + ACTIONS(1267), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -166159,14 +167030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - sym_test_operator, - [132905] = 3, + [133537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7171), 2, + ACTIONS(1169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7169), 21, + ACTIONS(1167), 22, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166188,14 +167058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [132936] = 3, + sym__special_character, + [133569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7173), 3, + ACTIONS(2977), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7175), 20, + ACTIONS(2975), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166216,14 +167088,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [132967] = 3, + [133601] = 18, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7093), 1, + anon_sym_LPAREN, + ACTIONS(7095), 1, + aux_sym__c_word_token1, + ACTIONS(7097), 1, + anon_sym_DOLLAR, + ACTIONS(7099), 1, + anon_sym_DQUOTE, + ACTIONS(7101), 1, + aux_sym_number_token1, + ACTIONS(7103), 1, + aux_sym_number_token2, + ACTIONS(7105), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7107), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7109), 1, + anon_sym_BQUOTE, + ACTIONS(7111), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1984), 1, + sym__c_unary_expression, + STATE(1988), 1, + sym__c_binary_expression, + STATE(1989), 1, + sym__c_postfix_expression, + STATE(3811), 1, + sym__c_expression, + STATE(3936), 1, + sym__c_variable_assignment, + ACTIONS(7091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1983), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [133663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [133695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [133727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1239), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [133759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7177), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6754), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7179), 20, + ACTIONS(6752), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166231,7 +167240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -166243,47 +167251,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [132998] = 7, + [133797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, + ACTIONS(3306), 2, sym_file_descriptor, - ACTIONS(7183), 1, - anon_sym_DQUOTE, - STATE(3461), 1, - sym_string, - ACTIONS(7185), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1143), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(3304), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - aux_sym_heredoc_redirect_token1, - ACTIONS(7181), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [133037] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [133828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7187), 3, + ACTIONS(7179), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7189), 20, + ACTIONS(7177), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166291,9 +167293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166303,14 +167307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133068] = 3, + [133859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 2, + ACTIONS(7183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7191), 21, + ACTIONS(7181), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166332,13 +167335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133099] = 3, + [133890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7173), 2, + ACTIONS(7185), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7175), 21, + ACTIONS(7187), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166346,11 +167350,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166360,13 +167362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133130] = 3, + anon_sym_BQUOTE, + [133921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7151), 2, + ACTIONS(3306), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7153), 21, + ACTIONS(3304), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166374,11 +167378,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166388,13 +167390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133161] = 3, + anon_sym_BQUOTE, + [133952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 2, + ACTIONS(6787), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7195), 21, + ACTIONS(6785), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166402,11 +167406,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166416,13 +167418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133192] = 3, + anon_sym_BQUOTE, + [133983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 2, + ACTIONS(3306), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7191), 21, + ACTIONS(3304), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166430,11 +167434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166444,14 +167446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133223] = 3, + anon_sym_BQUOTE, + [134014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 3, + ACTIONS(7191), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7201), 20, + ACTIONS(7189), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166459,9 +167461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166471,15 +167475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133254] = 3, + [134045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 3, + ACTIONS(7195), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7191), 20, + ACTIONS(7193), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166487,9 +167489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166499,15 +167503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133285] = 3, + [134076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 3, + ACTIONS(7197), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7205), 20, + ACTIONS(7199), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166528,14 +167531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [133316] = 3, + [134107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 3, + ACTIONS(7203), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7209), 20, + ACTIONS(7201), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166543,9 +167545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166555,15 +167559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133347] = 3, + [134138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7211), 3, + ACTIONS(7207), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7213), 20, + ACTIONS(7205), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166571,9 +167573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166583,14 +167587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133378] = 3, + [134169] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7211), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7213), 21, + ACTIONS(7209), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166612,13 +167615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133409] = 3, + [134200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7139), 2, + ACTIONS(7215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7141), 21, + ACTIONS(7213), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166640,13 +167643,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133440] = 3, + [134231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7187), 2, + ACTIONS(7219), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7189), 21, + ACTIONS(7217), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166668,14 +167671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133471] = 3, + [134262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 3, + ACTIONS(7221), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7191), 20, + ACTIONS(7223), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166696,13 +167699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [133502] = 3, + [134293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 2, + ACTIONS(7227), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7215), 21, + ACTIONS(7225), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166724,45 +167727,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133533] = 7, + [134324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(7231), 2, sym_file_descriptor, - ACTIONS(7183), 1, - anon_sym_DQUOTE, - STATE(3461), 1, - sym_string, - ACTIONS(7185), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1133), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(7229), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, 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, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [134355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7233), 1, + sym__special_character, + STATE(2782), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(7181), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(1273), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [133572] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [134390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7219), 21, + ACTIONS(2995), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166770,11 +167805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166784,13 +167816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133603] = 3, + [134427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 2, + ACTIONS(7238), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 21, + ACTIONS(7236), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166812,14 +167844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133634] = 3, + [134458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 3, + ACTIONS(7227), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7225), 20, + ACTIONS(7225), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166827,9 +167858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166839,15 +167872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133665] = 3, + [134489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 3, + ACTIONS(7240), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7215), 20, + ACTIONS(7242), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166868,13 +167900,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [133696] = 3, + [134520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 2, + ACTIONS(7246), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7227), 21, + ACTIONS(7244), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166896,13 +167928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133727] = 3, + [134551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 2, + ACTIONS(7250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 21, + ACTIONS(7248), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166924,14 +167956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133758] = 3, + [134582] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7231), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7233), 20, + ACTIONS(7229), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166952,13 +167984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [133789] = 3, + [134613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2796), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7235), 21, + ACTIONS(3003), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166966,11 +168004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -166980,70 +168015,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133820] = 3, + [134650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 2, - sym_file_descriptor, + ACTIONS(7019), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7239), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7252), 1, + sym_file_descriptor, + STATE(2793), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(6938), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [133851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7243), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(7245), 20, + ACTIONS(7017), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - 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, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [133882] = 3, + [134687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 3, + ACTIONS(7254), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 20, + ACTIONS(7256), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167064,18 +168074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [133913] = 6, + [134718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, - sym_file_descriptor, - ACTIONS(6754), 2, - ts_builtin_sym_end, + ACTIONS(7006), 1, aux_sym_heredoc_redirect_token1, - STATE(2790), 2, + ACTIONS(7261), 1, + sym_file_descriptor, + STATE(2793), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7247), 8, + ACTIONS(7258), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -167084,56 +168093,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(6749), 10, + ACTIONS(7001), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133950] = 6, + [134755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(7264), 1, + sym__concat, + STATE(2447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 2, sym_file_descriptor, - ACTIONS(7123), 1, aux_sym_heredoc_redirect_token1, - STATE(2752), 1, - sym_file_redirect, - ACTIONS(6528), 8, + ACTIONS(1171), 18, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(7121), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [133987] = 3, + [134792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7229), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7227), 20, + ACTIONS(3063), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167141,7 +168156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167153,15 +168167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134018] = 3, + [134829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(7266), 1, + sym__concat, + STATE(2447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7255), 20, + ACTIONS(1177), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167169,7 +168187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167181,15 +168198,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134049] = 3, + [134866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2796), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6779), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7235), 20, + ACTIONS(6777), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167197,7 +168218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167209,77 +168229,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134080] = 6, + [134903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7099), 1, + ACTIONS(7270), 2, sym_file_descriptor, - STATE(2775), 1, - sym_file_redirect, - ACTIONS(6528), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7051), 12, + aux_sym_heredoc_redirect_token1, + ACTIONS(7268), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134117] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7027), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7099), 1, - sym_file_descriptor, - STATE(2829), 1, - sym_file_redirect, - ACTIONS(6528), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7025), 12, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134154] = 3, + [134934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7219), 20, + ACTIONS(6781), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167287,7 +168277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167299,15 +168288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134185] = 3, + [134971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 3, + ACTIONS(7274), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7259), 20, + ACTIONS(7272), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167315,9 +168302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167327,15 +168316,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134216] = 3, + [135002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2796), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6787), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7263), 20, + ACTIONS(6785), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167343,7 +168336,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167355,15 +168347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134247] = 3, + [135039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 3, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2794), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6754), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7267), 20, + ACTIONS(6752), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167371,7 +168367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167383,46 +168378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134278] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7269), 1, - sym_file_descriptor, - ACTIONS(6731), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(2790), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6857), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(6729), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134315] = 3, + [135076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7271), 3, + ACTIONS(7278), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7273), 20, + ACTIONS(7276), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167430,9 +168392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167442,15 +168406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134346] = 3, + [135107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7171), 3, + ACTIONS(7238), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7169), 20, + ACTIONS(7236), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167471,13 +168434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134377] = 3, + [135138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 2, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2796), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7239), 21, + ACTIONS(3067), 18, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167485,11 +168454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167499,14 +168465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134408] = 3, + [135175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7165), 3, + ACTIONS(3306), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7163), 20, + ACTIONS(3304), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167514,9 +168479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167526,71 +168493,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134439] = 3, + [135206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 3, + ACTIONS(7129), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(7157), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7277), 20, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2849), 1, + sym_file_redirect, + ACTIONS(6748), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [134470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7279), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(7281), 20, + ACTIONS(7155), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - 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, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134501] = 3, + [135243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 3, + ACTIONS(7219), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7239), 20, + ACTIONS(7217), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167611,14 +168552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134532] = 3, + [135274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 3, + ACTIONS(3005), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7239), 20, + ACTIONS(3003), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167639,19 +168580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134563] = 6, + [135305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 2, + ACTIONS(7282), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 18, + ACTIONS(7280), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167659,8 +168594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167670,19 +168608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134600] = 6, + [135336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6540), 2, + ACTIONS(6779), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 18, + ACTIONS(6777), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167690,8 +168622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -167701,14 +168636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134637] = 3, + [135367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 3, + ACTIONS(7284), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7285), 20, + ACTIONS(7286), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167729,45 +168664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134668] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6536), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134705] = 3, + [135398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6571), 3, + ACTIONS(7288), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 20, + ACTIONS(7290), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167788,19 +168692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [134736] = 6, + [135429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6571), 2, + ACTIONS(7292), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 18, + ACTIONS(7294), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167808,6 +168707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -167819,45 +168719,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134773] = 3, + anon_sym_BQUOTE, + [135460] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 2, + ACTIONS(1135), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7298), 1, + anon_sym_DQUOTE, + STATE(3493), 1, + sym_string, + ACTIONS(7300), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1127), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [134804] = 6, + aux_sym_heredoc_redirect_token1, + ACTIONS(7296), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [135499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(7121), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7290), 1, + ACTIONS(7129), 1, sym_file_descriptor, - STATE(2817), 2, + STATE(2788), 1, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7287), 8, + ACTIONS(6748), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -167866,141 +168770,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(6749), 11, + ACTIONS(7119), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [134841] = 3, + [135536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7177), 2, + ACTIONS(7129), 1, sym_file_descriptor, + ACTIONS(7175), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7179), 21, + STATE(2771), 1, + sym_file_redirect, + ACTIONS(6748), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7173), 12, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [134872] = 6, + [135573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 2, + ACTIONS(7305), 1, sym_file_descriptor, + ACTIONS(7006), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2818), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7302), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_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(7001), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134909] = 3, + [135610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 2, - sym_file_descriptor, + ACTIONS(7019), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7293), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7308), 1, + sym_file_descriptor, + STATE(2820), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(6928), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_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(7017), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134940] = 3, + anon_sym_BQUOTE, + [135647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 2, - sym_file_descriptor, + ACTIONS(7006), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7297), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7313), 1, + sym_file_descriptor, + STATE(2820), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7310), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_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(7001), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [134971] = 3, + anon_sym_BQUOTE, + [135684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 3, + ACTIONS(3069), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7303), 20, + ACTIONS(3067), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168021,13 +168935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [135002] = 3, + [135715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6571), 2, + ACTIONS(7316), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 21, + ACTIONS(7318), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168035,11 +168950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168049,13 +168962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135033] = 3, + anon_sym_BQUOTE, + [135746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 2, + ACTIONS(7320), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7161), 21, + ACTIONS(7322), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168063,11 +168978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168077,45 +168990,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135064] = 6, + anon_sym_BQUOTE, + [135777] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6575), 2, + ACTIONS(1139), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 18, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7298), 1, + anon_sym_DQUOTE, + STATE(3493), 1, + sym_string, + ACTIONS(7300), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1137), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, 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, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [135101] = 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(7296), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [135816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7157), 3, + ACTIONS(7197), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7155), 20, + ACTIONS(7199), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168123,9 +169037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168135,14 +169051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [135132] = 3, + [135847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 2, + ACTIONS(7326), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7201), 21, + ACTIONS(7324), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168164,41 +169079,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135163] = 3, + [135878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 2, + ACTIONS(7328), 1, sym_file_descriptor, + ACTIONS(7019), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7303), 21, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + STATE(2818), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7011), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_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(7017), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135194] = 3, + [135915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 2, + ACTIONS(7282), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7305), 21, + ACTIONS(7280), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168206,11 +169125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168220,13 +169137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135225] = 3, + anon_sym_BQUOTE, + [135946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 2, + ACTIONS(7221), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7285), 21, + ACTIONS(7223), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168248,13 +169166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135256] = 3, + [135977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 2, + ACTIONS(7240), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7277), 21, + ACTIONS(7242), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168276,13 +169194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135287] = 3, + [136008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 2, + ACTIONS(7332), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7205), 21, + ACTIONS(7330), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168304,19 +169222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135318] = 6, + [136039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2836), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 2, + ACTIONS(7334), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 18, + ACTIONS(7336), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168324,6 +169237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -168335,43 +169249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 1, - sym__brace_start, - ACTIONS(7309), 1, - sym__special_character, - STATE(2834), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [135390] = 3, + [136070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7207), 2, + ACTIONS(7338), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7209), 21, + ACTIONS(7340), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168379,11 +169265,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168393,19 +169277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135421] = 6, + anon_sym_BQUOTE, + [136101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(7312), 1, - sym__concat, - STATE(2436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(7344), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 18, + ACTIONS(7342), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168413,8 +169292,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168424,13 +169306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135458] = 3, + [136132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 2, + ACTIONS(7346), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7259), 21, + ACTIONS(7348), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168438,11 +169321,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168452,13 +169333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135489] = 3, + anon_sym_BQUOTE, + [136163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7253), 2, + ACTIONS(7254), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7255), 21, + ACTIONS(7256), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168480,13 +169362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135520] = 3, + [136194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 2, + ACTIONS(6787), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7281), 21, + ACTIONS(6785), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168508,14 +169390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135551] = 3, + [136225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 3, + ACTIONS(6779), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7305), 20, + ACTIONS(6777), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168536,19 +169418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [135582] = 6, + [136256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(7314), 1, - sym__concat, - STATE(2436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(7352), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 18, + ACTIONS(7350), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168556,8 +169432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168567,14 +169446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135619] = 3, + [136287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 3, + ACTIONS(7344), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7297), 20, + ACTIONS(7342), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168595,14 +169474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [135650] = 3, + [136318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 3, + ACTIONS(7344), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7195), 20, + ACTIONS(7342), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168623,13 +169502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [135681] = 3, + [136349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 2, + ACTIONS(7344), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7263), 21, + ACTIONS(7342), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168651,13 +169530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135712] = 3, + [136380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 2, + ACTIONS(7356), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7245), 21, + ACTIONS(7354), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168679,14 +169558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135743] = 3, + [136411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 3, + ACTIONS(3069), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 20, + ACTIONS(3067), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168694,9 +169572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168706,42 +169586,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [135774] = 6, + [136442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7319), 1, + ACTIONS(7360), 2, sym_file_descriptor, - STATE(2847), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7316), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(7358), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_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(6749), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135811] = 3, + [136473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 3, + ACTIONS(7326), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, @@ -168766,14 +169642,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [135842] = 3, + [136504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 3, + ACTIONS(7346), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 20, + ACTIONS(7348), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168781,9 +169656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168793,14 +169670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [135873] = 3, + [136535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 2, + ACTIONS(7179), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7233), 21, + ACTIONS(7177), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168808,11 +169685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168822,13 +169697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135904] = 3, + anon_sym_BQUOTE, + [136566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 2, + ACTIONS(7338), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7225), 21, + ACTIONS(7340), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168850,14 +169726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135935] = 3, + [136597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 3, + ACTIONS(7246), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7293), 20, + ACTIONS(7244), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168878,13 +169754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [135966] = 3, + [136628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7271), 2, + ACTIONS(7274), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7273), 21, + ACTIONS(7272), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168892,11 +169769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168906,45 +169781,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [135997] = 6, + anon_sym_BQUOTE, + [136659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7326), 1, + ACTIONS(3005), 2, sym_file_descriptor, - STATE(2847), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6782), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_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(6729), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136034] = 3, + [136690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7149), 3, + ACTIONS(7270), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7147), 20, + ACTIONS(7268), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168965,13 +169838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [136065] = 3, + [136721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 2, + ACTIONS(7334), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7324), 21, + ACTIONS(7336), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168993,13 +169866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136096] = 3, + [136752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 2, + ACTIONS(7250), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(7267), 21, + ACTIONS(7248), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169007,11 +169881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169021,13 +169893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136127] = 3, + anon_sym_BQUOTE, + [136783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 2, + ACTIONS(7360), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 21, + ACTIONS(7358), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169035,11 +169909,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169049,13 +169921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136158] = 3, + anon_sym_BQUOTE, + [136814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 2, + ACTIONS(7227), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 21, + ACTIONS(7225), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169063,11 +169937,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169077,14 +169949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136189] = 3, + anon_sym_BQUOTE, + [136845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 3, + ACTIONS(7227), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 20, + ACTIONS(7225), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169105,14 +169978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [136220] = 3, + [136876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 3, + ACTIONS(7320), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 20, + ACTIONS(7322), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169120,9 +169992,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169132,45 +170006,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [136251] = 6, + [136907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7328), 1, + ACTIONS(7316), 2, sym_file_descriptor, - STATE(2817), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6669), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(7318), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_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(6729), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [136288] = 3, + [136938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 2, + ACTIONS(7364), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(7145), 21, + ACTIONS(7362), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169192,19 +170062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136319] = 6, + [136969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(2841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 2, + ACTIONS(7211), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 18, + ACTIONS(7209), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169212,6 +170077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -169223,353 +170089,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136356] = 6, + anon_sym_BQUOTE, + [137000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7328), 1, + ACTIONS(7207), 3, sym_file_descriptor, - STATE(2762), 1, - sym_file_redirect, - ACTIONS(6669), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7051), 11, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7205), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - anon_sym_BQUOTE, - [136392] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, - anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7330), 1, - aux_sym__c_word_token1, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2000), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [136448] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6931), 1, - anon_sym_LPAREN, - ACTIONS(6935), 1, - anon_sym_DOLLAR, - ACTIONS(6937), 1, - anon_sym_DQUOTE, - ACTIONS(6939), 1, - aux_sym_number_token1, - ACTIONS(6941), 1, - aux_sym_number_token2, - ACTIONS(6943), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6945), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6947), 1, - anon_sym_BQUOTE, - ACTIONS(6949), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7332), 1, - aux_sym__c_word_token1, - STATE(1989), 1, - sym__c_binary_expression, - STATE(1990), 1, - sym__c_unary_expression, - STATE(2005), 1, - sym__c_postfix_expression, - ACTIONS(6929), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1962), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [136504] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6643), 1, - anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - ACTIONS(6647), 1, - aux_sym_number_token1, - ACTIONS(6649), 1, - aux_sym_number_token2, - ACTIONS(6651), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6653), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6655), 1, - anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7334), 1, - aux_sym__c_word_token1, - STATE(1981), 1, - sym__c_postfix_expression, - STATE(2010), 1, - sym__c_binary_expression, - STATE(2014), 1, - sym__c_unary_expression, - ACTIONS(6637), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2017), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [136560] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7336), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6719), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(6721), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [136594] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7053), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7326), 1, - sym_file_descriptor, - STATE(2762), 1, - sym_file_redirect, - ACTIONS(6782), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(7051), 11, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [136630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 1, - sym__brace_start, - ACTIONS(1180), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - sym_test_operator, - [136660] = 6, + [137031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 1, + ACTIONS(7203), 3, sym_file_descriptor, - STATE(2762), 1, - sym_file_redirect, - ACTIONS(7053), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6857), 8, + ACTIONS(7201), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(7051), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7185), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(7187), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [136696] = 6, + [137093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7123), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7326), 1, + ACTIONS(7195), 3, sym_file_descriptor, - STATE(2855), 1, - sym_file_redirect, - ACTIONS(6782), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7193), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(7121), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7191), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7189), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [136732] = 6, + anon_sym_BQUOTE, + [137155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7328), 1, + ACTIONS(7352), 3, sym_file_descriptor, - STATE(2840), 1, - sym_file_redirect, - ACTIONS(6669), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7350), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(7025), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7278), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7276), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, anon_sym_BQUOTE, - [136768] = 6, + [137217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2892), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 3, + ACTIONS(7215), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 16, + ACTIONS(7213), 20, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -169578,247 +170312,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [136804] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2887), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7336), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6622), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + anon_sym_AMP, anon_sym_BQUOTE, - sym_word, - ACTIONS(6628), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [136838] = 6, + [137248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7326), 1, + ACTIONS(7356), 3, sym_file_descriptor, - STATE(2840), 1, - sym_file_redirect, - ACTIONS(6782), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7354), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(7025), 11, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7332), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7330), 20, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [136874] = 6, + anon_sym_BQUOTE, + [137310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 1, + ACTIONS(7364), 3, sym_file_descriptor, - STATE(2840), 1, - sym_file_redirect, - ACTIONS(7027), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(6857), 8, + ACTIONS(7362), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(7025), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7292), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(7294), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [136910] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5480), 1, - anon_sym_DOLLAR, - ACTIONS(5486), 1, - aux_sym_number_token2, - ACTIONS(6973), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, - anon_sym_DQUOTE, - ACTIONS(6979), 1, - aux_sym_number_token1, - ACTIONS(6981), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6983), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6985), 1, - anon_sym_BQUOTE, - ACTIONS(6987), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7338), 1, - aux_sym__c_word_token1, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - ACTIONS(6971), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1907), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [136966] = 6, + [137372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6731), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7340), 1, + ACTIONS(7183), 3, sym_file_descriptor, - STATE(2882), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6959), 8, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7181), 20, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_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(6729), 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(7290), 21, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, anon_sym_AMP, - [137002] = 16, - ACTIONS(63), 1, + [137434] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 1, + ACTIONS(7366), 1, + sym__special_character, + STATE(2782), 1, + aux_sym__literal_repeat1, + ACTIONS(6864), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6862), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, - ACTIONS(5486), 1, - aux_sym_number_token2, - ACTIONS(6973), 1, - anon_sym_LPAREN, - ACTIONS(6977), 1, anon_sym_DQUOTE, - ACTIONS(6979), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6981), 1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(6983), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6985), 1, anon_sym_BQUOTE, - ACTIONS(6987), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7342), 1, - aux_sym__c_word_token1, - STATE(1917), 1, - sym__c_postfix_expression, - STATE(1918), 1, - sym__c_binary_expression, - STATE(1920), 1, - sym__c_unary_expression, - ACTIONS(6971), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1915), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137058] = 6, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [137469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7347), 1, + ACTIONS(7284), 2, sym_file_descriptor, - STATE(2882), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7344), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(7286), 21, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_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(6749), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137094] = 6, + [137500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 1, + ACTIONS(7019), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7368), 1, sym_file_descriptor, - STATE(2855), 1, + STATE(2902), 2, sym_file_redirect, - ACTIONS(7123), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(6857), 8, + aux_sym_redirected_statement_repeat2, + ACTIONS(7083), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -169827,7 +170559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7121), 10, + ACTIONS(7017), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169838,52 +170570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137130] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2885), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7336), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1182), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137164] = 6, + [137536] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(7336), 1, + ACTIONS(7370), 1, aux_sym_concatenation_token1, - ACTIONS(7350), 1, + ACTIONS(7372), 1, sym__concat, - STATE(2888), 1, + STATE(2892), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 6, + ACTIONS(1177), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1186), 13, + ACTIONS(1179), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, @@ -169896,17 +170600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [137200] = 6, + [137572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7123), 1, - aux_sym_heredoc_redirect_token1, ACTIONS(7328), 1, sym_file_descriptor, - STATE(2855), 1, + STATE(2867), 1, sym_file_redirect, - ACTIONS(6669), 8, + ACTIONS(7175), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7011), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -169915,7 +170619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7121), 11, + ACTIONS(7173), 10, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169926,172 +170630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - anon_sym_BQUOTE, - [137236] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7336), 1, - aux_sym_concatenation_token1, - ACTIONS(7352), 1, - sym__concat, - STATE(2888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1192), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137272] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(2888), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7354), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1175), 13, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137306] = 16, - ACTIONS(63), 1, - sym_comment, - ACTIONS(6931), 1, - anon_sym_LPAREN, - ACTIONS(6935), 1, - anon_sym_DOLLAR, - ACTIONS(6937), 1, - anon_sym_DQUOTE, - ACTIONS(6939), 1, - aux_sym_number_token1, - ACTIONS(6941), 1, - aux_sym_number_token2, - ACTIONS(6943), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6945), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6947), 1, - anon_sym_BQUOTE, - ACTIONS(6949), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7357), 1, - aux_sym__c_word_token1, - STATE(1989), 1, - sym__c_binary_expression, - STATE(1990), 1, - sym__c_unary_expression, - STATE(2005), 1, - sym__c_postfix_expression, - ACTIONS(6929), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2019), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [137362] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1238), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1240), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137391] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1250), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1252), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137420] = 6, + [137608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(7359), 1, + ACTIONS(6736), 1, sym__concat, - STATE(2366), 1, + STATE(2937), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 3, + ACTIONS(1169), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 15, + ACTIONS(1167), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -170107,16 +170659,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [137455] = 6, + sym__special_character, + [137644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7053), 1, + ACTIONS(7157), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7308), 1, + sym_file_descriptor, + STATE(2833), 1, + sym_file_redirect, + ACTIONS(6928), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7155), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + anon_sym_BQUOTE, + [137680] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7121), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7340), 1, + ACTIONS(7308), 1, sym_file_descriptor, - STATE(2762), 1, + STATE(2855), 1, sym_file_redirect, - ACTIONS(6959), 8, + ACTIONS(6928), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -170125,7 +170708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7051), 10, + ACTIONS(7119), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -170136,72 +170719,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137490] = 4, + anon_sym_BQUOTE, + [137716] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(7365), 1, - anon_sym_esac, - ACTIONS(7361), 6, + ACTIONS(7093), 1, anon_sym_LPAREN, + ACTIONS(7097), 1, anon_sym_DOLLAR, + ACTIONS(7099), 1, + anon_sym_DQUOTE, + ACTIONS(7101), 1, aux_sym_number_token1, + ACTIONS(7103), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7363), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7105), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7107), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7109), 1, anon_sym_BQUOTE, + ACTIONS(7111), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137521] = 6, + ACTIONS(7374), 1, + aux_sym__c_word_token1, + STATE(1984), 1, + sym__c_unary_expression, + STATE(1988), 1, + sym__c_binary_expression, + STATE(1989), 1, + sym__c_postfix_expression, + ACTIONS(7091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2037), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [137772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(7367), 1, - sym__concat, - STATE(2366), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7175), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7252), 1, + sym_file_descriptor, + STATE(2867), 1, + sym_file_redirect, + ACTIONS(6938), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_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(7173), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [137556] = 6, + anon_sym_AMP, + [137808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, + ACTIONS(7121), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7340), 1, + ACTIONS(7252), 1, sym_file_descriptor, - STATE(2840), 1, + STATE(2855), 1, sym_file_redirect, - ACTIONS(6959), 8, + ACTIONS(6938), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -170210,117 +170808,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(7025), 10, + ACTIONS(7119), 11, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [137591] = 4, + [137844] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_esac, - ACTIONS(7369), 6, - anon_sym_LPAREN, + STATE(2901), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7370), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7371), 14, - sym_extglob_pattern, + ACTIONS(1169), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [137622] = 4, + [137878] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_esac, - ACTIONS(7375), 6, - anon_sym_LPAREN, + STATE(2901), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7370), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6862), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7377), 14, - sym_extglob_pattern, + ACTIONS(6864), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [137653] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 16, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - sym__special_character, - [137688] = 3, + [137912] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 6, + STATE(2880), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7370), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6828), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1222), 15, - sym__concat, + ACTIONS(6830), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -170329,52 +170907,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [137717] = 5, - ACTIONS(63), 1, + [137946] = 6, + ACTIONS(3), 1, sym_comment, - STATE(3004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 6, - anon_sym_LT_LT, + ACTIONS(7157), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7252), 1, + sym_file_descriptor, + STATE(2833), 1, + sym_file_redirect, + ACTIONS(6938), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1182), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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, + ACTIONS(7155), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [137750] = 3, + anon_sym_AMP, + [137982] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 6, + STATE(2892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7376), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1183), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1230), 15, - sym__concat, + ACTIONS(1185), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -170383,84 +170966,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [137779] = 4, - ACTIONS(63), 1, + [138016] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 1, - anon_sym_esac, - ACTIONS(7383), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7385), 14, - sym_extglob_pattern, + ACTIONS(1169), 3, + sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 19, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [137810] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7393), 1, - anon_sym_esac, - ACTIONS(7389), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7391), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [137841] = 8, + sym_word, + [138046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7398), 1, - anon_sym_LT_LT_LT, - ACTIONS(7401), 1, + ACTIONS(7328), 1, sym_file_descriptor, - ACTIONS(6770), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(6490), 4, + STATE(2833), 1, + sym_file_redirect, + ACTIONS(7157), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7011), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7155), 10, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - STATE(2905), 4, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7175), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7308), 1, + sym_file_descriptor, + STATE(2867), 1, sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7395), 8, + ACTIONS(6928), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -170469,416 +171041,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [137880] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1212), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(7173), 11, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, anon_sym_BQUOTE, - sym_word, - ACTIONS(1214), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137909] = 3, + [138118] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 6, + ACTIONS(7093), 1, + anon_sym_LPAREN, + ACTIONS(7097), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1206), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(7099), 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, - sym_test_operator, - [137938] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1196), 6, - anon_sym_DOLLAR, + ACTIONS(7101), 1, aux_sym_number_token1, + ACTIONS(7103), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1198), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7105), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137967] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7387), 1, - anon_sym_esac, - ACTIONS(7383), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(7107), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7385), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(7109), 1, anon_sym_BQUOTE, + ACTIONS(7111), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [137998] = 4, + ACTIONS(7379), 1, + aux_sym__c_word_token1, + STATE(1984), 1, + sym__c_unary_expression, + STATE(1988), 1, + sym__c_binary_expression, + STATE(1989), 1, + sym__c_postfix_expression, + ACTIONS(7091), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1992), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [138174] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(7408), 1, - anon_sym_esac, - ACTIONS(7404), 6, - anon_sym_LPAREN, + ACTIONS(5432), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(5438), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7406), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(7137), 1, + anon_sym_LPAREN, + ACTIONS(7141), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7143), 1, + aux_sym_number_token1, + ACTIONS(7145), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7147), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7149), 1, anon_sym_BQUOTE, + ACTIONS(7151), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [138029] = 4, + ACTIONS(7381), 1, + aux_sym__c_word_token1, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + ACTIONS(7135), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1972), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [138230] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_esac, - ACTIONS(7410), 6, + ACTIONS(6840), 1, anon_sym_LPAREN, + ACTIONS(6844), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7412), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(6846), 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, - sym_test_operator, - [138060] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1200), 6, - anon_sym_DOLLAR, + ACTIONS(6848), 1, aux_sym_number_token1, + ACTIONS(6850), 1, aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6856), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1202), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [138089] = 4, + ACTIONS(7383), 1, + aux_sym__c_word_token1, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2044), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [138286] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(7420), 1, - anon_sym_esac, - ACTIONS(7416), 6, + ACTIONS(6840), 1, anon_sym_LPAREN, + ACTIONS(6844), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7418), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, + ACTIONS(6846), 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, - sym_test_operator, - [138120] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1266), 6, - anon_sym_DOLLAR, + ACTIONS(6848), 1, aux_sym_number_token1, + ACTIONS(6850), 1, aux_sym_number_token2, + ACTIONS(6852), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6854), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6856), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1268), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6858), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [138149] = 3, + ACTIONS(7385), 1, + aux_sym__c_word_token1, + STATE(1980), 1, + sym__c_postfix_expression, + STATE(1986), 1, + sym__c_binary_expression, + STATE(1996), 1, + sym__c_unary_expression, + ACTIONS(6838), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2023), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [138342] = 16, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(5432), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(5438), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1244), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(7137), 1, + anon_sym_LPAREN, + ACTIONS(7141), 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, - sym_test_operator, - [138178] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1270), 6, - anon_sym_DOLLAR, + ACTIONS(7143), 1, aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(7145), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7147), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7149), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1272), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(7151), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [138207] = 4, + ACTIONS(7387), 1, + aux_sym__c_word_token1, + STATE(1924), 1, + sym__c_binary_expression, + STATE(1925), 1, + sym__c_postfix_expression, + STATE(1968), 1, + sym__c_unary_expression, + ACTIONS(7135), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1967), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [138398] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(7426), 1, - anon_sym_esac, - ACTIONS(7422), 6, - anon_sym_LPAREN, + ACTIONS(7370), 1, + aux_sym_concatenation_token1, + ACTIONS(7389), 1, + sym__concat, + STATE(2892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7424), 14, - sym_extglob_pattern, + ACTIONS(1173), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138238] = 5, - ACTIONS(63), 1, + [138434] = 6, + ACTIONS(3), 1, sym_comment, - STATE(3023), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7428), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1180), 5, - anon_sym_LT_LT, + ACTIONS(7006), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 1, + sym_file_descriptor, + STATE(2902), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7391), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1182), 13, - sym_file_descriptor, - sym_variable_name, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7001), 10, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138470] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7328), 1, + sym_file_descriptor, + STATE(2855), 1, + sym_file_redirect, + ACTIONS(7121), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(7011), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7119), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [138271] = 4, + anon_sym_AMP, + [138506] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_esac, - ACTIONS(7430), 6, - anon_sym_LPAREN, + ACTIONS(1255), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7432), 14, - sym_extglob_pattern, + ACTIONS(1257), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [138302] = 3, + [138535] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 6, + ACTIONS(7401), 1, + anon_sym_esac, + ACTIONS(7397), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1226), 15, - sym__concat, + ACTIONS(7399), 14, + sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [138331] = 4, - ACTIONS(3), 1, + [138566] = 10, + ACTIONS(63), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(6683), 1, + anon_sym_PIPE, + ACTIONS(7403), 1, + anon_sym_LT_LT, + ACTIONS(7412), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7415), 1, + anon_sym_LT_LT_LT, + ACTIONS(7418), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2930), 4, + ACTIONS(7409), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6691), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + STATE(2906), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 15, + ACTIONS(7406), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [138609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 16, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -170894,45 +171457,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [138362] = 3, + sym__special_character, + [138644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7157), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7368), 1, + sym_file_descriptor, + STATE(2833), 1, + sym_file_redirect, + ACTIONS(7083), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7155), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [138679] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 6, + ACTIONS(7425), 1, + anon_sym_esac, + ACTIONS(7421), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1175), 15, - sym__concat, + ACTIONS(7423), 14, + sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [138391] = 4, + [138710] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7440), 1, + ACTIONS(7431), 1, anon_sym_esac, - ACTIONS(7436), 6, + ACTIONS(7427), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7438), 14, + ACTIONS(7429), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -170946,31 +171541,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138422] = 9, + [138741] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(3251), 1, anon_sym_LT_LT_LT, - ACTIONS(7444), 1, + ACTIONS(6705), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7446), 1, + ACTIONS(7435), 1, sym_file_descriptor, - ACTIONS(2717), 2, + ACTIONS(2734), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3164), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3263), 2, + ACTIONS(6703), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(2930), 4, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2953), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7442), 8, + ACTIONS(7433), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -170979,19 +171572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [138463] = 4, + [138780] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7393), 1, + ACTIONS(7431), 1, anon_sym_esac, - ACTIONS(7389), 6, + ACTIONS(7427), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7391), 14, + ACTIONS(7429), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171005,73 +171599,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138494] = 3, + [138811] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 6, + ACTIONS(7441), 1, + anon_sym_esac, + ACTIONS(7437), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1218), 15, - sym__concat, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - 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, + ACTIONS(7439), 14, sym_test_operator, - [138523] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1246), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1248), 15, - sym__concat, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [138552] = 6, + [138842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7448), 1, + ACTIONS(7443), 1, sym_variable_name, - STATE(3967), 1, + STATE(3971), 1, sym_subscript, - ACTIONS(6516), 2, + ACTIONS(6730), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(2945), 2, + STATE(2940), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(6514), 15, + ACTIONS(6728), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -171087,76 +171655,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [138587] = 3, + [138877] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 6, + ACTIONS(7449), 1, + anon_sym_esac, + ACTIONS(7445), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1244), 15, - sym__concat, + ACTIONS(7447), 14, + sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - 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, - sym_test_operator, - [138616] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3267), 1, - anon_sym_LT_LT_LT, - ACTIONS(6510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7446), 1, - sym_file_descriptor, - ACTIONS(2717), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(6508), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(2905), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7442), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [138655] = 4, + [138908] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7454), 1, + ACTIONS(7425), 1, anon_sym_esac, - ACTIONS(7450), 6, + ACTIONS(7421), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7452), 14, + ACTIONS(7423), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171170,20 +171709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138686] = 4, + [138939] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(7455), 1, anon_sym_esac, - ACTIONS(7430), 6, + ACTIONS(7451), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7432), 14, + ACTIONS(7453), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171197,20 +171736,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138717] = 4, + [138970] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7460), 1, + ACTIONS(7461), 1, anon_sym_esac, - ACTIONS(7456), 6, + ACTIONS(7457), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7458), 14, + ACTIONS(7459), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171224,20 +171763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138748] = 4, + [139001] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(7401), 1, anon_sym_esac, - ACTIONS(7462), 6, + ACTIONS(7397), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7464), 14, + ACTIONS(7399), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171251,91 +171790,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138779] = 10, - ACTIONS(63), 1, + [139032] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 1, - anon_sym_LT_LT, - ACTIONS(3314), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3316), 1, - anon_sym_LT_LT_LT, - ACTIONS(6508), 1, - anon_sym_PIPE, - ACTIONS(7472), 1, + ACTIONS(2662), 2, sym_file_descriptor, - ACTIONS(7470), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6510), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(2936), 4, + aux_sym_heredoc_redirect_token1, + STATE(2911), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7468), 5, + ACTIONS(2660), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [138822] = 10, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [139063] = 12, ACTIONS(63), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_PIPE, - ACTIONS(7474), 1, + ACTIONS(141), 1, + anon_sym_RBRACK, + ACTIONS(3312), 1, anon_sym_LT_LT, - ACTIONS(7483), 1, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_AMP, + ACTIONS(3318), 1, anon_sym_LT_LT_DASH, - ACTIONS(7486), 1, + ACTIONS(3320), 1, anon_sym_LT_LT_LT, - ACTIONS(7489), 1, + ACTIONS(7467), 1, sym_file_descriptor, - ACTIONS(7480), 3, + ACTIONS(3310), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(7465), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(6498), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - STATE(2936), 4, + STATE(2942), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7477), 5, + ACTIONS(7463), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [138865] = 5, + [139110] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2743), 2, - sym_file_descriptor, + ACTIONS(3249), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3164), 2, + ACTIONS(3251), 1, + anon_sym_LT_LT_LT, + ACTIONS(7435), 1, + sym_file_descriptor, + ACTIONS(2734), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3211), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(2930), 4, + ACTIONS(3247), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(2911), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2613), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7433), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -171344,20 +171884,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [138898] = 3, + [139151] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7473), 1, + anon_sym_esac, + ACTIONS(7469), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7471), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139182] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1201), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1264), 15, + ACTIONS(1203), 15, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, @@ -171371,89 +171937,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [138927] = 12, + [139211] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_RBRACK, - ACTIONS(3293), 1, - anon_sym_PIPE, - ACTIONS(3295), 1, - anon_sym_PIPE_AMP, - ACTIONS(3312), 1, - anon_sym_LT_LT, - ACTIONS(3314), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3316), 1, - anon_sym_LT_LT_LT, - ACTIONS(7472), 1, - sym_file_descriptor, - ACTIONS(3310), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(7470), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2935), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7468), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [138974] = 12, + ACTIONS(1205), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1207), 15, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [139240] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_RBRACK, - ACTIONS(3293), 1, - anon_sym_PIPE, - ACTIONS(3295), 1, - anon_sym_PIPE_AMP, - ACTIONS(3312), 1, - anon_sym_LT_LT, - ACTIONS(3314), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3316), 1, - anon_sym_LT_LT_LT, - ACTIONS(7472), 1, - sym_file_descriptor, - ACTIONS(3310), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(7470), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2935), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7468), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [139021] = 3, + ACTIONS(1259), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1261), 15, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [139269] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 6, + ACTIONS(1183), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1210), 15, + ACTIONS(1185), 15, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, @@ -171467,194 +172015,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139050] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7123), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7340), 1, - sym_file_descriptor, - STATE(2855), 1, - sym_file_redirect, - ACTIONS(6959), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(7121), 10, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [139085] = 4, + [139298] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_esac, - ACTIONS(7462), 6, - anon_sym_LPAREN, + ACTIONS(1231), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7464), 14, - sym_extglob_pattern, + ACTIONS(1233), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [139116] = 12, + [139327] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(77), 1, - anon_sym_RBRACK, - ACTIONS(3293), 1, - anon_sym_PIPE, - ACTIONS(3295), 1, - anon_sym_PIPE_AMP, - ACTIONS(3312), 1, + STATE(2998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7475), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 6, anon_sym_LT_LT, - ACTIONS(3314), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3316), 1, - anon_sym_LT_LT_LT, - ACTIONS(7472), 1, - sym_file_descriptor, - ACTIONS(3310), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(7470), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - STATE(2935), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7468), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [139163] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7492), 1, - sym_variable_name, - STATE(3967), 1, - sym_subscript, - ACTIONS(6481), 2, + sym__special_character, + ACTIONS(1169), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(2945), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6479), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, 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_LT_DASH, anon_sym_LT_LT_LT, - [139198] = 4, + [139360] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7379), 1, - anon_sym_esac, - ACTIONS(7375), 6, - anon_sym_LPAREN, + ACTIONS(1205), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7377), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [139229] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7440), 1, - anon_sym_esac, - ACTIONS(7436), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7438), 14, - sym_extglob_pattern, + ACTIONS(1207), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [139260] = 4, + [139389] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7499), 1, + ACTIONS(7481), 1, anon_sym_esac, - ACTIONS(7495), 6, + ACTIONS(7477), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7497), 14, + ACTIONS(7479), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171668,75 +172122,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139291] = 6, + [139420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 1, - sym__concat, - STATE(2892), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2939), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7121), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2937), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + ACTIONS(7368), 1, + sym_file_descriptor, + STATE(2855), 1, + sym_file_redirect, + ACTIONS(7083), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_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(7119), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [139326] = 4, + anon_sym_AMP, + [139455] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7499), 1, - anon_sym_esac, - ACTIONS(7495), 6, - anon_sym_LPAREN, + ACTIONS(1223), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7497), 14, - sym_extglob_pattern, + ACTIONS(1225), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [139357] = 3, + [139484] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1227), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1256), 15, + ACTIONS(1229), 15, sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, @@ -171750,20 +172203,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139386] = 4, + [139513] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7487), 1, anon_sym_esac, - ACTIONS(7410), 6, + ACTIONS(7483), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7412), 14, + ACTIONS(7485), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171777,21 +172230,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139417] = 6, + [139544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6585), 1, + ACTIONS(7175), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7368), 1, + sym_file_descriptor, + STATE(2867), 1, + sym_file_redirect, + ACTIONS(7083), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(7173), 10, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [139579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, aux_sym_concatenation_token1, - ACTIONS(6587), 1, + ACTIONS(7489), 1, sym__concat, - STATE(2895), 1, + STATE(2432), 1, aux_sym_concatenation_repeat1, - ACTIONS(2949), 3, + ACTIONS(1173), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2947), 15, + ACTIONS(1171), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -171807,19 +172288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [139452] = 4, + [139614] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7505), 1, + ACTIONS(7495), 1, anon_sym_esac, - ACTIONS(7501), 6, + ACTIONS(7491), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7503), 14, + ACTIONS(7493), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171833,20 +172315,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [139645] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1263), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1265), 15, + sym__concat, sym_test_operator, - [139483] = 6, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [139674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 2, + ACTIONS(7497), 1, + sym_variable_name, + STATE(3971), 1, + sym_subscript, + ACTIONS(6723), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 15, + STATE(2940), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6721), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -171862,17 +172370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [139517] = 3, + [139709] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7501), 6, + ACTIONS(7504), 1, + anon_sym_esac, + ACTIONS(7500), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7503), 14, + ACTIONS(7502), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171886,43 +172397,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139545] = 3, + [139740] = 10, ACTIONS(63), 1, sym_comment, - ACTIONS(7507), 6, - anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_LT_LT, + ACTIONS(3318), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3320), 1, + anon_sym_LT_LT_LT, + ACTIONS(6703), 1, + anon_sym_PIPE, + ACTIONS(7467), 1, + sym_file_descriptor, + ACTIONS(7465), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6705), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + STATE(2906), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7463), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [139783] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1247), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7509), 14, - sym_extglob_pattern, + ACTIONS(1249), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [139573] = 3, + [139812] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7404), 6, + ACTIONS(7510), 1, + anon_sym_esac, + ACTIONS(7506), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7406), 14, + ACTIONS(7508), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -171936,128 +172483,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139601] = 10, - ACTIONS(63), 1, + [139843] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 1, - anon_sym_PIPE, - ACTIONS(7511), 1, - anon_sym_LT_LT, - ACTIONS(7517), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7519), 1, - anon_sym_LT_LT_LT, - ACTIONS(7521), 1, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2969), 3, sym_file_descriptor, - ACTIONS(6510), 3, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2967), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(7515), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(3013), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7513), 5, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [139643] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [139878] = 12, ACTIONS(63), 1, sym_comment, - ACTIONS(7523), 1, - sym_variable_name, - STATE(4004), 1, - sym_subscript, - STATE(2983), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6514), 5, + ACTIONS(129), 1, + anon_sym_RBRACK, + ACTIONS(3312), 1, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3314), 1, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(6516), 11, + ACTIONS(3316), 1, + anon_sym_PIPE_AMP, + ACTIONS(3318), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3320), 1, + anon_sym_LT_LT_LT, + ACTIONS(7467), 1, sym_file_descriptor, + ACTIONS(3310), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(7465), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2942), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7463), 5, anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [139677] = 3, + [139925] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7507), 6, - anon_sym_LPAREN, + ACTIONS(1267), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7509), 14, - sym_extglob_pattern, + ACTIONS(1269), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [139705] = 3, + [139954] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7389), 6, - anon_sym_LPAREN, + ACTIONS(1215), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7391), 14, - sym_extglob_pattern, + ACTIONS(1217), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [139983] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1211), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1213), 15, + sym__concat, sym_test_operator, - [139733] = 3, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + 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, + [140012] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7507), 6, + ACTIONS(7449), 1, + anon_sym_esac, + ACTIONS(7445), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7509), 14, + ACTIONS(7447), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172071,72 +172652,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139761] = 5, + [140043] = 3, ACTIONS(63), 1, sym_comment, - STATE(3038), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7428), 2, + ACTIONS(1251), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1253), 15, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - ACTIONS(2947), 5, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140072] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(6736), 1, + sym__concat, + STATE(2956), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2977), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2975), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - ACTIONS(2949), 12, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [140107] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6691), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7515), 1, + anon_sym_LT_LT_LT, + ACTIONS(7518), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(6899), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6683), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + STATE(2953), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7512), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + 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, - anon_sym_LT_LT_LT, - [139793] = 5, + [140146] = 3, ACTIONS(63), 1, sym_comment, - STATE(3023), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7428), 2, + ACTIONS(1235), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1237), 15, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, aux_sym_concatenation_token1, - ACTIONS(2937), 5, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140175] = 12, + ACTIONS(63), 1, + sym_comment, + ACTIONS(77), 1, + anon_sym_RBRACK, + ACTIONS(3312), 1, anon_sym_LT_LT, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_AMP, + ACTIONS(3318), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3320), 1, + anon_sym_LT_LT_LT, + ACTIONS(7467), 1, + sym_file_descriptor, + ACTIONS(3310), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(7465), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(2939), 12, + STATE(2942), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7463), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [140222] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6734), 1, + aux_sym_concatenation_token1, + ACTIONS(7521), 1, + sym__concat, + STATE(2432), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 3, sym_file_descriptor, sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, - [139825] = 3, + [140257] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7525), 6, + ACTIONS(7527), 1, + anon_sym_esac, + ACTIONS(7523), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7527), 14, + ACTIONS(7525), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172150,68 +172855,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139853] = 3, + [140288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2590), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3211), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(2911), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2586), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + 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, + anon_sym_LT_LT_LT, + [140321] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7436), 6, - anon_sym_LPAREN, + ACTIONS(1219), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7438), 14, - sym_extglob_pattern, + ACTIONS(1221), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [139881] = 3, + [140350] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7450), 6, - anon_sym_LPAREN, + ACTIONS(1239), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7452), 14, - sym_extglob_pattern, + ACTIONS(1241), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [139909] = 3, + [140379] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7416), 6, + ACTIONS(7510), 1, + anon_sym_esac, + ACTIONS(7506), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7418), 14, + ACTIONS(7508), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172225,10 +172962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139937] = 3, + [140410] = 4, ACTIONS(63), 1, sym_comment, + ACTIONS(7533), 1, + anon_sym_esac, ACTIONS(7529), 6, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -172237,6 +172975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, sym_word, ACTIONS(7531), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172250,18 +172989,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139965] = 3, + [140441] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7430), 6, + ACTIONS(7461), 1, + anon_sym_esac, + ACTIONS(7457), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7432), 14, + ACTIONS(7459), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172275,18 +173016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [139993] = 3, + [140472] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7533), 6, + ACTIONS(7539), 1, + anon_sym_esac, + ACTIONS(7535), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7535), 14, + ACTIONS(7537), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172300,18 +173043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140021] = 3, + [140503] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7375), 6, + ACTIONS(7527), 1, + anon_sym_esac, + ACTIONS(7523), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7377), 14, + ACTIONS(7525), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172325,18 +173070,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140049] = 3, + [140534] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7541), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1167), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1169), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [140567] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(7537), 6, + ACTIONS(7495), 1, + anon_sym_esac, + ACTIONS(7491), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7539), 14, + ACTIONS(7493), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172350,43 +173125,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140077] = 3, + [140598] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7541), 6, - anon_sym_LPAREN, + ACTIONS(1243), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(7543), 14, - sym_extglob_pattern, + ACTIONS(1245), 15, + sym__concat, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + 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, - sym_test_operator, - [140105] = 3, + [140627] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7541), 6, + ACTIONS(7543), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7543), 14, + ACTIONS(7545), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172400,76 +173176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - [140167] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6571), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(6569), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - [140201] = 6, + [140655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(6683), 1, + ACTIONS(7547), 1, sym__concat, - STATE(3033), 1, + STATE(2447), 1, aux_sym_concatenation_repeat1, - ACTIONS(6575), 2, + ACTIONS(1173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(6573), 15, + ACTIONS(1171), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -172485,17 +173204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [140235] = 3, + [140689] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7369), 6, + ACTIONS(7421), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7371), 14, + ACTIONS(7423), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172509,22 +173229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140263] = 5, + [140717] = 5, ACTIONS(63), 1, sym_comment, - STATE(3004), 1, + STATE(2998), 1, aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, + ACTIONS(7475), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(6534), 5, + ACTIONS(6781), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6536), 12, + ACTIONS(6783), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172537,22 +173256,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [140295] = 6, + [140749] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7381), 1, - aux_sym_concatenation_token1, - ACTIONS(7545), 1, - sym__concat, - STATE(3003), 1, + STATE(3011), 1, aux_sym_concatenation_repeat1, - ACTIONS(1190), 5, + ACTIONS(7475), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3003), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1192), 12, + ACTIONS(3005), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -172565,78 +173283,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [140329] = 6, + [140781] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7547), 1, - sym_variable_name, - STATE(4004), 1, - sym_subscript, - STATE(2983), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6479), 5, + STATE(2998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7475), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2995), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6481), 11, + ACTIONS(2997), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [140363] = 11, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym_PIPE, - ACTIONS(3295), 1, - anon_sym_PIPE_AMP, - ACTIONS(3312), 1, - anon_sym_LT_LT, - ACTIONS(3314), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3316), 1, - anon_sym_LT_LT_LT, - ACTIONS(7472), 1, - sym_file_descriptor, - ACTIONS(3310), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(7470), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2935), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(7468), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [140407] = 3, + [140813] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7383), 6, + ACTIONS(7549), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7385), 14, + ACTIONS(7551), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172650,18 +173335,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140435] = 3, + [140841] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7550), 6, + ACTIONS(7549), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7552), 14, + ACTIONS(7551), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172675,18 +173360,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140463] = 3, + [140869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(3052), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6787), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6785), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [140903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6754), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6752), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [140937] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7389), 6, + ACTIONS(7553), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7391), 14, + ACTIONS(7555), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172700,18 +173441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140491] = 3, + [140965] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7554), 6, + ACTIONS(7457), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7556), 14, + ACTIONS(7459), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172725,43 +173466,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140519] = 3, + [140993] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(7375), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7377), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [140547] = 3, + ACTIONS(7557), 1, + sym_variable_name, + STATE(4012), 1, + sym_subscript, + STATE(3067), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6728), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(6730), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [141027] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7436), 6, + ACTIONS(7559), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7438), 14, + ACTIONS(7561), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172775,18 +173519,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140575] = 3, + [141055] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7558), 6, + ACTIONS(7559), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7560), 14, + ACTIONS(7561), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172800,18 +173544,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140603] = 3, + [141083] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7550), 6, + ACTIONS(7543), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7552), 14, + ACTIONS(7545), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172825,18 +173569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140631] = 3, + [141111] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7562), 6, + ACTIONS(7543), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7564), 14, + ACTIONS(7545), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172850,18 +173594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140659] = 3, + [141139] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7462), 6, + ACTIONS(7563), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7464), 14, + ACTIONS(7565), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172875,18 +173619,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140687] = 3, + [141167] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7541), 6, + ACTIONS(7567), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7543), 14, + ACTIONS(7569), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172900,18 +173644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140715] = 3, + [141195] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7562), 6, + ACTIONS(7427), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7564), 14, + ACTIONS(7429), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172925,23 +173669,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140743] = 3, + [141223] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7558), 6, - anon_sym_LPAREN, + ACTIONS(7571), 1, + sym__special_character, + STATE(2989), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7560), 14, - sym_extglob_pattern, + ACTIONS(1275), 13, + sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -172950,18 +173696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140771] = 3, + [141255] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7533), 6, + ACTIONS(7567), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7535), 14, + ACTIONS(7569), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -172975,18 +173721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140799] = 3, + [141283] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7383), 6, + ACTIONS(7574), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7385), 14, + ACTIONS(7576), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173000,43 +173746,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140827] = 3, + [141311] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7533), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7535), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [140855] = 3, + STATE(3039), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7541), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2975), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(2977), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [141343] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7361), 6, + ACTIONS(7578), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7363), 14, + ACTIONS(7580), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173050,18 +173798,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140883] = 3, + [141371] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7562), 6, + ACTIONS(7578), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7564), 14, + ACTIONS(7580), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173075,151 +173823,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [140911] = 5, + [141399] = 5, ACTIONS(63), 1, sym_comment, - STATE(3003), 1, + STATE(3033), 1, aux_sym_concatenation_repeat1, - ACTIONS(7566), 2, + ACTIONS(7541), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1170), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1175), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [140943] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7381), 1, - aux_sym_concatenation_token1, - ACTIONS(7569), 1, - sym__concat, - STATE(3003), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 5, + ACTIONS(2967), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1186), 12, + ACTIONS(2969), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [140977] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7525), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7527), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_test_operator, - [141005] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, anon_sym_LT_LT_LT, - [141039] = 3, + [141431] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7571), 6, + ACTIONS(7578), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7573), 14, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_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(7580), 14, sym_test_operator, - [141067] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7541), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7543), 14, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173233,18 +173875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141095] = 3, + [141459] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7562), 6, + ACTIONS(7578), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7564), 14, + ACTIONS(7580), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173258,22 +173900,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141123] = 5, + [141487] = 6, ACTIONS(63), 1, sym_comment, - STATE(2982), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, - sym__concat, + ACTIONS(7475), 1, aux_sym_concatenation_token1, - ACTIONS(6538), 5, + ACTIONS(7582), 1, + sym__concat, + STATE(3015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6540), 12, + ACTIONS(1173), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173286,45 +173928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [141155] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - [141189] = 3, + [141521] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7533), 6, + ACTIONS(7567), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7535), 14, + ACTIONS(7569), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173338,50 +173953,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141217] = 10, + [141549] = 10, ACTIONS(63), 1, sym_comment, - ACTIONS(6490), 1, + ACTIONS(6683), 1, anon_sym_PIPE, - ACTIONS(7575), 1, - anon_sym_LT_LT, ACTIONS(7584), 1, + anon_sym_LT_LT, + ACTIONS(7593), 1, anon_sym_LT_LT_DASH, - ACTIONS(7587), 1, + ACTIONS(7596), 1, anon_sym_LT_LT_LT, - ACTIONS(7590), 1, + ACTIONS(7599), 1, sym_file_descriptor, - ACTIONS(6498), 3, + ACTIONS(6691), 3, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(7581), 3, + ACTIONS(7590), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(3013), 4, + STATE(3000), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(7578), 5, + ACTIONS(7587), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [141259] = 3, + [141591] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7593), 6, + ACTIONS(7567), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7595), 14, + ACTIONS(7569), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173395,18 +174010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141287] = 3, + [141619] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7597), 6, + ACTIONS(7602), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7599), 14, + ACTIONS(7604), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173420,46 +174035,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141315] = 6, - ACTIONS(3), 1, + [141647] = 11, + ACTIONS(63), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3037), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6540), 2, + ACTIONS(3312), 1, + anon_sym_LT_LT, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_AMP, + ACTIONS(3318), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3320), 1, + anon_sym_LT_LT_LT, + ACTIONS(7467), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(6538), 15, + ACTIONS(3310), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7465), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + STATE(2942), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7463), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [141349] = 3, + [141691] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7550), 6, + ACTIONS(7543), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7552), 14, + ACTIONS(7545), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173473,72 +174093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141377] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(2959), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2609), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(2611), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [141407] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(3033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6536), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(6534), 15, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - anon_sym_LT_LT_LT, - [141441] = 3, + [141719] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7593), 6, + ACTIONS(7427), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7595), 14, + ACTIONS(7429), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173552,18 +174118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141469] = 3, + [141747] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7593), 6, + ACTIONS(7606), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7595), 14, + ACTIONS(7608), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173577,18 +174143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141497] = 3, + [141775] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7495), 6, + ACTIONS(7421), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7497), 14, + ACTIONS(7423), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173602,46 +174168,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141525] = 6, + [141803] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7428), 1, - aux_sym_concatenation_token1, - ACTIONS(7601), 1, - sym__concat, - STATE(3053), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1186), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [141559] = 3, + ACTIONS(7606), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7608), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141831] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7550), 6, + ACTIONS(7610), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7552), 14, + ACTIONS(7612), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173655,49 +174218,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141587] = 5, + [141859] = 4, ACTIONS(63), 1, sym_comment, - STATE(2982), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3044), 5, + STATE(3029), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2660), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3046), 12, + ACTIONS(2662), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [141619] = 5, + [141889] = 6, ACTIONS(63), 1, sym_comment, - STATE(3004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, - sym__concat, + ACTIONS(7475), 1, aux_sym_concatenation_token1, - ACTIONS(3060), 5, + ACTIONS(7614), 1, + sym__concat, + STATE(3015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3062), 12, + ACTIONS(1179), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173710,17 +174272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [141651] = 3, + [141923] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7603), 6, + ACTIONS(7616), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7605), 14, + ACTIONS(7618), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173734,18 +174297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141679] = 3, + [141951] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7410), 6, + ACTIONS(7491), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7412), 14, + ACTIONS(7493), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173759,22 +174322,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141707] = 5, + [141979] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(3052), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [142013] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3015), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7620), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1183), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1185), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [142045] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3314), 1, + anon_sym_PIPE, + ACTIONS(3316), 1, + anon_sym_PIPE_AMP, + ACTIONS(2586), 4, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3029), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2590), 10, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [142079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, + anon_sym_LT_LT_LT, + [142113] = 5, ACTIONS(63), 1, sym_comment, - STATE(3004), 1, + STATE(3011), 1, aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, + ACTIONS(7475), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(6573), 5, + ACTIONS(6785), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6575), 12, + ACTIONS(6787), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173787,21 +174460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [141739] = 5, + [142145] = 5, ACTIONS(63), 1, sym_comment, - STATE(3094), 1, + STATE(3124), 1, aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, + ACTIONS(7623), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1180), 5, + ACTIONS(1167), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1182), 12, + ACTIONS(1169), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173814,17 +174487,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, sym__special_character, - [141771] = 3, + [142177] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3011), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7475), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6777), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(6779), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [142209] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7593), 6, + ACTIONS(7506), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7595), 14, + ACTIONS(7508), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173838,22 +174539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [141799] = 5, + [142237] = 5, ACTIONS(63), 1, sym_comment, - STATE(2982), 1, + STATE(2998), 1, aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, + ACTIONS(7475), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(6569), 5, + ACTIONS(3063), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6571), 12, + ACTIONS(3065), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173866,19 +174566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [141831] = 6, + [142269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(6922), 1, aux_sym_concatenation_token1, - ACTIONS(7609), 1, + ACTIONS(6924), 1, sym__concat, - STATE(2436), 1, + STATE(2970), 1, aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(6783), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 15, + ACTIONS(6781), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT_LT, @@ -173894,21 +174594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [141865] = 5, + [142303] = 5, ACTIONS(63), 1, sym_comment, - STATE(2982), 1, + STATE(3011), 1, aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, + ACTIONS(7475), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3034), 5, + ACTIONS(3067), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3036), 12, + ACTIONS(3069), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -173921,45 +174621,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [141897] = 6, - ACTIONS(63), 1, + [142335] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 1, - anon_sym_PIPE, - ACTIONS(3295), 1, - anon_sym_PIPE_AMP, - ACTIONS(2613), 4, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(3052), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - STATE(2959), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2743), 10, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [142369] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(3052), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6779), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6777), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, - [141931] = 3, + [142403] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7611), 6, + ACTIONS(7535), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7613), 14, + ACTIONS(7537), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -173973,51 +174702,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [142431] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7625), 1, + sym__special_character, + STATE(2989), 1, + aux_sym__literal_repeat1, + ACTIONS(6862), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6864), 13, sym_test_operator, - [141959] = 6, - ACTIONS(3), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142463] = 10, + ACTIONS(63), 1, sym_comment, - ACTIONS(6681), 1, - aux_sym_concatenation_token1, - ACTIONS(7615), 1, - sym__concat, - STATE(2436), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(6703), 1, + anon_sym_PIPE, + ACTIONS(7627), 1, + anon_sym_LT_LT, + ACTIONS(7633), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7635), 1, + anon_sym_LT_LT_LT, + ACTIONS(7637), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 15, + ACTIONS(6705), 3, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, + anon_sym_PIPE_AMP, + ACTIONS(7631), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(3000), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(7629), 5, anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [142505] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(2998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7475), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6752), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, + ACTIONS(6754), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [141993] = 6, + [142537] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7469), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7471), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142565] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7606), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7608), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142593] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7541), 1, aux_sym_concatenation_token1, - ACTIONS(7617), 1, + ACTIONS(7639), 1, sym__concat, STATE(3053), 1, aux_sym_concatenation_repeat1, - ACTIONS(1190), 5, + ACTIONS(1171), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1192), 12, + ACTIONS(1173), 12, sym_file_descriptor, sym_variable_name, anon_sym_AMP_AMP, @@ -174030,17 +174866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [142027] = 3, + [142627] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7495), 6, + ACTIONS(7559), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7497), 14, + ACTIONS(7561), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174054,18 +174891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142055] = 3, + [142655] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7525), 6, + ACTIONS(7559), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7527), 14, + ACTIONS(7561), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174079,18 +174916,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [142683] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7641), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7643), 14, sym_test_operator, - [142083] = 3, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142711] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7430), 6, + ACTIONS(7523), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7432), 14, + ACTIONS(7525), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174104,45 +174966,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [142739] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7523), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7525), 14, sym_test_operator, - [142111] = 5, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142767] = 6, ACTIONS(63), 1, sym_comment, - STATE(3004), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7381), 2, - sym__concat, + ACTIONS(7541), 1, aux_sym_concatenation_token1, - ACTIONS(3040), 5, + ACTIONS(7645), 1, + sym__concat, + STATE(3053), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3042), 12, + ACTIONS(1179), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [142143] = 3, + [142801] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7456), 6, + ACTIONS(7529), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7458), 14, + ACTIONS(7531), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174156,25 +175044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142171] = 5, + [142829] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7619), 1, - sym__special_character, - STATE(3044), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 5, + ACTIONS(7549), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1281), 13, + ACTIONS(7551), 14, + sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -174183,18 +175069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142203] = 3, + [142857] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7558), 6, + ACTIONS(7647), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7560), 14, + ACTIONS(7649), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174208,18 +175094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142231] = 3, + [142885] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7622), 6, + ACTIONS(7549), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7624), 14, + ACTIONS(7551), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174233,18 +175119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142259] = 3, + [142913] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7507), 6, + ACTIONS(7647), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7509), 14, + ACTIONS(7649), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174258,18 +175144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142287] = 3, + [142941] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7410), 6, + ACTIONS(7506), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7412), 14, + ACTIONS(7508), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174283,25 +175169,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142315] = 5, + [142969] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7626), 1, - sym__special_character, - STATE(3044), 1, - aux_sym__literal_repeat1, - ACTIONS(6719), 5, + ACTIONS(7651), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(6721), 13, + ACTIONS(7653), 14, + sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -174310,18 +175194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142347] = 3, + [142997] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7525), 6, + ACTIONS(7500), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7527), 14, + ACTIONS(7502), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174335,18 +175219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142375] = 3, + [143025] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7558), 6, + ACTIONS(7491), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7560), 14, + ACTIONS(7493), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174360,18 +175244,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142403] = 3, + [143053] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7462), 6, + ACTIONS(7655), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7464), 14, + ACTIONS(7657), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174385,45 +175269,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142431] = 5, + [143081] = 3, ACTIONS(63), 1, sym_comment, - STATE(3053), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7628), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1175), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [142463] = 3, + ACTIONS(7606), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7608), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143109] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7422), 6, + ACTIONS(7655), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(7424), 14, + ACTIONS(7657), 14, + sym_test_operator, sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -174437,73 +175319,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_test_operator, - [142491] = 3, - ACTIONS(63), 1, + [143137] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1242), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1244), 14, - sym_file_descriptor, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(7659), 1, sym__concat, + STATE(2447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [142518] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(7631), 1, - sym__special_character, - STATE(3059), 1, - aux_sym__literal_repeat1, - ACTIONS(3060), 5, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3062), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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_LT_DASH, anon_sym_LT_LT_LT, - [142549] = 5, + [143171] = 5, ACTIONS(63), 1, sym_comment, - STATE(3094), 1, + STATE(3053), 1, aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, + ACTIONS(7661), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(6573), 5, + ACTIONS(1183), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6575), 11, + ACTIONS(1185), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -174514,119 +175374,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [142580] = 5, + [143203] = 3, ACTIONS(63), 1, sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6569), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(6571), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [142611] = 5, + ACTIONS(7655), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7657), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143231] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7633), 1, + ACTIONS(7655), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7657), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, - STATE(3059), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1281), 12, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6922), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, + sym__concat, + STATE(2970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 15, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [142642] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1170), 5, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1175), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + 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, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [142669] = 3, + [143293] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(1218), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [142696] = 3, + ACTIONS(7647), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7649), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143321] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 5, + ACTIONS(7647), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1182), 14, + ACTIONS(7649), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143349] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7437), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7439), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143377] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7457), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7459), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143405] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7445), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7447), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143433] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7445), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7447), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143461] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7451), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7453), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143489] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7397), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7399), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143517] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7397), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7399), 14, + sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, sym__special_character, anon_sym_DQUOTE, @@ -174637,20 +175677,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [143545] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7477), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7479), 14, sym_test_operator, - [142723] = 3, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143573] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 5, + ACTIONS(7664), 1, + sym_variable_name, + STATE(4012), 1, + sym_subscript, + STATE(3067), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6721), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1214), 14, + ACTIONS(6723), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -174661,17 +175730,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [142750] = 3, + [143607] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7483), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7485), 14, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143635] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 5, + ACTIONS(1255), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1198), 14, + ACTIONS(1257), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -174686,23 +175779,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [142777] = 3, + [143662] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 5, + ACTIONS(1239), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1222), 14, + ACTIONS(1241), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -174710,66 +175803,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [142804] = 5, - ACTIONS(63), 1, + [143689] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, - sym__special_character, - STATE(3059), 1, - aux_sym__literal_repeat1, - ACTIONS(3040), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3042), 12, + ACTIONS(7019), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7667), 1, sym_file_descriptor, + STATE(3078), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7017), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_PIPE, 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_LT_DASH, anon_sym_LT_LT_LT, - [142835] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1220), 5, - anon_sym_LT_LT, + ACTIONS(7433), 8, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1222), 14, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [142862] = 3, + [143722] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1231), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 14, + ACTIONS(1233), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -174784,23 +175854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [142889] = 3, + [143749] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1243), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1268), 14, + ACTIONS(1245), 14, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -174808,40 +175878,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [142916] = 3, + [143776] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 5, + STATE(3124), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2995), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1230), 14, + ACTIONS(2997), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [142943] = 3, + [143807] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 5, + ACTIONS(1183), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1248), 14, + ACTIONS(1185), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -174856,16 +175928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [142970] = 3, + [143834] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(1255), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1202), 14, + ACTIONS(1257), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -174880,18 +175952,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [142997] = 3, + [143861] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(7669), 1, + sym__special_character, + STATE(3089), 1, + aux_sym__literal_repeat1, + ACTIONS(6781), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 14, + ACTIONS(6783), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -174903,17 +175978,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [143024] = 3, + [143892] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7006), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7674), 1, + sym_file_descriptor, + STATE(3078), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7001), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(7671), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [143925] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1219), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1272), 14, + ACTIONS(1221), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -174928,16 +176029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143051] = 3, + [143952] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1263), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1240), 14, + ACTIONS(1265), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -174952,16 +176053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143078] = 3, + [143979] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1211), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1264), 14, + ACTIONS(1213), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -174976,16 +176077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143105] = 3, + [144006] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 5, + ACTIONS(1201), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1230), 14, + ACTIONS(1203), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -175000,16 +176101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143132] = 3, + [144033] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 5, + ACTIONS(1247), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1214), 14, + ACTIONS(1249), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175024,40 +176125,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143159] = 3, + [144060] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 5, + ACTIONS(7669), 1, + sym__special_character, + STATE(3089), 1, + aux_sym__literal_repeat1, + ACTIONS(3063), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1210), 14, + ACTIONS(3065), 12, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [143186] = 3, + [144091] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 5, + ACTIONS(1239), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1206), 14, + ACTIONS(1241), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175072,16 +176175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143213] = 3, + [144118] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 5, + ACTIONS(1259), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1206), 14, + ACTIONS(1261), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -175096,23 +176199,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143240] = 3, + [144145] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 5, + ACTIONS(1211), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1226), 14, + ACTIONS(1213), 14, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -175120,23 +176223,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143267] = 3, + [144172] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 5, + ACTIONS(1251), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1248), 14, + ACTIONS(1253), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -175144,18 +176247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143294] = 3, + [144199] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(7677), 1, + sym__special_character, + STATE(3089), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1202), 14, + ACTIONS(1275), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175167,19 +176273,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [143321] = 3, + [144230] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(7669), 1, + sym__special_character, + STATE(3089), 1, + aux_sym__literal_repeat1, + ACTIONS(6752), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1240), 14, + ACTIONS(6754), 12, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175191,17 +176299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [143348] = 3, + [144261] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 5, + ACTIONS(1267), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1226), 14, + ACTIONS(1269), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175216,19 +176323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143375] = 3, + [144288] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 5, + STATE(3124), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6781), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1198), 14, + ACTIONS(6783), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175239,24 +176349,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [143402] = 3, + [144319] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 5, + ACTIONS(1223), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1175), 14, + ACTIONS(1225), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -175264,19 +176373,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143429] = 3, + [144346] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 5, + STATE(3124), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3063), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1272), 14, + ACTIONS(3065), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175287,44 +176399,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [143456] = 6, - ACTIONS(3), 1, + [144377] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(6754), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7639), 1, + STATE(3130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3067), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(3069), 11, sym_file_descriptor, - STATE(3090), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6749), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, + anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(7636), 8, - anon_sym_GT_GT, + [144408] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6777), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, + ACTIONS(6779), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [143489] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [144439] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1251), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1252), 14, + ACTIONS(1253), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175339,16 +176475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143516] = 3, + [144466] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1183), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1256), 14, + ACTIONS(1185), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175363,76 +176499,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143543] = 6, - ACTIONS(3), 1, + [144493] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(6731), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7642), 1, + ACTIONS(1267), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1269), 14, sym_file_descriptor, - STATE(3090), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(6729), 7, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [144520] = 5, + ACTIONS(63), 1, + sym_comment, + STATE(3130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(3003), 5, anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(3005), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(7442), 8, - anon_sym_GT_GT, + [144551] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7669), 1, + sym__special_character, + STATE(3089), 1, + aux_sym__literal_repeat1, + ACTIONS(2995), 5, + anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, + ACTIONS(2997), 12, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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, - [143576] = 6, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [144582] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7607), 1, - aux_sym_concatenation_token1, - ACTIONS(7644), 1, - sym__concat, - STATE(3107), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1184), 5, + ACTIONS(1259), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1186), 11, + ACTIONS(1261), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [143609] = 5, + aux_sym_concatenation_token1, + [144609] = 3, ACTIONS(63), 1, sym_comment, - STATE(3094), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, + ACTIONS(1219), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1221), 14, + sym_file_descriptor, sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(6534), 5, + [144636] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1215), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6536), 11, + ACTIONS(1217), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175443,43 +176646,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [143640] = 6, + aux_sym_concatenation_token1, + [144663] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7607), 1, - aux_sym_concatenation_token1, - ACTIONS(7646), 1, - sym__concat, - STATE(3107), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 5, + ACTIONS(1201), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1192), 11, + ACTIONS(1203), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [143673] = 3, + aux_sym_concatenation_token1, + [144690] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1205), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1264), 14, + ACTIONS(1207), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175494,57 +176695,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143700] = 14, + [144717] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7680), 1, + sym__special_character, + STATE(3107), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1275), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [144748] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7650), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - ACTIONS(7652), 1, + ACTIONS(7687), 1, anon_sym_DOLLAR, - ACTIONS(7654), 1, + ACTIONS(7689), 1, anon_sym_DQUOTE, - ACTIONS(7658), 1, + ACTIONS(7693), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7660), 1, + ACTIONS(7695), 1, anon_sym_RBRACE3, - ACTIONS(7662), 1, + ACTIONS(7697), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7664), 1, + ACTIONS(7699), 1, anon_sym_BQUOTE, - ACTIONS(7666), 1, + ACTIONS(7701), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7668), 1, + ACTIONS(7703), 1, sym_variable_name, - ACTIONS(7648), 2, + ACTIONS(7683), 2, sym_raw_string, sym_word, - ACTIONS(7656), 2, + ACTIONS(7691), 2, sym_ansi_c_string, aux_sym__expansion_expression_token1, - STATE(3736), 3, + STATE(3757), 3, sym_string, sym_simple_expansion, sym_expansion, - STATE(4167), 3, + STATE(4201), 3, sym_array, sym__concatenation_in_expansion, sym_command_substitution, - [143749] = 5, + [144797] = 3, ACTIONS(63), 1, sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, + ACTIONS(1263), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1265), 14, + sym_file_descriptor, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [144824] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1205), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(1207), 14, + sym_file_descriptor, sym__concat, + sym_variable_name, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(6538), 5, + [144851] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1235), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6540), 11, + ACTIONS(1237), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175555,16 +176827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [143780] = 3, + aux_sym_concatenation_token1, + [144878] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 5, + ACTIONS(1235), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1218), 14, + ACTIONS(1237), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175579,100 +176852,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [143807] = 5, + [144905] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7670), 1, - sym__special_character, - STATE(3101), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 5, + ACTIONS(1205), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1281), 12, + ACTIONS(1207), 14, sym_file_descriptor, - sym_variable_name, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [143838] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3034), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3036), 11, - sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [143869] = 5, + aux_sym_concatenation_token1, + [144932] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7631), 1, + ACTIONS(7705), 1, sym__special_character, - STATE(3059), 1, + STATE(3107), 1, aux_sym__literal_repeat1, - ACTIONS(6573), 5, + ACTIONS(2967), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6575), 12, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [143900] = 5, - ACTIONS(63), 1, - sym_comment, - STATE(3094), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3040), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3042), 11, + ACTIONS(2969), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175683,76 +176902,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [143931] = 7, + [144963] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(7679), 1, + ACTIONS(7713), 1, sym_file_descriptor, - ACTIONS(6749), 2, + ACTIONS(7001), 2, anon_sym_LT_LT, anon_sym_PIPE, - STATE(3105), 2, + STATE(3115), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7676), 3, + ACTIONS(7710), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7673), 5, + ACTIONS(7707), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(6754), 6, + ACTIONS(7006), 6, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_RBRACK, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [143966] = 5, + [144998] = 3, ACTIONS(63), 1, sym_comment, - STATE(3096), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(3044), 5, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_AMP_GT, - ACTIONS(3046), 11, - sym_file_descriptor, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_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_LT_DASH, - anon_sym_LT_LT_LT, - [143997] = 5, + ACTIONS(1167), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1169), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145025] = 3, ACTIONS(63), 1, sym_comment, - STATE(3107), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7682), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1170), 5, + ACTIONS(1227), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1175), 11, + ACTIONS(1229), 14, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175763,16 +176977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [144028] = 3, + aux_sym_concatenation_token1, + [145052] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1215), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1268), 14, + ACTIONS(1217), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -175787,21 +177002,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144055] = 5, + [145079] = 5, ACTIONS(63), 1, sym_comment, - STATE(3094), 1, + STATE(3119), 1, aux_sym_concatenation_repeat1, - ACTIONS(7607), 2, + ACTIONS(7716), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(3060), 5, + ACTIONS(1183), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3062), 11, + ACTIONS(1185), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175813,23 +177028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [144086] = 3, + [145110] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 5, + ACTIONS(1205), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1210), 14, + ACTIONS(1207), 14, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -175837,22 +177052,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144113] = 5, + [145137] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7685), 1, - sym__special_character, - STATE(3101), 1, - aux_sym__literal_repeat1, - ACTIONS(2937), 5, + STATE(3130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6785), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(2939), 12, + ACTIONS(6787), 11, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175863,47 +177078,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [144144] = 7, + [145168] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7687), 1, - sym_file_descriptor, - ACTIONS(6729), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3105), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7470), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7468), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(6731), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [144179] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1242), 5, + STATE(3124), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6752), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 14, + ACTIONS(6754), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -175914,17 +177104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [144206] = 3, + [145199] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1243), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1252), 14, + ACTIONS(1245), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -175939,42 +177128,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144233] = 5, + [145226] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(7631), 1, - sym__special_character, - STATE(3059), 1, - aux_sym__literal_repeat1, - ACTIONS(6534), 5, + ACTIONS(7623), 1, + aux_sym_concatenation_token1, + ACTIONS(7719), 1, + sym__concat, + STATE(3119), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6536), 12, + ACTIONS(1173), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [144264] = 3, + [145259] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1247), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1256), 14, + ACTIONS(1249), 14, sym_file_descriptor, sym__concat, sym_variable_name, @@ -175989,22 +177179,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144291] = 3, + [145286] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1204), 5, + ACTIONS(1231), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1206), 13, + ACTIONS(1233), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -176012,122 +177203,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144317] = 3, + [145313] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1208), 5, + ACTIONS(7721), 1, + sym_file_descriptor, + ACTIONS(7017), 2, anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3115), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7465), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1210), 13, - sym_file_descriptor, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7463), 5, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(7019), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [144343] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_DQUOTE, - STATE(3600), 1, - sym_string, - ACTIONS(7693), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1133), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - ACTIONS(7689), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [144375] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_DQUOTE, - STATE(3600), 1, - sym_string, - ACTIONS(7693), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1143), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_AMP, - ACTIONS(7689), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [144407] = 5, + [145348] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7695), 1, - sym__special_character, - STATE(3133), 1, - aux_sym__literal_repeat1, - ACTIONS(3060), 5, + ACTIONS(1227), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3062), 11, + ACTIONS(1229), 14, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [144437] = 3, + aux_sym_concatenation_token1, + [145375] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1228), 5, + ACTIONS(1223), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1230), 13, + ACTIONS(1225), 14, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -176135,44 +177279,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7053), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7642), 1, - sym_file_descriptor, - STATE(2762), 1, - sym_file_redirect, - ACTIONS(7051), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(7442), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [144495] = 3, + [145402] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1224), 5, + ACTIONS(7623), 1, + aux_sym_concatenation_token1, + ACTIONS(7723), 1, + sym__concat, + STATE(3119), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1177), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1226), 13, + ACTIONS(1179), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176183,17 +177306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [144521] = 3, + [145435] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1200), 5, + ACTIONS(1219), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1202), 13, + ACTIONS(1221), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176207,21 +177329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144547] = 5, + [145461] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7695), 1, - sym__special_character, - STATE(3133), 1, - aux_sym__literal_repeat1, - ACTIONS(3040), 5, + ACTIONS(1267), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3042), 11, + ACTIONS(1269), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176232,18 +177351,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [144577] = 3, + aux_sym_concatenation_token1, + [145487] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1170), 5, + ACTIONS(7725), 1, + sym__special_character, + STATE(3147), 1, + aux_sym__literal_repeat1, + ACTIONS(6781), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1175), 13, + ACTIONS(6783), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176254,17 +177377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [144603] = 3, + [145517] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1216), 5, + ACTIONS(1215), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1218), 13, + ACTIONS(1217), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176278,41 +177400,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144629] = 3, + [145543] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 6, + ACTIONS(1205), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - sym__special_character, - ACTIONS(1182), 12, + ACTIONS(1207), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [144655] = 3, + aux_sym_concatenation_token1, + [145569] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 5, + ACTIONS(1239), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1182), 13, + ACTIONS(1241), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176323,44 +177445,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [144681] = 7, - ACTIONS(63), 1, + aux_sym_concatenation_token1, + [145595] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, + ACTIONS(7157), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7667), 1, sym_file_descriptor, - ACTIONS(6729), 2, - anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3144), 2, + STATE(2833), 1, sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7515), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6731), 5, + ACTIONS(7155), 7, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(7513), 5, + ACTIONS(7433), 8, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [144715] = 3, + [145627] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1212), 5, + ACTIONS(1235), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1214), 13, + ACTIONS(1237), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176374,21 +177495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144741] = 5, + [145653] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7699), 1, - sym__special_character, - STATE(3133), 1, - aux_sym__literal_repeat1, - ACTIONS(1276), 5, + ACTIONS(1201), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1281), 11, + ACTIONS(1203), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176399,16 +177517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [144771] = 3, + aux_sym_concatenation_token1, + [145679] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1196), 5, + ACTIONS(1223), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1198), 13, + ACTIONS(1225), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176422,42 +177541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144797] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7123), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7642), 1, - sym_file_descriptor, - STATE(2855), 1, - sym_file_redirect, - ACTIONS(7121), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(7442), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [144829] = 3, + [145705] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1205), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1256), 13, + ACTIONS(1207), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176471,44 +177564,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [144855] = 6, - ACTIONS(3), 1, + [145731] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(7027), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7642), 1, - sym_file_descriptor, - STATE(2840), 1, - sym_file_redirect, - ACTIONS(7025), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7725), 1, + sym__special_character, + STATE(3147), 1, + aux_sym__literal_repeat1, + ACTIONS(6752), 5, anon_sym_LT_LT, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(7442), 8, - anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, + ACTIONS(6754), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [144887] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [145761] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1167), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1264), 13, + ACTIONS(1169), 13, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176519,67 +177611,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [144913] = 5, + sym__special_character, + [145787] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7695), 1, - sym__special_character, - STATE(3133), 1, - aux_sym__literal_repeat1, - ACTIONS(6534), 5, + ACTIONS(1167), 6, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6536), 11, + sym__special_character, + ACTIONS(1169), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [144943] = 3, + [145813] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(1220), 5, + ACTIONS(7727), 1, + sym_file_descriptor, + ACTIONS(7017), 2, anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3157), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7631), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1222), 13, - sym_file_descriptor, - sym__concat, + ACTIONS(7019), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(7629), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [144969] = 3, + [145847] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(7725), 1, + sym__special_character, + STATE(3147), 1, + aux_sym__literal_repeat1, + ACTIONS(3063), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1252), 13, + ACTIONS(3065), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176590,21 +177687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [144995] = 5, + [145877] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(7729), 1, sym__special_character, - STATE(3133), 1, + STATE(3147), 1, aux_sym__literal_repeat1, - ACTIONS(6573), 5, + ACTIONS(1273), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6575), 11, + ACTIONS(1275), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176616,18 +177712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145025] = 3, + [145907] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(7725), 1, + sym__special_character, + STATE(3147), 1, + aux_sym__literal_repeat1, + ACTIONS(2995), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 13, + ACTIONS(2997), 11, sym_file_descriptor, - sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176638,44 +177737,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [145051] = 7, + [145937] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7708), 1, - sym_file_descriptor, - ACTIONS(6749), 2, + ACTIONS(1255), 5, anon_sym_LT_LT, - anon_sym_PIPE, - STATE(3144), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7705), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6754), 5, + ACTIONS(1257), 13, + sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(7702), 5, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [145085] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [145963] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 5, + ACTIONS(1183), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1244), 13, + ACTIONS(1185), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176689,16 +177783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [145111] = 3, + [145989] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1247), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1272), 13, + ACTIONS(1249), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176712,16 +177806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [145137] = 3, + [146015] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1227), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1268), 13, + ACTIONS(1229), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176735,16 +177829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [145163] = 3, + [146041] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 5, + ACTIONS(1231), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1248), 13, + ACTIONS(1233), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176758,16 +177852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [145189] = 3, + [146067] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1238), 5, + ACTIONS(1251), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1240), 13, + ACTIONS(1253), 13, sym_file_descriptor, sym__concat, anon_sym_AMP_AMP, @@ -176781,18 +177875,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [145215] = 3, + [146093] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7175), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7667), 1, + sym_file_descriptor, + STATE(2867), 1, + sym_file_redirect, + ACTIONS(7173), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(7433), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [146125] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3247), 5, + ACTIONS(1243), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3249), 12, + ACTIONS(1245), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176803,126 +177923,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145240] = 3, + aux_sym_concatenation_token1, + [146151] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(7255), 5, + ACTIONS(7738), 1, + sym_file_descriptor, + ACTIONS(7001), 2, anon_sym_LT_LT, + anon_sym_PIPE, + STATE(3157), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7735), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7253), 12, - sym_file_descriptor, + ACTIONS(7006), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(7732), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [145265] = 3, + [146185] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7277), 5, + ACTIONS(1211), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7275), 12, + ACTIONS(1213), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145290] = 3, + aux_sym_concatenation_token1, + [146211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7743), 1, + anon_sym_DQUOTE, + STATE(3618), 1, + sym_string, + ACTIONS(7745), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1127), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_AMP, + ACTIONS(7741), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [146243] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7743), 1, + anon_sym_DQUOTE, + STATE(3618), 1, + sym_string, + ACTIONS(7745), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1137), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_AMP, + ACTIONS(7741), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [146275] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7121), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7667), 1, + sym_file_descriptor, + STATE(2855), 1, + sym_file_redirect, + ACTIONS(7119), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(7433), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [146307] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7285), 5, + ACTIONS(1259), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7283), 12, + ACTIONS(1261), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145315] = 3, + aux_sym_concatenation_token1, + [146333] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3044), 5, + ACTIONS(1263), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3046), 12, + ACTIONS(1265), 13, sym_file_descriptor, + sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145340] = 3, + aux_sym_concatenation_token1, + [146359] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(7259), 5, + ACTIONS(7727), 1, + sym_file_descriptor, + STATE(3207), 1, + sym_file_redirect, + ACTIONS(7119), 2, anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(7631), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7257), 12, - sym_file_descriptor, + ACTIONS(7121), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(7629), 5, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [145365] = 3, + [146392] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3034), 5, + ACTIONS(3003), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3036), 12, + ACTIONS(3005), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176935,44 +178146,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145390] = 7, + [146417] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7697), 1, - sym_file_descriptor, - STATE(3191), 1, - sym_file_redirect, - ACTIONS(7051), 2, + ACTIONS(3067), 5, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(7515), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7053), 5, + ACTIONS(3069), 12, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(7513), 5, anon_sym_GT_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, - [145423] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [146442] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(2947), 5, + ACTIONS(1167), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(2949), 12, + ACTIONS(1169), 12, sym_file_descriptor, - sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -176983,38 +178189,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145448] = 3, + sym__special_character, + [146467] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7303), 5, + ACTIONS(3258), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7301), 12, + ACTIONS(3260), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145473] = 3, + [146492] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7267), 5, + ACTIONS(7223), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7265), 12, + ACTIONS(7221), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177027,64 +178234,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145498] = 7, + [146517] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7697), 1, - sym_file_descriptor, - STATE(3178), 1, - sym_file_redirect, - ACTIONS(7025), 2, + ACTIONS(6785), 5, anon_sym_LT_LT, - anon_sym_PIPE, - ACTIONS(7515), 3, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7027), 5, + ACTIONS(6787), 12, + sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(7513), 5, anon_sym_GT_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, - [145531] = 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [146542] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7201), 5, + ACTIONS(3262), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7199), 12, + ACTIONS(3264), 12, sym_file_descriptor, + sym_variable_name, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145556] = 3, + [146567] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6569), 5, + ACTIONS(6777), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6571), 12, + ACTIONS(6779), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177097,16 +178300,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145581] = 3, + [146592] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(7273), 5, + ACTIONS(7727), 1, + sym_file_descriptor, + STATE(3229), 1, + sym_file_redirect, + ACTIONS(7155), 2, + anon_sym_LT_LT, + anon_sym_PIPE, + ACTIONS(7631), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7157), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(7629), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [146625] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7276), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7271), 12, + ACTIONS(7278), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177119,42 +178348,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145606] = 7, + [146650] = 7, ACTIONS(63), 1, sym_comment, - ACTIONS(7697), 1, + ACTIONS(7727), 1, sym_file_descriptor, - STATE(3202), 1, + STATE(3191), 1, sym_file_redirect, - ACTIONS(7121), 2, + ACTIONS(7173), 2, anon_sym_LT_LT, anon_sym_PIPE, - ACTIONS(7515), 3, + ACTIONS(7631), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7123), 5, + ACTIONS(7175), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(7513), 5, + ACTIONS(7629), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [145639] = 3, + [146683] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3243), 5, + ACTIONS(2975), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3245), 12, + ACTIONS(2977), 12, sym_file_descriptor, sym_variable_name, anon_sym_AMP_AMP, @@ -177167,38 +178396,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145664] = 3, + [146708] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 5, + ACTIONS(7358), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(1182), 12, + ACTIONS(7360), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [145689] = 3, + [146733] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6538), 5, + ACTIONS(7242), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6540), 12, + ACTIONS(7240), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177211,100 +178440,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145714] = 3, + [146758] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7273), 5, + ACTIONS(7350), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7271), 11, + ACTIONS(7352), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145738] = 3, + [146783] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3306), 5, + ACTIONS(7330), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3308), 11, + ACTIONS(7332), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145762] = 3, + [146808] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3044), 5, + ACTIONS(7354), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3046), 11, + ACTIONS(7356), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145786] = 3, + [146833] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7293), 5, + ACTIONS(7213), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7295), 11, + ACTIONS(7215), 12, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_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_LT_DASH, anon_sym_LT_LT_LT, - [145810] = 3, + [146858] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7155), 5, + ACTIONS(7223), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7157), 11, + ACTIONS(7221), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177316,16 +178549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145834] = 3, + [146882] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7163), 5, + ACTIONS(7330), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7165), 11, + ACTIONS(7332), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177337,16 +178570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145858] = 3, + [146906] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7169), 5, + ACTIONS(7348), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7171), 11, + ACTIONS(7346), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177358,16 +178591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145882] = 3, + [146930] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3034), 5, + ACTIONS(7199), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3036), 11, + ACTIONS(7197), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177379,16 +178612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145906] = 3, + [146954] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7225), 5, + ACTIONS(7236), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7223), 11, + ACTIONS(7238), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177400,16 +178633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145930] = 3, + [146978] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7305), 5, + ACTIONS(3304), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7307), 11, + ACTIONS(3306), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177421,16 +178654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145954] = 3, + [147002] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7195), 5, + ACTIONS(7362), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7197), 11, + ACTIONS(7364), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177442,16 +178675,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [145978] = 3, + [147026] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7175), 5, + ACTIONS(7256), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7173), 11, + ACTIONS(7254), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [147050] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7189), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7191), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177463,16 +178717,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146002] = 3, + [147074] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7191), 5, + ACTIONS(7242), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7193), 11, + ACTIONS(7240), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177484,16 +178738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146026] = 3, + [147098] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7191), 5, + ACTIONS(7181), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7193), 11, + ACTIONS(7183), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177505,10 +178759,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146050] = 3, + [147122] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7233), 5, + ACTIONS(7193), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7195), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [147146] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7201), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7203), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [147170] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7217), 5, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_AMP_GT, + ACTIONS(7219), 11, + sym_file_descriptor, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_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_LT_DASH, + anon_sym_LT_LT_LT, + [147194] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(7229), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, @@ -177526,16 +178843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146074] = 3, + [147218] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7245), 5, + ACTIONS(7205), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7243), 11, + ACTIONS(7207), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177547,16 +178864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146098] = 3, + [147242] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7297), 5, + ACTIONS(3304), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7299), 11, + ACTIONS(3306), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177568,16 +178885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146122] = 3, + [147266] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7263), 5, + ACTIONS(7209), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7261), 11, + ACTIONS(7211), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177589,16 +178906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146146] = 3, + [147290] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6569), 5, + ACTIONS(7225), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6571), 11, + ACTIONS(7227), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177610,44 +178927,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146170] = 10, + [147314] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, + ACTIONS(6814), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, + ACTIONS(6816), 1, anon_sym_BQUOTE, - ACTIONS(6614), 1, + ACTIONS(6818), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7715), 1, + ACTIONS(7751), 1, aux_sym__simple_variable_name_token1, - ACTIONS(7717), 1, + ACTIONS(7753), 1, sym_variable_name, - STATE(1910), 1, + STATE(1937), 1, sym_subscript, - STATE(3645), 1, + STATE(3656), 1, sym_command_substitution, - ACTIONS(7713), 3, + ACTIONS(7749), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(7711), 6, + ACTIONS(7747), 6, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_POUND, anon_sym_AT2, - [146208] = 3, + [147352] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7161), 5, + ACTIONS(7324), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7159), 11, + ACTIONS(7326), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177659,16 +178976,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146232] = 3, + [147376] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6814), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6816), 1, + anon_sym_BQUOTE, + ACTIONS(6818), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7759), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(7761), 1, + sym_variable_name, + STATE(3656), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(7757), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(7755), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AT2, + [147412] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7179), 5, + ACTIONS(7225), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7177), 11, + ACTIONS(7227), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177680,16 +179024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146256] = 3, + [147436] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7189), 5, + ACTIONS(7358), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7187), 11, + ACTIONS(7360), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177701,16 +179045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146280] = 3, + [147460] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7267), 5, + ACTIONS(7248), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7265), 11, + ACTIONS(7250), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177722,16 +179066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146304] = 3, + [147484] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7324), 5, + ACTIONS(7280), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7322), 11, + ACTIONS(7282), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177743,16 +179087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146328] = 3, + [147508] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7235), 5, + ACTIONS(7187), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7237), 11, + ACTIONS(7185), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177764,16 +179108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146352] = 3, + [147532] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3306), 5, + ACTIONS(6777), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(3308), 11, + ACTIONS(6779), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177785,16 +179129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146376] = 3, + [147556] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7215), 5, + ACTIONS(7244), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7217), 11, + ACTIONS(7246), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177806,16 +179150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146400] = 3, + [147580] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7227), 5, + ACTIONS(7354), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7229), 11, + ACTIONS(7356), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177827,16 +179171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146424] = 3, + [147604] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6538), 5, + ACTIONS(7268), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(6540), 11, + ACTIONS(7270), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177848,16 +179192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146448] = 3, + [147628] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7145), 5, + ACTIONS(7272), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7143), 11, + ACTIONS(7274), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177869,16 +179213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146472] = 3, + [147652] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7255), 5, + ACTIONS(3067), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7253), 11, + ACTIONS(3069), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177890,16 +179234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146496] = 3, + [147676] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7153), 5, + ACTIONS(7177), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7151), 11, + ACTIONS(7179), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177911,16 +179255,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146520] = 3, + [147700] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7147), 5, + ACTIONS(3003), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7149), 11, + ACTIONS(3005), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177932,16 +179276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146544] = 3, + [147724] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7219), 5, + ACTIONS(7294), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7221), 11, + ACTIONS(7292), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177953,16 +179297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146568] = 3, + [147748] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7259), 5, + ACTIONS(7290), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7257), 11, + ACTIONS(7288), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177974,16 +179318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146592] = 3, + [147772] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7277), 5, + ACTIONS(7350), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7275), 11, + ACTIONS(7352), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177995,16 +179339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146616] = 3, + [147796] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7285), 5, + ACTIONS(7276), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7283), 11, + ACTIONS(7278), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178016,16 +179360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146640] = 3, + [147820] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7303), 5, + ACTIONS(7342), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7301), 11, + ACTIONS(7344), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178037,16 +179381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146664] = 3, + [147844] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7239), 5, + ACTIONS(7342), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7241), 11, + ACTIONS(7344), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178058,7 +179402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146688] = 3, + [147868] = 3, ACTIONS(63), 1, sym_comment, ACTIONS(7213), 5, @@ -178067,7 +179411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7211), 11, + ACTIONS(7215), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178079,16 +179423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146712] = 3, + [147892] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7141), 5, + ACTIONS(7336), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7139), 11, + ACTIONS(7334), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178100,16 +179444,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146736] = 3, + [147916] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7281), 5, + ACTIONS(7286), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7279), 11, + ACTIONS(7284), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178121,16 +179465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146760] = 3, + [147940] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7201), 5, + ACTIONS(6785), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7199), 11, + ACTIONS(6787), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178142,16 +179486,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146784] = 3, + [147964] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7239), 5, + ACTIONS(7322), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7241), 11, + ACTIONS(7320), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178163,43 +179507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146808] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6610), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6612), 1, - anon_sym_BQUOTE, - ACTIONS(6614), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7723), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(7725), 1, - sym_variable_name, - STATE(3645), 2, - sym_subscript, - sym_command_substitution, - ACTIONS(7721), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7719), 6, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AT2, - [146844] = 3, + [147988] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7209), 5, + ACTIONS(7340), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7207), 11, + ACTIONS(7338), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178211,16 +179528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146868] = 3, + [148012] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(7205), 5, + ACTIONS(7318), 5, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_AMP_GT, - ACTIONS(7203), 11, + ACTIONS(7316), 11, sym_file_descriptor, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -178232,20 +179549,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [146892] = 6, + [148036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(3608), 1, anon_sym_DQUOTE, - STATE(3734), 1, + STATE(3759), 1, sym_string, - ACTIONS(1133), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(7729), 2, + ACTIONS(1127), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(7765), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7727), 9, + ACTIONS(7763), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -178255,20 +179572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [146921] = 6, + [148065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(7689), 1, anon_sym_DQUOTE, - STATE(3734), 1, + STATE(3761), 1, sym_string, - ACTIONS(1143), 2, + ACTIONS(1127), 2, anon_sym_SLASH, anon_sym_RBRACE3, - ACTIONS(7729), 2, + ACTIONS(7769), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7727), 9, + ACTIONS(7767), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -178278,22 +179595,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [146950] = 7, + [148094] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7775), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7777), 1, + sym_file_descriptor, + STATE(4155), 1, + sym__heredoc_pipeline, + ACTIONS(7773), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3496), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7771), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [148125] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(7777), 1, + sym_file_descriptor, + ACTIONS(7779), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7737), 1, + STATE(4125), 1, + sym__heredoc_pipeline, + ACTIONS(7773), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3505), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7771), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [148156] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 1, sym_file_descriptor, - STATE(4510), 1, + ACTIONS(7781), 1, + aux_sym_heredoc_redirect_token1, + STATE(4117), 1, sym__heredoc_pipeline, - ACTIONS(7733), 2, + ACTIONS(7773), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(3459), 2, + STATE(3503), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -178302,20 +179667,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [146981] = 6, + [148187] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(7689), 1, anon_sym_DQUOTE, - STATE(3760), 1, + STATE(3761), 1, sym_string, - ACTIONS(1133), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - ACTIONS(7741), 2, + ACTIONS(1137), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(7769), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7739), 9, + ACTIONS(7767), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -178325,22 +179690,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [147010] = 7, + [148216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7777), 1, sym_file_descriptor, - ACTIONS(7743), 1, + ACTIONS(7783), 1, aux_sym_heredoc_redirect_token1, - STATE(4512), 1, + STATE(4079), 1, sym__heredoc_pipeline, - ACTIONS(7733), 2, + ACTIONS(7773), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(3468), 2, + STATE(3484), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -178349,22 +179714,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [147041] = 7, + [148247] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7777), 1, sym_file_descriptor, - ACTIONS(7745), 1, + ACTIONS(7785), 1, aux_sym_heredoc_redirect_token1, - STATE(4106), 1, + STATE(4099), 1, sym__heredoc_pipeline, - ACTIONS(7733), 2, + ACTIONS(7773), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(3463), 2, + STATE(3475), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -178373,22 +179738,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [147072] = 7, + [148278] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7777), 1, sym_file_descriptor, - ACTIONS(7747), 1, + ACTIONS(7787), 1, aux_sym_heredoc_redirect_token1, - STATE(4267), 1, + STATE(4384), 1, + sym__heredoc_pipeline, + ACTIONS(7773), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(3501), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7771), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [148309] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 1, + sym_file_descriptor, + ACTIONS(7789), 1, + aux_sym_heredoc_redirect_token1, + STATE(4400), 1, sym__heredoc_pipeline, - ACTIONS(7733), 2, + ACTIONS(7773), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(3471), 2, + STATE(3492), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -178397,20 +179786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [147103] = 6, + [148340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3608), 1, anon_sym_DQUOTE, - STATE(3760), 1, + STATE(3759), 1, sym_string, - ACTIONS(1143), 2, + ACTIONS(1137), 2, anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(7741), 2, + ACTIONS(7765), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7739), 9, + ACTIONS(7763), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -178420,46 +179809,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [147132] = 7, + [148369] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, - sym_file_descriptor, - ACTIONS(7749), 1, - aux_sym_heredoc_redirect_token1, - STATE(4024), 1, - sym__heredoc_pipeline, - ACTIONS(7733), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3483), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [147163] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7737), 1, + ACTIONS(7777), 1, sym_file_descriptor, - ACTIONS(7751), 1, + ACTIONS(7791), 1, aux_sym_heredoc_redirect_token1, - STATE(4108), 1, + STATE(4203), 1, sym__heredoc_pipeline, - ACTIONS(7733), 2, + ACTIONS(7773), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, STATE(3481), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -178468,2544 +179833,2516 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [147194] = 7, + [148400] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, - sym_file_descriptor, - ACTIONS(7753), 1, - aux_sym_heredoc_redirect_token1, - STATE(4102), 1, - sym__heredoc_pipeline, - ACTIONS(7733), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3491), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [147225] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7737), 1, - sym_file_descriptor, - ACTIONS(7755), 1, - aux_sym_heredoc_redirect_token1, - STATE(4248), 1, - sym__heredoc_pipeline, - ACTIONS(7733), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(3484), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [147256] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7759), 1, + ACTIONS(7795), 1, anon_sym_DOLLAR, - ACTIONS(7761), 1, + ACTIONS(7797), 1, anon_sym_DQUOTE, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3318), 1, + STATE(3293), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147294] = 11, + [148438] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7773), 1, + ACTIONS(7809), 1, anon_sym_DOLLAR, - ACTIONS(7775), 1, + ACTIONS(7811), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147332] = 11, + [148476] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7777), 1, + ACTIONS(7813), 1, anon_sym_DOLLAR, - ACTIONS(7779), 1, + ACTIONS(7815), 1, anon_sym_DQUOTE, - STATE(3235), 1, + STATE(3288), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147370] = 11, + [148514] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7781), 1, + ACTIONS(7817), 1, anon_sym_DOLLAR, - ACTIONS(7783), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - STATE(3269), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147408] = 11, + [148552] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7785), 1, + ACTIONS(7821), 1, anon_sym_DOLLAR, - ACTIONS(7787), 1, + ACTIONS(7823), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147446] = 11, + [148590] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7789), 1, + ACTIONS(7825), 1, anon_sym_DOLLAR, - ACTIONS(7791), 1, + ACTIONS(7827), 1, anon_sym_DQUOTE, - STATE(3274), 1, + STATE(3247), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147484] = 11, + [148628] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7793), 1, + ACTIONS(7829), 1, anon_sym_DOLLAR, - ACTIONS(7795), 1, + ACTIONS(7831), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147522] = 11, + [148666] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7797), 1, + ACTIONS(7833), 1, anon_sym_DOLLAR, - ACTIONS(7799), 1, + ACTIONS(7835), 1, anon_sym_DQUOTE, - STATE(3233), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147560] = 11, + [148704] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7801), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR, - ACTIONS(7803), 1, + ACTIONS(7839), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3256), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147598] = 11, + [148742] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7805), 1, + ACTIONS(7841), 1, anon_sym_DOLLAR, - ACTIONS(7807), 1, + ACTIONS(7843), 1, anon_sym_DQUOTE, - STATE(3243), 1, + STATE(3331), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147636] = 11, + [148780] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7809), 1, + ACTIONS(7845), 1, anon_sym_DOLLAR, - ACTIONS(7811), 1, + ACTIONS(7847), 1, anon_sym_DQUOTE, - STATE(3229), 1, + STATE(3266), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147674] = 11, + [148818] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7813), 1, + ACTIONS(7849), 1, anon_sym_DOLLAR, - ACTIONS(7815), 1, + ACTIONS(7851), 1, anon_sym_DQUOTE, - STATE(3237), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147712] = 11, + [148856] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7817), 1, + ACTIONS(7853), 1, anon_sym_DOLLAR, - ACTIONS(7819), 1, + ACTIONS(7855), 1, anon_sym_DQUOTE, - STATE(3245), 1, + STATE(3249), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147750] = 11, + [148894] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7821), 1, + ACTIONS(7857), 1, anon_sym_DOLLAR, - ACTIONS(7823), 1, + ACTIONS(7859), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147788] = 11, + [148932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7825), 1, + ACTIONS(7861), 1, anon_sym_DOLLAR, - ACTIONS(7827), 1, + ACTIONS(7863), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147826] = 11, + [148970] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7829), 1, + ACTIONS(7865), 1, anon_sym_DOLLAR, - ACTIONS(7831), 1, + ACTIONS(7867), 1, anon_sym_DQUOTE, - STATE(3315), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147864] = 11, + [149008] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7833), 1, + ACTIONS(7869), 1, anon_sym_DOLLAR, - ACTIONS(7835), 1, + ACTIONS(7871), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3257), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147902] = 11, + [149046] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7837), 1, + ACTIONS(7873), 1, anon_sym_DOLLAR, - ACTIONS(7839), 1, + ACTIONS(7875), 1, anon_sym_DQUOTE, - STATE(3242), 1, + STATE(3250), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147940] = 11, + [149084] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7841), 1, + ACTIONS(7877), 1, anon_sym_DOLLAR, - ACTIONS(7843), 1, + ACTIONS(7879), 1, anon_sym_DQUOTE, - STATE(3258), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [147978] = 11, + [149122] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7845), 1, + ACTIONS(7881), 1, anon_sym_DOLLAR, - ACTIONS(7847), 1, + ACTIONS(7883), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3281), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148016] = 11, + [149160] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7849), 1, + ACTIONS(7885), 1, anon_sym_DOLLAR, - ACTIONS(7851), 1, + ACTIONS(7887), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3254), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148054] = 11, + [149198] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7853), 1, + ACTIONS(7889), 1, anon_sym_DOLLAR, - ACTIONS(7855), 1, + ACTIONS(7891), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148092] = 11, + [149236] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7857), 1, + ACTIONS(7893), 1, anon_sym_DOLLAR, - ACTIONS(7859), 1, + ACTIONS(7895), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3270), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148130] = 11, + [149274] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7861), 1, + ACTIONS(7897), 1, anon_sym_DOLLAR, - ACTIONS(7863), 1, + ACTIONS(7899), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148168] = 11, + [149312] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7865), 1, + ACTIONS(7901), 1, anon_sym_DOLLAR, - ACTIONS(7867), 1, + ACTIONS(7903), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3246), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148206] = 11, + [149350] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7869), 1, + ACTIONS(7905), 1, anon_sym_DOLLAR, - ACTIONS(7871), 1, + ACTIONS(7907), 1, anon_sym_DQUOTE, - STATE(3250), 1, + STATE(3277), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148244] = 11, + [149388] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7873), 1, + ACTIONS(7909), 1, anon_sym_DOLLAR, - ACTIONS(7875), 1, + ACTIONS(7911), 1, anon_sym_DQUOTE, - STATE(3263), 1, + STATE(3264), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148282] = 11, + [149426] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7877), 1, + ACTIONS(7913), 1, anon_sym_DOLLAR, - ACTIONS(7879), 1, + ACTIONS(7915), 1, anon_sym_DQUOTE, - STATE(3249), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148320] = 11, + [149464] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7920), 1, + anon_sym_DOLLAR, + ACTIONS(7923), 1, + anon_sym_DQUOTE, + ACTIONS(7925), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7928), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7931), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7934), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7937), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7881), 1, - anon_sym_DOLLAR, - ACTIONS(7883), 1, - anon_sym_DQUOTE, - STATE(3266), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7917), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148358] = 11, + [149502] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7885), 1, + ACTIONS(7940), 1, anon_sym_DOLLAR, - ACTIONS(7887), 1, + ACTIONS(7942), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148396] = 11, + [149540] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7889), 1, + ACTIONS(7944), 1, anon_sym_DOLLAR, - ACTIONS(7891), 1, + ACTIONS(7946), 1, anon_sym_DQUOTE, - STATE(3264), 1, + STATE(3325), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148434] = 11, + [149578] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7893), 1, + ACTIONS(7948), 1, anon_sym_DOLLAR, - ACTIONS(7895), 1, + ACTIONS(7950), 1, anon_sym_DQUOTE, - STATE(3251), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148472] = 11, + [149616] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7897), 1, + ACTIONS(7952), 1, anon_sym_DOLLAR, - ACTIONS(7899), 1, + ACTIONS(7954), 1, anon_sym_DQUOTE, - STATE(3268), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148510] = 11, + [149654] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7901), 1, + ACTIONS(7956), 1, anon_sym_DOLLAR, - ACTIONS(7903), 1, + ACTIONS(7958), 1, anon_sym_DQUOTE, - STATE(3253), 1, + STATE(3274), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148548] = 11, + [149692] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7905), 1, + ACTIONS(7960), 1, anon_sym_DOLLAR, - ACTIONS(7907), 1, + ACTIONS(7962), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148586] = 11, + [149730] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7909), 1, + ACTIONS(7964), 1, anon_sym_DOLLAR, - ACTIONS(7911), 1, + ACTIONS(7966), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3272), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148624] = 11, + [149768] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7913), 1, + ACTIONS(7968), 1, anon_sym_DOLLAR, - ACTIONS(7915), 1, + ACTIONS(7970), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148662] = 11, + [149806] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7917), 1, + ACTIONS(7972), 1, anon_sym_DOLLAR, - ACTIONS(7919), 1, + ACTIONS(7974), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148700] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7921), 1, - aux_sym_concatenation_token1, - ACTIONS(7923), 1, - sym__concat, - STATE(3455), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 9, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym__special_character, - [148728] = 11, + [149844] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7925), 1, + ACTIONS(7976), 1, anon_sym_DOLLAR, - ACTIONS(7927), 1, + ACTIONS(7978), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148766] = 11, + [149882] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7929), 1, + ACTIONS(7980), 1, anon_sym_DOLLAR, - ACTIONS(7931), 1, + ACTIONS(7982), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3287), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148804] = 11, + [149920] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7933), 1, + ACTIONS(7984), 1, anon_sym_DOLLAR, - ACTIONS(7935), 1, + ACTIONS(7986), 1, anon_sym_DQUOTE, - STATE(3265), 1, + STATE(3258), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148842] = 11, + [149958] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7937), 1, + ACTIONS(7988), 1, anon_sym_DOLLAR, - ACTIONS(7939), 1, + ACTIONS(7990), 1, anon_sym_DQUOTE, - STATE(3277), 1, + STATE(3289), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148880] = 11, + [149996] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7941), 1, + ACTIONS(7992), 1, anon_sym_DOLLAR, - ACTIONS(7943), 1, + ACTIONS(7994), 1, anon_sym_DQUOTE, - STATE(3273), 1, + STATE(3279), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148918] = 11, + [150034] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7945), 1, + ACTIONS(7996), 1, anon_sym_DOLLAR, - ACTIONS(7947), 1, + ACTIONS(7998), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3280), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148956] = 11, + [150072] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7949), 1, + ACTIONS(8000), 1, anon_sym_DOLLAR, - ACTIONS(7951), 1, + ACTIONS(8002), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [148994] = 11, + [150110] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7953), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR, - ACTIONS(7955), 1, + ACTIONS(8006), 1, anon_sym_DQUOTE, - STATE(3276), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149032] = 11, + [150148] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7957), 1, + ACTIONS(8008), 1, anon_sym_DOLLAR, - ACTIONS(7959), 1, + ACTIONS(8010), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149070] = 11, + [150186] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7961), 1, + ACTIONS(8012), 1, anon_sym_DOLLAR, - ACTIONS(7963), 1, + ACTIONS(8014), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149108] = 11, + [150224] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7965), 1, + ACTIONS(8016), 1, anon_sym_DOLLAR, - ACTIONS(7967), 1, + ACTIONS(8018), 1, anon_sym_DQUOTE, - STATE(3283), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149146] = 11, + [150262] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7969), 1, + ACTIONS(8020), 1, anon_sym_DOLLAR, - ACTIONS(7971), 1, + ACTIONS(8022), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3299), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149184] = 11, + [150300] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7973), 1, + ACTIONS(8024), 1, anon_sym_DOLLAR, - ACTIONS(7975), 1, + ACTIONS(8026), 1, anon_sym_DQUOTE, - STATE(3230), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149222] = 11, + [150338] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7977), 1, + ACTIONS(8028), 1, anon_sym_DOLLAR, - ACTIONS(7979), 1, + ACTIONS(8030), 1, anon_sym_DQUOTE, - STATE(3282), 1, + STATE(3290), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149260] = 11, + [150376] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7981), 1, + ACTIONS(8032), 1, anon_sym_DOLLAR, - ACTIONS(7983), 1, + ACTIONS(8034), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3296), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149298] = 11, + [150414] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7985), 1, + ACTIONS(8036), 1, anon_sym_DOLLAR, - ACTIONS(7987), 1, + ACTIONS(8038), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149336] = 11, + [150452] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7989), 1, + ACTIONS(8040), 1, anon_sym_DOLLAR, - ACTIONS(7991), 1, + ACTIONS(8042), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149374] = 11, + [150490] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7993), 1, + ACTIONS(8044), 1, anon_sym_DOLLAR, - ACTIONS(7995), 1, + ACTIONS(8046), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3291), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149412] = 11, + [150528] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7997), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(7999), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - STATE(3293), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149450] = 11, + [150566] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8001), 1, + ACTIONS(8052), 1, anon_sym_DOLLAR, - ACTIONS(8003), 1, + ACTIONS(8054), 1, anon_sym_DQUOTE, - STATE(3284), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149488] = 11, + [150604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(8056), 1, + aux_sym_concatenation_token1, + ACTIONS(8058), 1, + sym__concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 9, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + sym__special_character, + [150632] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8005), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR, - ACTIONS(8007), 1, + ACTIONS(8062), 1, anon_sym_DQUOTE, - STATE(3296), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149526] = 11, + [150670] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8009), 1, + ACTIONS(8064), 1, anon_sym_DOLLAR, - ACTIONS(8011), 1, + ACTIONS(8066), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3308), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149564] = 11, + [150708] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8013), 1, + ACTIONS(8068), 1, anon_sym_DOLLAR, - ACTIONS(8015), 1, + ACTIONS(8070), 1, anon_sym_DQUOTE, - STATE(3285), 1, + STATE(3297), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149602] = 11, + [150746] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8017), 1, + ACTIONS(8072), 1, anon_sym_DOLLAR, - ACTIONS(8019), 1, + ACTIONS(8074), 1, anon_sym_DQUOTE, - STATE(3279), 1, + STATE(3315), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149640] = 11, + [150784] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8021), 1, + ACTIONS(8076), 1, anon_sym_DOLLAR, - ACTIONS(8023), 1, + ACTIONS(8078), 1, anon_sym_DQUOTE, - STATE(3307), 1, + STATE(3310), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149678] = 11, + [150822] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8025), 1, + ACTIONS(8080), 1, anon_sym_DOLLAR, - ACTIONS(8027), 1, + ACTIONS(8082), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3302), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149716] = 11, + [150860] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8029), 1, + ACTIONS(8084), 1, anon_sym_DOLLAR, - ACTIONS(8031), 1, + ACTIONS(8086), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149754] = 11, + [150898] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8033), 1, + ACTIONS(8088), 1, anon_sym_DOLLAR, - ACTIONS(8035), 1, + ACTIONS(8090), 1, anon_sym_DQUOTE, - STATE(3289), 1, + STATE(3319), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149792] = 11, + [150936] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8037), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(8039), 1, + ACTIONS(8094), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149830] = 11, + [150974] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8041), 1, + ACTIONS(8096), 1, anon_sym_DOLLAR, - ACTIONS(8043), 1, + ACTIONS(8098), 1, anon_sym_DQUOTE, - STATE(3299), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149868] = 11, + [151012] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8045), 1, + ACTIONS(8100), 1, anon_sym_DOLLAR, - ACTIONS(8047), 1, + ACTIONS(8102), 1, anon_sym_DQUOTE, - STATE(3294), 1, + STATE(3321), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149906] = 11, + [151050] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8049), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR, - ACTIONS(8051), 1, + ACTIONS(8106), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149944] = 11, + [151088] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8053), 1, + ACTIONS(8108), 1, anon_sym_DOLLAR, - ACTIONS(8055), 1, + ACTIONS(8110), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [149982] = 11, + [151126] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8057), 1, + ACTIONS(8112), 1, anon_sym_DOLLAR, - ACTIONS(8059), 1, + ACTIONS(8114), 1, anon_sym_DQUOTE, - STATE(3303), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150020] = 11, + [151164] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8061), 1, + ACTIONS(8116), 1, anon_sym_DOLLAR, - ACTIONS(8063), 1, + ACTIONS(8118), 1, anon_sym_DQUOTE, - STATE(3300), 1, + STATE(3313), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150058] = 11, + [151202] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8065), 1, + ACTIONS(8120), 1, anon_sym_DOLLAR, - ACTIONS(8067), 1, + ACTIONS(8122), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3311), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150096] = 11, + [151240] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8069), 1, + ACTIONS(8124), 1, anon_sym_DOLLAR, - ACTIONS(8071), 1, + ACTIONS(8126), 1, anon_sym_DQUOTE, - STATE(3305), 1, + STATE(3300), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150134] = 11, + [151278] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8073), 1, + ACTIONS(8128), 1, anon_sym_DOLLAR, - ACTIONS(8075), 1, + ACTIONS(8130), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150172] = 11, + [151316] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8077), 1, + ACTIONS(8132), 1, anon_sym_DOLLAR, - ACTIONS(8079), 1, + ACTIONS(8134), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150210] = 11, + [151354] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8081), 1, + ACTIONS(8136), 1, anon_sym_DOLLAR, - ACTIONS(8083), 1, + ACTIONS(8138), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150248] = 11, + [151392] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8085), 1, + ACTIONS(8140), 1, anon_sym_DOLLAR, - ACTIONS(8087), 1, + ACTIONS(8142), 1, anon_sym_DQUOTE, - STATE(3306), 1, + STATE(3327), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150286] = 11, + [151430] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8089), 1, + ACTIONS(8144), 1, anon_sym_DOLLAR, - ACTIONS(8091), 1, + ACTIONS(8146), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3314), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150324] = 11, + [151468] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8093), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR, - ACTIONS(8095), 1, + ACTIONS(8150), 1, anon_sym_DQUOTE, - STATE(3309), 1, + STATE(3330), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150362] = 11, + [151506] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8097), 1, + ACTIONS(8152), 1, anon_sym_DOLLAR, - ACTIONS(8099), 1, + ACTIONS(8154), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150400] = 11, + [151544] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8101), 1, + ACTIONS(8156), 1, anon_sym_DOLLAR, - ACTIONS(8103), 1, + ACTIONS(8158), 1, anon_sym_DQUOTE, - STATE(3314), 1, + STATE(3320), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150438] = 11, + [151582] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8105), 1, + ACTIONS(8160), 1, anon_sym_DOLLAR, - ACTIONS(8107), 1, + ACTIONS(8162), 1, anon_sym_DQUOTE, - STATE(3248), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150476] = 11, + [151620] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8109), 1, + ACTIONS(8164), 1, anon_sym_DOLLAR, - ACTIONS(8111), 1, + ACTIONS(8166), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150514] = 11, + [151658] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8113), 1, + ACTIONS(8168), 1, anon_sym_DOLLAR, - ACTIONS(8115), 1, + ACTIONS(8170), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3261), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150552] = 11, + [151696] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8117), 1, + ACTIONS(8172), 1, anon_sym_DOLLAR, - ACTIONS(8119), 1, + ACTIONS(8174), 1, anon_sym_DQUOTE, - STATE(3311), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150590] = 11, + [151734] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8121), 1, + ACTIONS(8176), 1, anon_sym_DOLLAR, - ACTIONS(8123), 1, + ACTIONS(8178), 1, anon_sym_DQUOTE, - STATE(3319), 1, + STATE(3271), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150628] = 11, + [151772] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8128), 1, - anon_sym_DOLLAR, - ACTIONS(8131), 1, - anon_sym_DQUOTE, - ACTIONS(8133), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(8136), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8139), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8142), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(8145), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3318), 1, + ACTIONS(8180), 1, + anon_sym_DOLLAR, + ACTIONS(8182), 1, + anon_sym_DQUOTE, + STATE(3328), 1, aux_sym_string_repeat1, - ACTIONS(8125), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150666] = 11, + [151810] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8148), 1, + ACTIONS(8184), 1, anon_sym_DOLLAR, - ACTIONS(8150), 1, + ACTIONS(8186), 1, anon_sym_DQUOTE, - STATE(3318), 1, + STATE(3275), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150704] = 11, + [151848] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7799), 1, sym__string_content, - ACTIONS(7765), 1, + ACTIONS(7801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7767), 1, + ACTIONS(7803), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7769), 1, + ACTIONS(7805), 1, anon_sym_BQUOTE, - ACTIONS(7771), 1, + ACTIONS(7807), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8152), 1, + ACTIONS(8188), 1, anon_sym_DOLLAR, - ACTIONS(8154), 1, + ACTIONS(8190), 1, anon_sym_DQUOTE, - STATE(3252), 1, + STATE(3244), 1, aux_sym_string_repeat1, - ACTIONS(7757), 2, + ACTIONS(7793), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3516), 4, + STATE(3539), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [150742] = 5, + [151886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(7689), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + STATE(3761), 1, + sym_string, + ACTIONS(7769), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7767), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [151911] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7851), 1, + anon_sym_DQUOTE, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181015,17 +182352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150767] = 5, + [151936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8164), 1, + ACTIONS(8198), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181035,17 +182372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150792] = 5, + [151961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(8062), 1, anon_sym_DQUOTE, - STATE(2060), 1, - sym_string, - ACTIONS(3737), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3733), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181055,17 +182392,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150817] = 5, + [151986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8200), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8196), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8192), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [152011] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8110), 1, + anon_sym_DQUOTE, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181075,17 +182432,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150842] = 5, + [152036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, + ACTIONS(4241), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + STATE(2741), 1, + sym_string, + ACTIONS(4373), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4371), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [152061] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8202), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181095,17 +182472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150867] = 5, + [152086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7847), 1, + ACTIONS(8138), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181115,17 +182492,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150892] = 5, + [152111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8055), 1, + ACTIONS(1831), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + STATE(873), 1, + sym_string, + ACTIONS(2309), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2307), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [152136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8166), 1, + anon_sym_DQUOTE, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181135,17 +182532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150917] = 5, + [152161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(1869), 1, anon_sym_DQUOTE, - STATE(3600), 1, + STATE(767), 1, sym_string, - ACTIONS(7693), 2, + ACTIONS(2131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7689), 9, + ACTIONS(2129), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181155,37 +182552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150942] = 5, + [152186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8166), 1, + ACTIONS(8098), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [150967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8168), 1, - anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181195,17 +182572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [150992] = 5, + [152211] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8099), 1, + ACTIONS(8130), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181215,57 +182592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151017] = 5, + [152236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8170), 1, - anon_sym_DQUOTE, - ACTIONS(8162), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [151042] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 1, - anon_sym_DQUOTE, - STATE(1370), 1, - sym_string, - ACTIONS(2923), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(2921), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [151067] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 1, + ACTIONS(8204), 1, anon_sym_DQUOTE, - STATE(2748), 1, - sym_string, - ACTIONS(4566), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4564), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181275,17 +182612,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151092] = 5, + [152261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, + ACTIONS(7879), 1, anon_sym_DQUOTE, - STATE(401), 1, - sym_string, - ACTIONS(1157), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1153), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181295,59 +182632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151117] = 6, + [152286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, - aux_sym_concatenation_token1, - ACTIONS(7923), 1, - sym__concat, - STATE(3456), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3036), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [151144] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7921), 1, - aux_sym_concatenation_token1, - ACTIONS(7923), 1, - sym__concat, - STATE(3455), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3042), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [151171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1387), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8206), 1, anon_sym_DQUOTE, - STATE(676), 1, - sym_string, - ACTIONS(2192), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2190), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181357,37 +182652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151196] = 5, + [152311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8111), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [151221] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2174), 1, + ACTIONS(8208), 1, anon_sym_DQUOTE, - STATE(877), 1, - sym_string, - ACTIONS(2176), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2172), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181397,17 +182672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151246] = 5, + [152336] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8083), 1, + ACTIONS(7835), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181417,17 +182692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151271] = 5, + [152361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8172), 1, + ACTIONS(8210), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181437,59 +182712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151296] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7921), 1, - aux_sym_concatenation_token1, - ACTIONS(7923), 1, - sym__concat, - STATE(3456), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3046), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [151323] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7921), 1, - aux_sym_concatenation_token1, - ACTIONS(7923), 1, - sym__concat, - STATE(3455), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3062), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [151350] = 5, + [152386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8091), 1, + ACTIONS(8038), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181499,37 +182732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151375] = 5, + [152411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8174), 1, + ACTIONS(8162), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [151400] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8176), 1, - anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181539,17 +182752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151425] = 5, + [152436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8178), 1, + ACTIONS(8212), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181559,17 +182772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151450] = 5, + [152461] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, + ACTIONS(5138), 1, anon_sym_DQUOTE, - STATE(1099), 1, + STATE(2924), 1, sym_string, - ACTIONS(2574), 2, + ACTIONS(5140), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2572), 9, + ACTIONS(5136), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181579,37 +182792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151475] = 5, + [152486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(202), 1, anon_sym_DQUOTE, - STATE(2941), 1, + STATE(1444), 1, sym_string, - ACTIONS(5138), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5134), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [151500] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8067), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + ACTIONS(2721), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2719), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181619,17 +182812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151525] = 5, + [152511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(7743), 1, anon_sym_DQUOTE, - STATE(872), 1, + STATE(3618), 1, sym_string, - ACTIONS(2268), 2, + ACTIONS(7745), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2266), 9, + ACTIONS(7741), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181639,17 +182832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151550] = 5, + [152536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(204), 1, + ACTIONS(4109), 1, anon_sym_DQUOTE, - STATE(1407), 1, + STATE(2517), 1, sym_string, - ACTIONS(2759), 2, + ACTIONS(4111), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2757), 9, + ACTIONS(4107), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181659,17 +182852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151575] = 5, + [152561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7654), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8214), 1, anon_sym_DQUOTE, - STATE(3734), 1, - sym_string, - ACTIONS(7729), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7727), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181679,17 +182872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151600] = 5, + [152586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8115), 1, + ACTIONS(8094), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181699,17 +182892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151625] = 5, + [152611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8180), 1, + ACTIONS(8106), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181719,17 +182912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151650] = 5, + [152636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8182), 1, + ACTIONS(8216), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181739,17 +182932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151675] = 5, + [152661] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8150), 1, + ACTIONS(3781), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(2080), 1, + sym_string, + ACTIONS(3783), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(3779), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181759,17 +182952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151700] = 5, + [152686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8184), 1, + ACTIONS(2745), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(1534), 1, + sym_string, + ACTIONS(2747), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2743), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181779,17 +182972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151725] = 5, + [152711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8075), 1, + ACTIONS(8134), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181799,17 +182992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151750] = 5, + [152736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8186), 1, + ACTIONS(1331), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(719), 1, + sym_string, + ACTIONS(2095), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2093), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181819,17 +183012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151775] = 5, + [152761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8031), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8218), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181839,17 +183032,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151800] = 5, + [152786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8188), 1, + ACTIONS(8220), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181859,17 +183052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151825] = 5, + [152811] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8190), 1, + ACTIONS(8018), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181879,17 +183072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151850] = 5, + [152836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8192), 1, + ACTIONS(8222), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181899,17 +183092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151875] = 5, + [152861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 1, + ACTIONS(8026), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181919,17 +183112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151900] = 5, + [152886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8194), 1, + ACTIONS(2085), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(812), 1, + sym_string, + ACTIONS(2087), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2083), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181939,17 +183132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151925] = 5, + [152911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8196), 1, + ACTIONS(8224), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181959,17 +183152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151950] = 5, + [152936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8226), 1, anon_sym_DQUOTE, - STATE(2557), 1, - sym_string, - ACTIONS(4283), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4279), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181979,17 +183172,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [151975] = 5, + [152961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4096), 1, + ACTIONS(3608), 1, anon_sym_DQUOTE, - STATE(2487), 1, + STATE(3759), 1, sym_string, - ACTIONS(4098), 2, + ACTIONS(7765), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4094), 9, + ACTIONS(7763), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -181999,17 +183192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152000] = 5, + [152986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(8086), 1, anon_sym_DQUOTE, - STATE(1545), 1, - sym_string, - ACTIONS(2749), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2745), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182019,17 +183212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152025] = 5, + [153011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(7974), 1, anon_sym_DQUOTE, - STATE(3760), 1, - sym_string, - ACTIONS(7741), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7739), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182039,17 +183232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152050] = 5, + [153036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8198), 1, + ACTIONS(8228), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182059,17 +183252,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152075] = 5, + [153061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8011), 1, + ACTIONS(4225), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(2550), 1, + sym_string, + ACTIONS(4227), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(4223), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182079,17 +183272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152100] = 5, + [153086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8027), 1, + ACTIONS(8042), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182099,37 +183292,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152125] = 5, + [153111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7991), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [152150] = 5, + ACTIONS(8056), 1, + aux_sym_concatenation_token1, + ACTIONS(8058), 1, + sym__concat, + STATE(3420), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3069), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3067), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7995), 1, + ACTIONS(2813), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(1531), 1, + sym_string, + ACTIONS(2815), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2811), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182139,17 +183333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152175] = 5, + [153163] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5412), 1, + ACTIONS(1589), 1, anon_sym_DQUOTE, - STATE(3118), 1, + STATE(762), 1, sym_string, - ACTIONS(5414), 2, + ACTIONS(1861), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5410), 9, + ACTIONS(1859), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182159,17 +183353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152200] = 5, + [153188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8200), 1, + ACTIONS(8230), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182179,17 +183373,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152225] = 5, + [153213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8056), 1, + aux_sym_concatenation_token1, + ACTIONS(8058), 1, + sym__concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3065), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3063), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8202), 1, + ACTIONS(8232), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182199,17 +183414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152250] = 5, + [153265] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(7962), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182219,17 +183434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152275] = 5, + [153290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8234), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182239,17 +183454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152300] = 5, + [153315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8236), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182259,17 +183474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152325] = 5, + [153340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1143), 1, anon_sym_DQUOTE, - STATE(1033), 1, + STATE(376), 1, sym_string, - ACTIONS(2384), 2, + ACTIONS(1145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2382), 9, + ACTIONS(1141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182279,17 +183494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152350] = 5, + [153365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7987), 1, + ACTIONS(7867), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182299,17 +183514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152375] = 5, + [153390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8204), 1, + ACTIONS(2886), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(1687), 1, + sym_string, + ACTIONS(2888), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2884), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182319,17 +183534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152400] = 5, + [153415] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8206), 1, + ACTIONS(7819), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182339,37 +183554,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152425] = 5, + [153440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8208), 1, - anon_sym_DQUOTE, - ACTIONS(8162), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [152450] = 5, + ACTIONS(8056), 1, + aux_sym_concatenation_token1, + ACTIONS(8058), 1, + sym__concat, + STATE(3420), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3005), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3003), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, + ACTIONS(8178), 1, anon_sym_DQUOTE, - STATE(1729), 1, - sym_string, - ACTIONS(2945), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2941), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182379,17 +183595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152475] = 5, + [153492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8210), 1, + ACTIONS(8238), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182399,17 +183615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152500] = 5, + [153517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8212), 1, + ACTIONS(8014), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182419,17 +183635,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152525] = 5, + [153542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1675), 1, + ACTIONS(8056), 1, + aux_sym_concatenation_token1, + ACTIONS(8058), 1, + sym__concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2997), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2995), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 1, anon_sym_DQUOTE, - STATE(731), 1, + STATE(336), 1, sym_string, - ACTIONS(1881), 2, + ACTIONS(1133), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1879), 9, + ACTIONS(1129), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182439,17 +183676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152550] = 5, + [153594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8214), 1, + ACTIONS(8240), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182459,17 +183696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152575] = 5, + [153619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8242), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182479,17 +183716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152600] = 5, + [153644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8244), 1, anon_sym_DQUOTE, - STATE(1425), 1, - sym_string, - ACTIONS(2700), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2696), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182499,17 +183736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152625] = 5, + [153669] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 1, + ACTIONS(8114), 1, anon_sym_DQUOTE, - STATE(1029), 1, - sym_string, - ACTIONS(2394), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2392), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182519,17 +183756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152650] = 5, + [153694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7947), 1, + ACTIONS(7823), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182539,17 +183776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152675] = 5, + [153719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7963), 1, + ACTIONS(3993), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(2468), 1, + sym_string, + ACTIONS(3995), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(3991), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182559,17 +183796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152700] = 5, + [153744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7907), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8246), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182579,17 +183816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152725] = 5, + [153769] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7919), 1, + ACTIONS(5763), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(3139), 1, + sym_string, + ACTIONS(5765), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(5761), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182599,17 +183836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152750] = 5, + [153794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8216), 1, + ACTIONS(8248), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182619,17 +183856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152775] = 5, + [153819] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8218), 1, + ACTIONS(5132), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(3105), 1, + sym_string, + ACTIONS(5134), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(5130), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182639,17 +183876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152800] = 5, + [153844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8220), 1, + ACTIONS(8010), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182659,17 +183896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152825] = 5, + [153869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8250), 1, anon_sym_DQUOTE, - STATE(372), 1, - sym_string, - ACTIONS(1151), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1147), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182679,17 +183916,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152850] = 5, + [153894] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8222), 1, + ACTIONS(8252), 1, + aux_sym_concatenation_token1, + ACTIONS(8255), 1, + sym__concat, + STATE(3415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1183), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [153921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(1244), 1, + sym_string, + ACTIONS(2451), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2449), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182699,17 +183957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152875] = 5, + [153946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 1, + ACTIONS(7970), 1, anon_sym_DQUOTE, - STATE(3110), 1, - sym_string, - ACTIONS(5152), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5148), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182719,17 +183977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152900] = 5, + [153971] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 1, + ACTIONS(2675), 1, anon_sym_DQUOTE, - STATE(626), 1, + STATE(1496), 1, sym_string, - ACTIONS(1819), 2, + ACTIONS(2677), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1817), 9, + ACTIONS(2673), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182739,17 +183997,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152925] = 5, + [153996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7931), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8258), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182759,17 +184017,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152950] = 5, + [154021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(8056), 1, + aux_sym_concatenation_token1, + ACTIONS(8260), 1, + sym__concat, + STATE(3415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1177), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [154048] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8262), 1, anon_sym_DQUOTE, - STATE(842), 1, - sym_string, - ACTIONS(2085), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2083), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182779,17 +184058,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [152975] = 5, + [154073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1137), 1, + ACTIONS(8056), 1, + aux_sym_concatenation_token1, + ACTIONS(8264), 1, + sym__concat, + STATE(3415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1171), 8, + anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [154100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2424), 1, anon_sym_DQUOTE, - STATE(332), 1, + STATE(1093), 1, sym_string, - ACTIONS(1139), 2, + ACTIONS(2426), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1135), 9, + ACTIONS(2422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182799,17 +184099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153000] = 5, + [154125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7915), 1, + ACTIONS(7978), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182819,17 +184119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153025] = 5, + [154150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7851), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8266), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182839,17 +184139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153050] = 5, + [154175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7927), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8268), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182859,17 +184159,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153075] = 5, + [154200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8224), 1, + ACTIONS(8002), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182879,17 +184179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153100] = 5, + [154225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8226), 1, + ACTIONS(8270), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182899,17 +184199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153125] = 5, + [154250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8228), 1, + ACTIONS(4187), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(2467), 1, + sym_string, + ACTIONS(4189), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(4185), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182919,17 +184219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153150] = 5, + [154275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7911), 1, + ACTIONS(7942), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182939,17 +184239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153175] = 5, + [154300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - STATE(934), 1, + STATE(394), 1, sym_string, - ACTIONS(2374), 2, + ACTIONS(1165), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2372), 9, + ACTIONS(1161), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182959,17 +184259,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153200] = 5, + [154325] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8230), 1, + ACTIONS(2360), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(1196), 1, + sym_string, + ACTIONS(2362), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2358), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182979,17 +184279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153225] = 5, + [154350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8232), 1, + ACTIONS(2208), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(1215), 1, + sym_string, + ACTIONS(2455), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2453), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -182999,17 +184299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153250] = 5, + [154375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, + ACTIONS(7950), 1, anon_sym_DQUOTE, - STATE(1179), 1, - sym_string, - ACTIONS(2519), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2517), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183019,17 +184319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153275] = 5, + [154400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7887), 1, + ACTIONS(8154), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183039,17 +184339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153300] = 5, + [154425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8272), 1, anon_sym_DQUOTE, - STATE(2376), 1, - sym_string, - ACTIONS(4121), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4117), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183059,17 +184359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153325] = 5, + [154450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(7954), 1, anon_sym_DQUOTE, - STATE(1722), 1, - sym_string, - ACTIONS(3003), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2999), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183079,17 +184379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153350] = 5, + [154475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7859), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183099,17 +184399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153375] = 5, + [154500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7867), 1, + ACTIONS(7811), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183119,17 +184419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153400] = 5, + [154525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8234), 1, + ACTIONS(8276), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183139,17 +184439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153425] = 5, + [154550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7855), 1, + ACTIONS(1793), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(957), 1, + sym_string, + ACTIONS(2400), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2398), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183159,17 +184459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153450] = 5, + [154575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8236), 1, + ACTIONS(8278), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183179,17 +184479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153475] = 5, + [154600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8238), 1, + ACTIONS(8280), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183199,17 +184499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153500] = 5, + [154625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(2105), 1, anon_sym_DQUOTE, - STATE(828), 1, + STATE(972), 1, sym_string, - ACTIONS(2198), 2, + ACTIONS(2404), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2196), 9, + ACTIONS(2402), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183219,17 +184519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153525] = 5, + [154650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7863), 1, + ACTIONS(8006), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183239,17 +184539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153550] = 5, + [154675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8240), 1, + ACTIONS(5262), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(3082), 1, + sym_string, + ACTIONS(5264), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(5260), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183259,17 +184559,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153575] = 5, + [154700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2196), 1, anon_sym_DQUOTE, - STATE(1524), 1, + STATE(950), 1, sym_string, - ACTIONS(2730), 2, + ACTIONS(2198), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2726), 9, + ACTIONS(2194), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183279,17 +184579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153600] = 5, + [154725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(1592), 1, + sym_string, + ACTIONS(2947), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2943), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183299,17 +184599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153625] = 5, + [154750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7827), 1, + ACTIONS(7915), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183319,17 +184619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153650] = 5, + [154775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8242), 1, + ACTIONS(8282), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183339,17 +184639,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153675] = 5, + [154800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 1, + ACTIONS(7891), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183359,17 +184659,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153700] = 5, + [154825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(7831), 1, anon_sym_DQUOTE, - STATE(824), 1, - sym_string, - ACTIONS(2089), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2087), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183379,17 +184679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153725] = 5, + [154850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8284), 1, anon_sym_DQUOTE, - STATE(3079), 1, - sym_string, - ACTIONS(5190), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5186), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183399,17 +184699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153750] = 5, + [154875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7823), 1, + ACTIONS(7859), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183419,17 +184719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153775] = 5, + [154900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(3009), 1, anon_sym_DQUOTE, - STATE(1540), 1, + STATE(1637), 1, sym_string, - ACTIONS(2959), 2, + ACTIONS(3011), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2955), 9, + ACTIONS(3007), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183439,17 +184739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153800] = 5, + [154925] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 1, + ACTIONS(7899), 1, anon_sym_DQUOTE, - STATE(1227), 1, - sym_string, - ACTIONS(2390), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2386), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183459,38 +184759,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153825] = 6, + [154950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8244), 1, - aux_sym_concatenation_token1, - ACTIONS(8247), 1, - sym__concat, - STATE(3444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [153852] = 5, + ACTIONS(322), 1, + anon_sym_DQUOTE, + STATE(1382), 1, + sym_string, + ACTIONS(2892), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2890), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [154975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, + ACTIONS(1507), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(620), 1, + sym_string, + ACTIONS(1781), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(1779), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183500,17 +184799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153877] = 5, + [155000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8250), 1, + ACTIONS(8286), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183520,17 +184819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153902] = 5, + [155025] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8288), 1, anon_sym_DQUOTE, - STATE(930), 1, - sym_string, - ACTIONS(2204), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2200), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183540,17 +184839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153927] = 5, + [155050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8290), 1, anon_sym_DQUOTE, - STATE(2381), 1, - sym_string, - ACTIONS(3910), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3906), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183560,17 +184859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153952] = 5, + [155075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7951), 1, + ACTIONS(8174), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183580,17 +184879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [153977] = 5, + [155100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8252), 1, + ACTIONS(7298), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + STATE(3493), 1, + sym_string, + ACTIONS(7300), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(7296), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183600,17 +184899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [154002] = 5, + [155125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7787), 1, - anon_sym_DQUOTE, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8162), 2, + ACTIONS(8292), 1, + anon_sym_DQUOTE, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183620,14 +184919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [154027] = 5, + [155150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(1707), 1, anon_sym_DQUOTE, - STATE(1100), 1, + STATE(985), 1, sym_string, - ACTIONS(2380), 2, + ACTIONS(2378), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(2376), 9, @@ -183640,17 +184939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [154052] = 5, + [155175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7795), 1, + ACTIONS(1473), 1, anon_sym_DQUOTE, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, + STATE(900), 1, + sym_string, + ACTIONS(2192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(2190), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183660,17 +184959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [154077] = 5, + [155200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8254), 1, + ACTIONS(8054), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183680,59 +184979,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [154102] = 6, + [155225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, - aux_sym_concatenation_token1, - ACTIONS(8256), 1, - sym__concat, - STATE(3444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1184), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [154129] = 6, + ACTIONS(7863), 1, + anon_sym_DQUOTE, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8192), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [155250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, - aux_sym_concatenation_token1, - ACTIONS(8258), 1, - sym__concat, - STATE(3444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1190), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [154156] = 5, + ACTIONS(2001), 1, + anon_sym_DQUOTE, + STATE(872), 1, + sym_string, + ACTIONS(2091), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2089), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [155275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7183), 1, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8294), 1, anon_sym_DQUOTE, - STATE(3461), 1, - sym_string, - ACTIONS(7185), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7181), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183742,17 +185039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [154181] = 5, + [155300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, + ACTIONS(8194), 1, sym__string_content, - ACTIONS(8260), 1, + ACTIONS(8296), 1, anon_sym_DQUOTE, - ACTIONS(8162), 2, + ACTIONS(8196), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, + ACTIONS(8192), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -183762,33 +185059,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [154206] = 5, + [155325] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, - sym_file_descriptor, - ACTIONS(8262), 1, - aux_sym_heredoc_redirect_token1, - STATE(3462), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [154230] = 3, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8192), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [155350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 3, + ACTIONS(1221), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1238), 9, + ACTIONS(1219), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183798,34 +185096,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154250] = 3, + [155370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1210), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 9, - anon_sym_GT_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - aux_sym_concatenation_token1, - [154270] = 5, + ACTIONS(8194), 1, + sym__string_content, + ACTIONS(8196), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8192), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [155392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8267), 1, + ACTIONS(7777), 1, sym_file_descriptor, - STATE(3462), 2, + ACTIONS(8298), 1, + aux_sym_heredoc_redirect_token1, + STATE(3476), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(8264), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183834,17 +185133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154294] = 5, + [155416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, - sym_file_descriptor, - ACTIONS(8270), 1, + ACTIONS(7006), 1, aux_sym_heredoc_redirect_token1, - STATE(3462), 2, + ACTIONS(8303), 1, + sym_file_descriptor, + STATE(3476), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(8300), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183853,14 +185152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154318] = 3, + [155440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1207), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 9, + ACTIONS(1205), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183870,14 +185169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154338] = 3, + [155460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 3, + ACTIONS(1253), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 9, + ACTIONS(1251), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183887,14 +185186,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154358] = 3, + [155480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1262), 9, + ACTIONS(1243), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183904,17 +185203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154378] = 5, + [155500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8272), 1, + ACTIONS(8306), 1, sym__special_character, - STATE(3490), 1, + STATE(3480), 1, aux_sym__literal_repeat1, - ACTIONS(3062), 2, + ACTIONS(1275), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3060), 8, + ACTIONS(1273), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183923,17 +185222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154402] = 5, + [155524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7777), 1, sym_file_descriptor, - ACTIONS(8274), 1, + ACTIONS(8309), 1, aux_sym_heredoc_redirect_token1, - STATE(3462), 2, + STATE(3476), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183942,14 +185241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154426] = 3, + [155548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 3, + ACTIONS(1237), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1254), 9, + ACTIONS(1235), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183959,14 +185258,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154446] = 3, + [155568] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8313), 1, + anon_sym_LPAREN, + ACTIONS(8315), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8317), 1, + aux_sym_number_token1, + ACTIONS(8319), 1, + aux_sym_number_token2, + ACTIONS(8321), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8323), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8311), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3953), 4, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_number, + sym_expansion, + [155600] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 3, + ACTIONS(7777), 1, sym_file_descriptor, - sym__concat, + ACTIONS(8325), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1250), 9, + STATE(3476), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183975,18 +185300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - aux_sym_concatenation_token1, - [154466] = 5, + [155624] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(8327), 1, + sym__special_character, + STATE(3480), 1, + aux_sym__literal_repeat1, + ACTIONS(2997), 2, sym_file_descriptor, - ACTIONS(8276), 1, aux_sym_heredoc_redirect_token1, - STATE(3462), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(2995), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -183995,37 +185319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154490] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8280), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8284), 1, - aux_sym_number_token1, - ACTIONS(8286), 1, - aux_sym_number_token2, - ACTIONS(8288), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8290), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8278), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(3912), 4, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_number, - sym_expansion, - [154522] = 3, + [155648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 3, + ACTIONS(1207), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 9, + ACTIONS(1205), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184035,14 +185336,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154542] = 3, + [155668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 3, + ACTIONS(1217), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 9, + ACTIONS(1215), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184052,14 +185353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154562] = 3, + [155688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 3, + ACTIONS(8327), 1, + sym__special_character, + STATE(3480), 1, + aux_sym__literal_repeat1, + ACTIONS(3065), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1246), 9, + ACTIONS(3063), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184068,18 +185372,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - aux_sym_concatenation_token1, - [154582] = 5, + [155712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8272), 1, - sym__special_character, - STATE(3490), 1, - aux_sym__literal_repeat1, - ACTIONS(3042), 2, + ACTIONS(1225), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(3040), 8, + ACTIONS(1223), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184088,14 +185388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154606] = 3, + aux_sym_concatenation_token1, + [155732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 3, + ACTIONS(1261), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1200), 9, + ACTIONS(1259), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184105,14 +185406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154626] = 3, + [155752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 3, + ACTIONS(1265), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1204), 9, + ACTIONS(1263), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184122,32 +185423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8160), 1, - sym__string_content, - ACTIONS(8162), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8156), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [154668] = 3, + [155772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 3, + ACTIONS(7777), 1, sym_file_descriptor, - sym__concat, + ACTIONS(8329), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 9, + STATE(3476), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184156,18 +185442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - aux_sym_concatenation_token1, - [154688] = 5, + [155796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(1203), 3, sym_file_descriptor, - ACTIONS(8292), 1, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(3462), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(1201), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184176,14 +185458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154712] = 3, + aux_sym_concatenation_token1, + [155816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1222), 3, + ACTIONS(1257), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 9, + ACTIONS(1255), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184193,17 +185476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154732] = 5, + [155836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(1185), 3, sym_file_descriptor, - ACTIONS(8294), 1, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(3462), 2, - sym_file_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(1183), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184212,17 +185492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154756] = 5, + aux_sym_concatenation_token1, + [155856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7777), 1, sym_file_descriptor, - ACTIONS(8296), 1, + ACTIONS(8331), 1, aux_sym_heredoc_redirect_token1, - STATE(3462), 2, + STATE(3476), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184231,14 +185512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154780] = 3, + [155880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1212), 9, + ACTIONS(1267), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184248,14 +185529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154800] = 3, + [155900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 3, + ACTIONS(1249), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1196), 9, + ACTIONS(1247), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184265,14 +185546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154820] = 3, + [155920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 3, + ACTIONS(1229), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1216), 9, + ACTIONS(1227), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184282,14 +185563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154840] = 3, + [155940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 9, + ACTIONS(1239), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184299,14 +185580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, anon_sym_GT_PIPE, aux_sym_concatenation_token1, - [154860] = 3, + [155960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(7777), 1, sym_file_descriptor, - sym__concat, + ACTIONS(8333), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1270), 9, + STATE(3476), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184315,18 +185599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - aux_sym_concatenation_token1, - [154880] = 5, + [155984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8298), 1, - sym__special_character, - STATE(3490), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 2, + ACTIONS(1233), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 8, + ACTIONS(1231), 9, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184335,17 +185615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154904] = 5, + aux_sym_concatenation_token1, + [156004] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7777), 1, sym_file_descriptor, - ACTIONS(8301), 1, + ACTIONS(8335), 1, aux_sym_heredoc_redirect_token1, - STATE(3462), 2, + STATE(3476), 2, sym_file_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(7731), 8, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184354,48 +185635,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154928] = 3, + [156028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8305), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8303), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [154947] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8307), 1, - anon_sym_LT_LT, - ACTIONS(8313), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8315), 1, - anon_sym_LT_LT_LT, - ACTIONS(8311), 3, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 9, + anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8309), 5, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [154972] = 3, + aux_sym_concatenation_token1, + [156048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 2, + ACTIONS(7777), 1, sym_file_descriptor, + ACTIONS(8337), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 9, + STATE(3476), 2, + sym_file_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(7771), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184404,157 +185671,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym__special_character, - [154991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8319), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8317), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [155010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7729), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7727), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [155029] = 6, + [156072] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8307), 1, + ACTIONS(8339), 1, anon_sym_LT_LT, - ACTIONS(8313), 1, + ACTIONS(8345), 1, anon_sym_LT_LT_DASH, - ACTIONS(8325), 1, + ACTIONS(8347), 1, anon_sym_LT_LT_LT, - ACTIONS(8323), 3, + ACTIONS(8343), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8321), 5, + ACTIONS(8341), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155054] = 3, - ACTIONS(3), 1, + [156097] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8329), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8327), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [155073] = 6, + ACTIONS(8349), 1, + anon_sym_RBRACE3, + ACTIONS(8351), 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, + [156116] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8307), 1, + ACTIONS(8353), 1, anon_sym_LT_LT, - ACTIONS(8313), 1, + ACTIONS(8359), 1, anon_sym_LT_LT_DASH, - ACTIONS(8335), 1, + ACTIONS(8361), 1, anon_sym_LT_LT_LT, - ACTIONS(8333), 3, + ACTIONS(8357), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8331), 5, + ACTIONS(8355), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155098] = 9, + [156141] = 9, ACTIONS(63), 1, sym_comment, - ACTIONS(8337), 1, + ACTIONS(8363), 1, anon_sym_DOLLAR, - ACTIONS(8339), 1, + ACTIONS(8365), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8341), 1, + ACTIONS(8367), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8343), 1, + ACTIONS(8369), 1, anon_sym_BQUOTE, - ACTIONS(8345), 1, + ACTIONS(8371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8347), 1, + ACTIONS(8373), 1, sym__heredoc_body_middle, - ACTIONS(8349), 1, + ACTIONS(8375), 1, sym_heredoc_end, - STATE(3507), 4, + STATE(3513), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [155129] = 3, + [156172] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8351), 1, - anon_sym_RBRACE3, - ACTIONS(8353), 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, - [155148] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8355), 1, + ACTIONS(8339), 1, anon_sym_LT_LT, - ACTIONS(8361), 1, + ACTIONS(8345), 1, anon_sym_LT_LT_DASH, - ACTIONS(8363), 1, + ACTIONS(8381), 1, anon_sym_LT_LT_LT, - ACTIONS(8359), 3, + ACTIONS(8379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8357), 5, + ACTIONS(8377), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155173] = 3, + [156197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8367), 2, + ACTIONS(8385), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8365), 9, + ACTIONS(8383), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -184564,54 +185782,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [155192] = 9, + [156216] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8337), 1, + ACTIONS(8387), 1, + anon_sym_LT_LT, + ACTIONS(8393), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8395), 1, + anon_sym_LT_LT_LT, + ACTIONS(8391), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8389), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [156241] = 9, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8363), 1, anon_sym_DOLLAR, - ACTIONS(8339), 1, + ACTIONS(8365), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8341), 1, + ACTIONS(8367), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8343), 1, + ACTIONS(8369), 1, anon_sym_BQUOTE, - ACTIONS(8345), 1, + ACTIONS(8371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8369), 1, + ACTIONS(8397), 1, sym__heredoc_body_middle, - ACTIONS(8371), 1, + ACTIONS(8399), 1, sym_heredoc_end, - STATE(3500), 4, + STATE(3521), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [155223] = 6, + [156272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8403), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8401), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [156291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8407), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8405), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [156310] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8355), 1, + ACTIONS(8353), 1, anon_sym_LT_LT, - ACTIONS(8361), 1, + ACTIONS(8359), 1, anon_sym_LT_LT_DASH, - ACTIONS(8377), 1, + ACTIONS(8413), 1, anon_sym_LT_LT_LT, - ACTIONS(8375), 3, + ACTIONS(8411), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8373), 5, + ACTIONS(8409), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155248] = 3, + [156335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8381), 2, + ACTIONS(8417), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8379), 9, + ACTIONS(8415), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -184621,35 +185890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [155267] = 9, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8383), 1, - anon_sym_DOLLAR, - ACTIONS(8386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8389), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8392), 1, - anon_sym_BQUOTE, - ACTIONS(8395), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8398), 1, - sym__heredoc_body_middle, - ACTIONS(8401), 1, - sym_heredoc_end, - STATE(3507), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [155298] = 3, + [156354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 2, + ACTIONS(8421), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8403), 9, + ACTIONS(8419), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -184659,88 +185906,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [155317] = 6, + [156373] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8407), 1, + ACTIONS(8339), 1, anon_sym_LT_LT, - ACTIONS(8413), 1, + ACTIONS(8345), 1, anon_sym_LT_LT_DASH, - ACTIONS(8415), 1, + ACTIONS(8427), 1, anon_sym_LT_LT_LT, - ACTIONS(8411), 3, + ACTIONS(8425), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8409), 5, + ACTIONS(8423), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [156398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1167), 9, anon_sym_GT_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155342] = 6, + sym__special_character, + [156417] = 9, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8429), 1, + anon_sym_DOLLAR, + ACTIONS(8432), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8435), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8438), 1, + anon_sym_BQUOTE, + ACTIONS(8441), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8444), 1, + sym__heredoc_body_middle, + ACTIONS(8447), 1, + sym_heredoc_end, + STATE(3521), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [156448] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8307), 1, + ACTIONS(8449), 1, anon_sym_LT_LT, - ACTIONS(8313), 1, + ACTIONS(8455), 1, anon_sym_LT_LT_DASH, - ACTIONS(8421), 1, + ACTIONS(8457), 1, anon_sym_LT_LT_LT, - ACTIONS(8419), 3, + ACTIONS(8453), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8417), 5, + ACTIONS(8451), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155367] = 6, + [156473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8461), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8459), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [156492] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8423), 1, + ACTIONS(8339), 1, anon_sym_LT_LT, - ACTIONS(8429), 1, + ACTIONS(8345), 1, anon_sym_LT_LT_DASH, - ACTIONS(8431), 1, + ACTIONS(8467), 1, anon_sym_LT_LT_LT, - ACTIONS(8427), 3, + ACTIONS(8465), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8425), 5, + ACTIONS(8463), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155392] = 6, + [156517] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8307), 1, + ACTIONS(8339), 1, anon_sym_LT_LT, - ACTIONS(8313), 1, + ACTIONS(8345), 1, anon_sym_LT_LT_DASH, - ACTIONS(8437), 1, + ACTIONS(8473), 1, anon_sym_LT_LT_LT, - ACTIONS(8435), 3, + ACTIONS(8471), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8433), 5, + ACTIONS(8469), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155417] = 3, + [156542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7769), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7767), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [156561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 1, + ACTIONS(1207), 1, sym__concat, - ACTIONS(1254), 9, + ACTIONS(1205), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184750,60 +186067,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155435] = 7, + [156579] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, + ACTIONS(5222), 1, anon_sym_DQUOTE, - ACTIONS(5102), 1, + ACTIONS(5230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7652), 1, + ACTIONS(7687), 1, anon_sym_DOLLAR, - ACTIONS(8441), 1, + ACTIONS(8477), 1, sym__comment_word, - ACTIONS(8439), 3, + ACTIONS(8475), 3, sym_variable_name, sym_raw_string, sym_word, - STATE(3900), 3, + STATE(3827), 3, sym_string, sym_simple_expansion, sym_expansion, - [155461] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8353), 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, - [155477] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8445), 1, - sym__concat, - ACTIONS(8443), 9, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [155495] = 3, + [156605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 1, + ACTIONS(1207), 1, sym__concat, - ACTIONS(1204), 9, + ACTIONS(1205), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184813,13 +186101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155513] = 3, + [156623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 2, + ACTIONS(3069), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3044), 8, + ACTIONS(3067), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184828,12 +186116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155531] = 3, + [156641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(1249), 1, sym__concat, - ACTIONS(1266), 9, + ACTIONS(1247), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184843,12 +186131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155549] = 3, + [156659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 1, + ACTIONS(1233), 1, sym__concat, - ACTIONS(1262), 9, + ACTIONS(1231), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184858,13 +186146,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155567] = 3, + [156677] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8351), 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, + [156693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 2, + ACTIONS(3005), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3034), 8, + ACTIONS(3003), 8, anon_sym_GT_GT, anon_sym_LT, anon_sym_GT, @@ -184873,12 +186175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155585] = 3, + [156711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8447), 1, + ACTIONS(1229), 1, sym__concat, - ACTIONS(8131), 9, + ACTIONS(1227), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184888,12 +186190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155603] = 3, + [156729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 1, + ACTIONS(1225), 1, sym__concat, - ACTIONS(1200), 9, + ACTIONS(1223), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184903,12 +186205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155621] = 3, + [156747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 1, + ACTIONS(1237), 1, sym__concat, - ACTIONS(1250), 9, + ACTIONS(1235), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184918,12 +186220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155639] = 3, + [156765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(8479), 1, sym__concat, - ACTIONS(1242), 9, + ACTIONS(7923), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184933,12 +186235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155657] = 3, + [156783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 1, + ACTIONS(8483), 1, sym__concat, - ACTIONS(1246), 9, + ACTIONS(8481), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184948,12 +186250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155675] = 3, + [156801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(1217), 1, sym__concat, - ACTIONS(1242), 9, + ACTIONS(1215), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184963,10 +186265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155693] = 2, + [156819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8449), 9, + ACTIONS(1241), 1, + sym__concat, + ACTIONS(1239), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -184976,29 +186280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155708] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8284), 1, - aux_sym_number_token1, - ACTIONS(8286), 1, - aux_sym_number_token2, - ACTIONS(8451), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8453), 1, - anon_sym_RBRACE3, - ACTIONS(8455), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8278), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(4208), 2, - sym_arithmetic_expansion, - sym_number, - [155735] = 2, + [156837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8131), 9, + ACTIONS(8485), 9, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR, @@ -185008,433 +186293,453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [155750] = 6, + [156852] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(8317), 1, + aux_sym_number_token1, + ACTIONS(8319), 1, + aux_sym_number_token2, + ACTIONS(8487), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(8457), 1, - aux_sym_concatenation_token1, - ACTIONS(8459), 1, - sym__concat, - STATE(3532), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1180), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [155773] = 6, + ACTIONS(8489), 1, + anon_sym_RBRACE3, + ACTIONS(8491), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(8311), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(4035), 2, + sym_arithmetic_expansion, + sym_number, + [156879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 1, + ACTIONS(1169), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(8457), 1, + ACTIONS(8493), 1, aux_sym_concatenation_token1, - ACTIONS(8461), 1, + ACTIONS(8495), 1, sym__concat, - STATE(3555), 1, + STATE(3571), 1, aux_sym_concatenation_repeat1, - ACTIONS(1184), 4, + ACTIONS(1167), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [155795] = 7, + sym__special_character, + [156902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8457), 1, - aux_sym_concatenation_token1, - ACTIONS(8459), 1, - sym__concat, - ACTIONS(8463), 1, - anon_sym_in, - ACTIONS(8467), 1, - aux_sym_heredoc_redirect_token1, - STATE(3532), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8465), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [155819] = 3, + ACTIONS(7923), 9, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [156917] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8471), 3, + ACTIONS(8343), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8469), 5, + ACTIONS(8341), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155835] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8457), 1, - aux_sym_concatenation_token1, - ACTIONS(8459), 1, - sym__concat, - ACTIONS(8473), 1, - anon_sym_in, - ACTIONS(8477), 1, - aux_sym_heredoc_redirect_token1, - STATE(3532), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8475), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [155859] = 7, - ACTIONS(3), 1, + [156933] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8457), 1, - aux_sym_concatenation_token1, - ACTIONS(8459), 1, - sym__concat, - ACTIONS(8479), 1, - anon_sym_in, - ACTIONS(8483), 1, - aux_sym_heredoc_redirect_token1, - STATE(3541), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8481), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [155883] = 7, - ACTIONS(3), 1, + ACTIONS(8357), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8355), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [156949] = 3, + ACTIONS(63), 1, sym_comment, - ACTIONS(8457), 1, - aux_sym_concatenation_token1, - ACTIONS(8459), 1, - sym__concat, - ACTIONS(8485), 1, - anon_sym_in, - ACTIONS(8489), 1, - aux_sym_heredoc_redirect_token1, - STATE(3541), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8487), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [155907] = 7, + ACTIONS(8411), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(8409), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [156965] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8457), 1, + ACTIONS(8493), 1, aux_sym_concatenation_token1, - ACTIONS(8459), 1, + ACTIONS(8495), 1, sym__concat, - ACTIONS(8491), 1, + ACTIONS(8497), 1, anon_sym_in, - ACTIONS(8495), 1, + ACTIONS(8501), 1, aux_sym_heredoc_redirect_token1, - STATE(3532), 1, + STATE(3570), 1, aux_sym_concatenation_repeat1, - ACTIONS(8493), 3, + ACTIONS(8499), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [155931] = 3, + [156989] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8499), 3, + ACTIONS(8379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8497), 5, + ACTIONS(8377), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155947] = 3, + [157005] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8503), 3, + ACTIONS(8505), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8501), 5, + ACTIONS(8503), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [155963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1192), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8457), 1, - aux_sym_concatenation_token1, - ACTIONS(8505), 1, - sym__concat, - STATE(3555), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1190), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [155985] = 3, + [157021] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8435), 3, + ACTIONS(8509), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8433), 5, + ACTIONS(8507), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156001] = 3, + [157037] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8323), 3, + ACTIONS(8513), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8321), 5, + ACTIONS(8511), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156017] = 3, + [157053] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8311), 3, + ACTIONS(8471), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8309), 5, + ACTIONS(8469), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156033] = 3, + [157069] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8493), 1, + aux_sym_concatenation_token1, + ACTIONS(8495), 1, + sym__concat, + ACTIONS(8515), 1, + anon_sym_in, + ACTIONS(8519), 1, + aux_sym_heredoc_redirect_token1, + STATE(3570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8517), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [157093] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8427), 3, + ACTIONS(8523), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8425), 5, + ACTIONS(8521), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156049] = 3, + [157109] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8333), 3, + ACTIONS(8453), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8331), 5, + ACTIONS(8451), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156065] = 3, + [157125] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8509), 3, + ACTIONS(8391), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8507), 5, + ACTIONS(8389), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156081] = 3, + [157141] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8527), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8511), 5, + ACTIONS(8525), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156097] = 3, + [157157] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8493), 1, + aux_sym_concatenation_token1, + ACTIONS(8495), 1, + sym__concat, + ACTIONS(8529), 1, + anon_sym_in, + ACTIONS(8533), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8531), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [157181] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8411), 3, + ACTIONS(8537), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8409), 5, + ACTIONS(8535), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156113] = 3, + [157197] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8493), 1, + aux_sym_concatenation_token1, + ACTIONS(8495), 1, + sym__concat, + ACTIONS(8539), 1, + anon_sym_in, + ACTIONS(8543), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8541), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [157221] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8547), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8515), 5, + ACTIONS(8545), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156129] = 3, + [157237] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8493), 1, + aux_sym_concatenation_token1, + ACTIONS(8495), 1, + sym__concat, + ACTIONS(8549), 1, + anon_sym_in, + ACTIONS(8553), 1, + aux_sym_heredoc_redirect_token1, + STATE(3571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8551), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [157261] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8419), 3, + ACTIONS(8557), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8417), 5, + ACTIONS(8555), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156145] = 3, + [157277] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8561), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8357), 5, + ACTIONS(8559), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156161] = 3, + [157293] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8521), 3, + ACTIONS(8465), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8519), 5, + ACTIONS(8463), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156177] = 3, + [157309] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8375), 3, + ACTIONS(8425), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8373), 5, + ACTIONS(8423), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156193] = 6, + [157325] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8493), 1, + aux_sym_concatenation_token1, + ACTIONS(8495), 1, + sym__concat, + ACTIONS(8563), 1, + anon_sym_in, + ACTIONS(8567), 1, + aux_sym_heredoc_redirect_token1, + STATE(3570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8565), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [157349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 1, + ACTIONS(1179), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(8523), 1, + ACTIONS(8493), 1, aux_sym_concatenation_token1, - ACTIONS(8526), 1, + ACTIONS(8569), 1, sym__concat, - STATE(3555), 1, + STATE(3573), 1, aux_sym_concatenation_repeat1, - ACTIONS(1170), 4, + ACTIONS(1177), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [156215] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8531), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8529), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [156231] = 3, - ACTIONS(63), 1, + [157371] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(8535), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8533), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [156247] = 3, + ACTIONS(1173), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8493), 1, + aux_sym_concatenation_token1, + ACTIONS(8571), 1, + sym__concat, + STATE(3573), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1171), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [157393] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8539), 3, + ACTIONS(8575), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(8537), 5, + ACTIONS(8573), 5, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [156263] = 7, + [157409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8457), 1, + ACTIONS(1185), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8577), 1, aux_sym_concatenation_token1, - ACTIONS(8459), 1, + ACTIONS(8580), 1, sym__concat, - ACTIONS(8541), 1, - anon_sym_in, - ACTIONS(8545), 1, - aux_sym_heredoc_redirect_token1, - STATE(3541), 1, + STATE(3573), 1, aux_sym_concatenation_repeat1, - ACTIONS(8543), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [156287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1270), 5, + ACTIONS(1183), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_concatenation_token1, - [156302] = 6, + [157431] = 6, ACTIONS(63), 1, sym_comment, ACTIONS(479), 1, @@ -185443,25 +186748,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8547), 1, + ACTIONS(8583), 1, anon_sym_LPAREN, - STATE(2730), 3, + STATE(2817), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156323] = 3, + [157452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1243), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [157467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1263), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [157482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 2, + ACTIONS(1225), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1262), 5, + ACTIONS(1223), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156338] = 6, + [157497] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185470,28 +186799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(3135), 3, + STATE(3161), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156359] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8473), 1, - anon_sym_in, - ACTIONS(8477), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8551), 1, - sym__special_character, - STATE(3583), 1, - aux_sym__literal_repeat1, - ACTIONS(8475), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [156380] = 6, + [157518] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185500,13 +186814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8587), 1, anon_sym_LPAREN, - STATE(3123), 3, + STATE(3137), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156401] = 6, + [157539] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185515,13 +186829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8553), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(3137), 3, + STATE(2895), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156422] = 6, + [157560] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185530,13 +186844,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(2886), 3, + STATE(3155), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156443] = 6, + [157581] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185545,28 +186859,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(2865), 3, + STATE(2884), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156464] = 6, + [157602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8491), 1, + ACTIONS(1217), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1215), 5, anon_sym_in, - ACTIONS(8495), 1, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [157617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1207), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(8551), 1, - sym__special_character, - STATE(3583), 1, - aux_sym__literal_repeat1, - ACTIONS(8493), 3, + ACTIONS(1205), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [156485] = 6, + aux_sym_concatenation_token1, + [157632] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185575,25 +186898,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8555), 1, + ACTIONS(8589), 1, anon_sym_LPAREN, - STATE(2874), 3, + STATE(2883), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156506] = 3, + [157653] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1246), 1, + ACTIONS(1227), 1, anon_sym_DOLLAR, - ACTIONS(1248), 6, + ACTIONS(1229), 6, sym__heredoc_body_middle, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [156521] = 6, + [157668] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185602,13 +186925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(2942), 3, + STATE(2936), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156542] = 6, + [157689] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185617,13 +186940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(2893), 3, + STATE(2932), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156563] = 6, + [157710] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185632,37 +186955,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8557), 1, + ACTIONS(8591), 1, anon_sym_LPAREN, - STATE(2896), 3, + STATE(2908), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156584] = 3, + [157731] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 1, + ACTIONS(1231), 1, anon_sym_DOLLAR, - ACTIONS(1244), 6, + ACTIONS(1233), 6, sym__heredoc_body_middle, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [156599] = 3, + [157746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1231), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [157761] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1254), 1, + ACTIONS(1215), 1, anon_sym_DOLLAR, - ACTIONS(1256), 6, + ACTIONS(1217), 6, sym__heredoc_body_middle, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [156614] = 6, + [157776] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185671,13 +187006,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(2873), 3, + STATE(2886), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156635] = 6, + [157797] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185686,13 +187021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(2870), 3, + STATE(2887), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156656] = 6, + [157818] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185701,210 +187036,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8559), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - STATE(2877), 3, + STATE(2891), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156677] = 3, + [157839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1275), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8595), 1, + sym__special_character, + STATE(3596), 1, + aux_sym__literal_repeat1, + ACTIONS(1273), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [157858] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1250), 1, + ACTIONS(1205), 1, anon_sym_DOLLAR, - ACTIONS(1252), 6, + ACTIONS(1207), 6, sym__heredoc_body_middle, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [156692] = 3, + [157873] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(1266), 1, - anon_sym_DOLLAR, - ACTIONS(1268), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [156707] = 3, + ACTIONS(8585), 1, + anon_sym_LPAREN, + STATE(2903), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [157894] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 5, + ACTIONS(8549), 1, anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [156722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1281), 1, + ACTIONS(8553), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(8561), 1, + ACTIONS(8598), 1, sym__special_character, - STATE(3583), 1, + STATE(3596), 1, aux_sym__literal_repeat1, - ACTIONS(1276), 4, - anon_sym_in, + ACTIONS(8551), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [156741] = 3, - ACTIONS(3), 1, + [157915] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1202), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1200), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [156756] = 3, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_LBRACK, + ACTIONS(485), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8583), 1, + anon_sym_LPAREN, + STATE(2740), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [157936] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1235), 1, + anon_sym_DOLLAR, + ACTIONS(1237), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [157951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1218), 2, + ACTIONS(1237), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1216), 5, + ACTIONS(1235), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156771] = 3, + [157966] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(258), 1, + anon_sym_LBRACE, + ACTIONS(262), 1, + anon_sym_LBRACK, + ACTIONS(266), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8600), 1, + anon_sym_LPAREN, + STATE(3175), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [157987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 2, + ACTIONS(1207), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1170), 5, + ACTIONS(1205), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156786] = 3, + [158002] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1242), 1, + ACTIONS(1205), 1, anon_sym_DOLLAR, - ACTIONS(1244), 6, + ACTIONS(1207), 6, sym__heredoc_body_middle, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [156801] = 3, + [158017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1198), 2, + ACTIONS(1261), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1196), 5, + ACTIONS(1259), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156816] = 3, + [158032] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8539), 1, + anon_sym_in, + ACTIONS(8543), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8598), 1, + sym__special_character, + STATE(3596), 1, + aux_sym__literal_repeat1, + ACTIONS(8541), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [158053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 2, + ACTIONS(1257), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1250), 5, + ACTIONS(1255), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156831] = 3, + [158068] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(483), 1, + anon_sym_LBRACK, + ACTIONS(485), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8602), 1, + anon_sym_LPAREN, + STATE(2725), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [158089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 2, + ACTIONS(1185), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1246), 5, + ACTIONS(1183), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156846] = 3, + [158104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 2, + ACTIONS(1221), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1242), 5, + ACTIONS(1219), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156861] = 3, + [158119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1226), 2, + ACTIONS(1241), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1224), 5, + ACTIONS(1239), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156876] = 3, + [158134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1206), 2, + ACTIONS(1229), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1204), 5, + ACTIONS(1227), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156891] = 3, + [158149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1214), 2, + ACTIONS(1269), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1212), 5, + ACTIONS(1267), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156906] = 6, + [158164] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1223), 1, + anon_sym_DOLLAR, + ACTIONS(1225), 6, + sym__heredoc_body_middle, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [158179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, + ACTIONS(8529), 1, anon_sym_in, - ACTIONS(8467), 1, + ACTIONS(8533), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(8551), 1, + ACTIONS(8598), 1, sym__special_character, - STATE(3583), 1, + STATE(3596), 1, aux_sym__literal_repeat1, - ACTIONS(8465), 3, + ACTIONS(8531), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [156927] = 6, + [158200] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -185913,25 +187326,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8564), 1, + ACTIONS(8604), 1, anon_sym_LPAREN, - STATE(2878), 3, + STATE(2894), 3, sym_compound_statement, sym_subshell, sym_test_command, - [156948] = 3, + [158221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 2, + ACTIONS(1203), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1238), 5, + ACTIONS(1201), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [156963] = 6, + [158236] = 6, ACTIONS(63), 1, sym_comment, ACTIONS(258), 1, @@ -185940,103 +187353,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(266), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8566), 1, - anon_sym_LPAREN, - STATE(3161), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [156984] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1222), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1220), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [156999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1210), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1208), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [157014] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8549), 1, + ACTIONS(8606), 1, anon_sym_LPAREN, - STATE(2883), 3, + STATE(3173), 3, sym_compound_statement, sym_subshell, sym_test_command, - [157035] = 6, + [158257] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(262), 1, + ACTIONS(483), 1, anon_sym_LBRACK, - ACTIONS(266), 1, + ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8568), 1, + ACTIONS(8583), 1, anon_sym_LPAREN, - STATE(3157), 3, + STATE(2696), 3, sym_compound_statement, sym_subshell, sym_test_command, - [157056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1256), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1254), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [157071] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1262), 1, - anon_sym_DOLLAR, - ACTIONS(1264), 6, - sym__heredoc_body_middle, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [157086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_concatenation_token1, - [157101] = 6, + [158278] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(33), 1, @@ -186045,13 +187383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(63), 1, sym_comment, - ACTIONS(8549), 1, + ACTIONS(8585), 1, anon_sym_LPAREN, - STATE(2872), 3, + STATE(2881), 3, sym_compound_statement, sym_subshell, sym_test_command, - [157122] = 6, + [158299] = 6, ACTIONS(63), 1, sym_comment, ACTIONS(479), 1, @@ -186060,58 +187398,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8547), 1, + ACTIONS(8583), 1, anon_sym_LPAREN, - STATE(2791), 3, + STATE(2816), 3, sym_compound_statement, sym_subshell, sym_test_command, - [157143] = 6, + [158320] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(258), 1, anon_sym_LBRACE, - ACTIONS(483), 1, + ACTIONS(262), 1, anon_sym_LBRACK, - ACTIONS(485), 1, + ACTIONS(266), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8547), 1, + ACTIONS(8600), 1, anon_sym_LPAREN, - STATE(2795), 3, + STATE(3164), 3, sym_compound_statement, sym_subshell, sym_test_command, - [157164] = 6, - ACTIONS(63), 1, + [158341] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_LBRACE, - ACTIONS(483), 1, - anon_sym_LBRACK, - ACTIONS(485), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8570), 1, - anon_sym_LPAREN, - STATE(2796), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [157185] = 6, - ACTIONS(63), 1, + ACTIONS(1249), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1247), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [158356] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, - anon_sym_LBRACE, - ACTIONS(483), 1, - anon_sym_LBRACK, - ACTIONS(485), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8547), 1, - anon_sym_LPAREN, - STATE(2686), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [157206] = 6, + ACTIONS(1213), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1211), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_concatenation_token1, + [158371] = 6, ACTIONS(63), 1, sym_comment, ACTIONS(479), 1, @@ -186120,10588 +187452,10617 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(485), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8572), 1, - anon_sym_LPAREN, - STATE(2663), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [157227] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(258), 1, - anon_sym_LBRACE, - ACTIONS(262), 1, - anon_sym_LBRACK, - ACTIONS(266), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8568), 1, + ACTIONS(8608), 1, anon_sym_LPAREN, - STATE(3165), 3, + STATE(2807), 3, sym_compound_statement, sym_subshell, sym_test_command, - [157248] = 3, + [158392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1230), 2, + ACTIONS(1253), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1228), 5, + ACTIONS(1251), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, aux_sym_concatenation_token1, - [157263] = 5, + [158407] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8614), 1, + aux_sym_heredoc_redirect_token1, + STATE(2527), 1, + sym__c_terminator, + STATE(3653), 1, + aux_sym__for_body_repeat1, + ACTIONS(8610), 2, + anon_sym_SEMI, + anon_sym_AMP, + [158427] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 1, - sym__special_character, - STATE(3641), 1, + ACTIONS(8616), 1, + anon_sym_RPAREN, + ACTIONS(8618), 1, + anon_sym_PIPE, + STATE(3673), 1, aux_sym_concatenation_repeat1, - ACTIONS(1182), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(8574), 2, + STATE(3920), 1, + aux_sym_case_item_repeat1, + ACTIONS(8620), 2, sym__concat, aux_sym_concatenation_token1, - [157281] = 6, + [158447] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8576), 1, + ACTIONS(8622), 1, anon_sym_fi, - ACTIONS(8578), 1, + ACTIONS(8624), 1, anon_sym_elif, - ACTIONS(8580), 1, + ACTIONS(8626), 1, anon_sym_else, - STATE(4238), 1, + STATE(4129), 1, sym_else_clause, STATE(3702), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [157301] = 6, + [158467] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8630), 1, + aux_sym_heredoc_redirect_token1, + STATE(2337), 1, + sym__c_terminator, + STATE(3635), 1, + aux_sym__for_body_repeat1, + ACTIONS(8628), 2, + anon_sym_SEMI, + anon_sym_AMP, + [158487] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8582), 1, + STATE(3673), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8620), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1169), 3, anon_sym_RPAREN, - ACTIONS(8584), 1, anon_sym_PIPE, - STATE(3696), 1, + sym__special_character, + [158503] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8634), 1, + aux_sym_heredoc_redirect_token1, + STATE(2538), 1, + sym__c_terminator, + STATE(3646), 1, + aux_sym__for_body_repeat1, + ACTIONS(8632), 2, + anon_sym_SEMI, + anon_sym_AMP, + [158523] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8636), 1, + anon_sym_RPAREN, + STATE(3670), 1, aux_sym_concatenation_repeat1, - STATE(3875), 1, + STATE(3900), 1, aux_sym_case_item_repeat1, - ACTIONS(8586), 2, + ACTIONS(8620), 2, sym__concat, aux_sym_concatenation_token1, - [157321] = 6, + [158543] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8640), 1, + aux_sym_heredoc_redirect_token1, + STATE(2295), 1, + sym__c_terminator, + STATE(3701), 1, + aux_sym__for_body_repeat1, + ACTIONS(8638), 2, + anon_sym_SEMI, + anon_sym_AMP, + [158563] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8588), 1, + ACTIONS(8642), 1, anon_sym_RPAREN, - STATE(3700), 1, + STATE(3673), 1, aux_sym_concatenation_repeat1, - STATE(3862), 1, + STATE(3833), 1, aux_sym_case_item_repeat1, - ACTIONS(8586), 2, + ACTIONS(8620), 2, sym__concat, aux_sym_concatenation_token1, - [157341] = 6, + [158583] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8624), 1, anon_sym_elif, - ACTIONS(8580), 1, + ACTIONS(8626), 1, + anon_sym_else, + ACTIONS(8644), 1, + anon_sym_fi, + STATE(4045), 1, + sym_else_clause, + STATE(3702), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [158603] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1167), 1, + sym__special_character, + STATE(3688), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1169), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(8646), 2, + sym__concat, + aux_sym_concatenation_token1, + [158621] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8624), 1, + anon_sym_elif, + ACTIONS(8626), 1, anon_sym_else, - ACTIONS(8590), 1, + ACTIONS(8648), 1, anon_sym_fi, - STATE(4348), 1, + STATE(4316), 1, sym_else_clause, STATE(3702), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [157361] = 6, + [158641] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8592), 1, + ACTIONS(8650), 1, anon_sym_RPAREN, - STATE(3696), 1, + STATE(3673), 1, aux_sym_concatenation_repeat1, - STATE(3789), 1, + STATE(3908), 1, aux_sym_case_item_repeat1, - ACTIONS(8586), 2, + ACTIONS(8620), 2, sym__concat, aux_sym_concatenation_token1, - [157381] = 6, + [158661] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8594), 1, + ACTIONS(8652), 1, anon_sym_RPAREN, - STATE(3700), 1, + STATE(3670), 1, aux_sym_concatenation_repeat1, - STATE(3839), 1, + STATE(3831), 1, + aux_sym_case_item_repeat1, + ACTIONS(8620), 2, + sym__concat, + aux_sym_concatenation_token1, + [158681] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8654), 1, + anon_sym_RPAREN, + STATE(3670), 1, + aux_sym_concatenation_repeat1, + STATE(3815), 1, aux_sym_case_item_repeat1, - ACTIONS(8586), 2, + ACTIONS(8620), 2, sym__concat, aux_sym_concatenation_token1, - [157401] = 6, + [158701] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8624), 1, anon_sym_elif, - ACTIONS(8580), 1, + ACTIONS(8626), 1, anon_sym_else, - ACTIONS(8596), 1, + ACTIONS(8656), 1, anon_sym_fi, - STATE(4035), 1, + STATE(4062), 1, sym_else_clause, STATE(3702), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [157421] = 3, - ACTIONS(3), 1, + [158721] = 6, + ACTIONS(63), 1, sym_comment, - ACTIONS(1182), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1180), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - sym__special_character, - [157435] = 6, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8658), 1, + anon_sym_RPAREN, + STATE(3673), 1, + aux_sym_concatenation_repeat1, + STATE(3883), 1, + aux_sym_case_item_repeat1, + ACTIONS(8620), 2, + sym__concat, + aux_sym_concatenation_token1, + [158741] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8624), 1, anon_sym_elif, - ACTIONS(8580), 1, + ACTIONS(8626), 1, anon_sym_else, - ACTIONS(8598), 1, + ACTIONS(8660), 1, anon_sym_fi, - STATE(4321), 1, + STATE(4288), 1, sym_else_clause, STATE(3702), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [157455] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8602), 1, - anon_sym_COMMA, - ACTIONS(8604), 1, - aux_sym_heredoc_redirect_token1, - STATE(2475), 1, - sym__c_terminator, - STATE(3697), 1, - aux_sym__for_body_repeat1, - ACTIONS(8600), 2, - anon_sym_SEMI, - anon_sym_AMP, - [157475] = 6, + [158761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, + ACTIONS(8612), 1, anon_sym_COMMA, - ACTIONS(8608), 1, + ACTIONS(8664), 1, aux_sym_heredoc_redirect_token1, - STATE(2316), 1, + STATE(2528), 1, sym__c_terminator, - STATE(3636), 1, + STATE(3701), 1, aux_sym__for_body_repeat1, - ACTIONS(8606), 2, + ACTIONS(8662), 2, anon_sym_SEMI, anon_sym_AMP, - [157495] = 6, + [158781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, - anon_sym_COMMA, - ACTIONS(8612), 1, - aux_sym_heredoc_redirect_token1, - STATE(2482), 1, - sym__c_terminator, - STATE(3629), 1, - aux_sym__for_body_repeat1, - ACTIONS(8610), 2, - anon_sym_SEMI, - anon_sym_AMP, - [157515] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(3696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8586), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1182), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - sym__special_character, - [157531] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8614), 1, + ACTIONS(8666), 1, anon_sym_RPAREN, - STATE(3700), 1, - aux_sym_concatenation_repeat1, - STATE(3803), 1, - aux_sym_case_item_repeat1, - ACTIONS(8586), 2, - sym__concat, - aux_sym_concatenation_token1, - [157551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8602), 1, - anon_sym_COMMA, - ACTIONS(8618), 1, - aux_sym_heredoc_redirect_token1, - STATE(2451), 1, - sym__c_terminator, - STATE(3697), 1, - aux_sym__for_body_repeat1, - ACTIONS(8616), 2, - anon_sym_SEMI, - anon_sym_AMP, - [157571] = 6, + ACTIONS(8668), 1, + anon_sym_DQUOTE, + ACTIONS(8670), 1, + sym_raw_string, + ACTIONS(8672), 1, + aux_sym__expansion_regex_token1, + ACTIONS(8674), 1, + sym_regex, + STATE(4211), 1, + sym_string, + [158803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, + ACTIONS(8612), 1, anon_sym_COMMA, - ACTIONS(8622), 1, + ACTIONS(8678), 1, aux_sym_heredoc_redirect_token1, - STATE(2448), 1, + STATE(2589), 1, sym__c_terminator, - STATE(3637), 1, + STATE(3701), 1, aux_sym__for_body_repeat1, - ACTIONS(8620), 2, + ACTIONS(8676), 2, anon_sym_SEMI, anon_sym_AMP, - [157591] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8624), 1, - anon_sym_RPAREN, - STATE(3696), 1, - aux_sym_concatenation_repeat1, - STATE(3802), 1, - aux_sym_case_item_repeat1, - ACTIONS(8586), 2, - sym__concat, - aux_sym_concatenation_token1, - [157611] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8626), 1, - anon_sym_RPAREN, - STATE(3700), 1, - aux_sym_concatenation_repeat1, - STATE(3830), 1, - aux_sym_case_item_repeat1, - ACTIONS(8586), 2, - sym__concat, - aux_sym_concatenation_token1, - [157631] = 6, + [158823] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8628), 1, + ACTIONS(8680), 1, anon_sym_RPAREN, - STATE(3696), 1, + STATE(3670), 1, aux_sym_concatenation_repeat1, - STATE(3829), 1, + STATE(3911), 1, aux_sym_case_item_repeat1, - ACTIONS(8586), 2, + ACTIONS(8620), 2, sym__concat, aux_sym_concatenation_token1, - [157651] = 6, + [158843] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8624), 1, anon_sym_elif, - ACTIONS(8580), 1, + ACTIONS(8626), 1, anon_sym_else, - ACTIONS(8630), 1, + ACTIONS(8682), 1, anon_sym_fi, - STATE(4067), 1, + STATE(4091), 1, sym_else_clause, STATE(3702), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [157671] = 6, + [158863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, - anon_sym_COMMA, - ACTIONS(8634), 1, + ACTIONS(1169), 1, aux_sym_heredoc_redirect_token1, - STATE(2495), 1, - sym__c_terminator, - STATE(3624), 1, - aux_sym__for_body_repeat1, - ACTIONS(8632), 2, + ACTIONS(1167), 5, + anon_sym_in, anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - [157691] = 6, + sym__special_character, + [158877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, + ACTIONS(8612), 1, anon_sym_COMMA, - ACTIONS(8638), 1, + ACTIONS(8686), 1, aux_sym_heredoc_redirect_token1, - STATE(2204), 1, + STATE(2520), 1, sym__c_terminator, - STATE(3697), 1, + STATE(3648), 1, aux_sym__for_body_repeat1, - ACTIONS(8636), 2, + ACTIONS(8684), 2, anon_sym_SEMI, anon_sym_AMP, - [157711] = 6, + [158897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8602), 1, + ACTIONS(8612), 1, anon_sym_COMMA, - ACTIONS(8642), 1, + ACTIONS(8690), 1, aux_sym_heredoc_redirect_token1, - STATE(2480), 1, + STATE(2523), 1, sym__c_terminator, - STATE(3697), 1, + STATE(3701), 1, aux_sym__for_body_repeat1, - ACTIONS(8640), 2, + ACTIONS(8688), 2, anon_sym_SEMI, anon_sym_AMP, - [157731] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8644), 1, - anon_sym_RPAREN, - ACTIONS(8646), 1, - anon_sym_DQUOTE, - ACTIONS(8648), 1, - sym_raw_string, - ACTIONS(8650), 1, - aux_sym__expansion_regex_token1, - ACTIONS(8652), 1, - sym_regex, - STATE(4179), 1, - sym_string, - [157753] = 6, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8578), 1, - anon_sym_elif, - ACTIONS(8580), 1, - anon_sym_else, - ACTIONS(8654), 1, - anon_sym_fi, - STATE(4263), 1, - sym_else_clause, - STATE(3702), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [157773] = 5, + [158917] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8656), 1, - anon_sym_SLASH, - ACTIONS(8658), 1, - anon_sym_RBRACE3, - STATE(3670), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8574), 2, - sym__concat, - aux_sym_concatenation_token1, - [157790] = 5, + ACTIONS(8692), 1, + sym_simple_heredoc_body, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + STATE(4138), 1, + sym_heredoc_body, + STATE(2845), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [158934] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8574), 1, - aux_sym_concatenation_token1, - ACTIONS(8660), 1, - sym__concat, - STATE(3665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, - anon_sym_SLASH, + ACTIONS(8696), 1, anon_sym_RBRACE3, - [157807] = 4, + STATE(3666), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [158949] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 1, + ACTIONS(4281), 1, anon_sym_RBRACE3, - STATE(3650), 1, + STATE(3696), 1, aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [157822] = 5, + [158964] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8664), 1, - sym_simple_heredoc_body, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - STATE(4241), 1, + ACTIONS(8698), 1, + sym_simple_heredoc_body, + STATE(4291), 1, sym_heredoc_body, - STATE(3212), 2, + STATE(3180), 2, sym__heredoc_body, sym__simple_heredoc_body, - [157839] = 5, + [158981] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8700), 1, + anon_sym_in, + ACTIONS(8704), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8702), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [158996] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8668), 1, + ACTIONS(8698), 1, sym_simple_heredoc_body, - STATE(4016), 1, + STATE(4291), 1, sym_heredoc_body, - STATE(2800), 2, + STATE(3178), 2, sym__heredoc_body, sym__simple_heredoc_body, - [157856] = 4, + [159013] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4265), 1, - anon_sym_RBRACE3, - STATE(3689), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [157871] = 4, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + ACTIONS(8698), 1, + sym_simple_heredoc_body, + STATE(4291), 1, + sym_heredoc_body, + STATE(3181), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [159030] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(4403), 1, - anon_sym_RBRACE3, - STATE(3690), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [157886] = 5, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + ACTIONS(8698), 1, + sym_simple_heredoc_body, + STATE(4291), 1, + sym_heredoc_body, + STATE(3179), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [159047] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8664), 1, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + ACTIONS(8698), 1, sym_simple_heredoc_body, - ACTIONS(8666), 1, + STATE(4291), 1, + sym_heredoc_body, + STATE(3169), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [159064] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - STATE(4241), 1, + ACTIONS(8706), 1, + sym_simple_heredoc_body, + STATE(4063), 1, sym_heredoc_body, - STATE(3207), 2, + STATE(3220), 2, sym__heredoc_body, sym__simple_heredoc_body, - [157903] = 4, + [159081] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(8708), 1, anon_sym_RBRACE3, - STATE(3650), 1, + STATE(3666), 1, aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [157918] = 4, + [159096] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(8696), 1, anon_sym_RBRACE3, - STATE(3650), 1, + STATE(3666), 1, aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [157933] = 4, + [159111] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8672), 1, + ACTIONS(8710), 1, anon_sym_RBRACE3, - STATE(3650), 1, + STATE(3666), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8674), 3, + ACTIONS(8712), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [157948] = 5, + [159126] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8664), 1, - sym_simple_heredoc_body, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - STATE(4241), 1, - sym_heredoc_body, - STATE(3204), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [157965] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8664), 1, + ACTIONS(8698), 1, sym_simple_heredoc_body, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - STATE(4241), 1, + STATE(4291), 1, sym_heredoc_body, - STATE(3200), 2, + STATE(3177), 2, sym__heredoc_body, sym__simple_heredoc_body, - [157982] = 5, + [159143] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8563), 1, + anon_sym_in, + ACTIONS(8567), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8565), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [159158] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8664), 1, - sym_simple_heredoc_body, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - STATE(4241), 1, - sym_heredoc_body, - STATE(3169), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [157999] = 5, + STATE(3669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + ACTIONS(8715), 2, + sym__concat, + aux_sym_concatenation_token1, + [159173] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8664), 1, - sym_simple_heredoc_body, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - STATE(4241), 1, - sym_heredoc_body, - STATE(3192), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [158016] = 6, + ACTIONS(8620), 1, + aux_sym_concatenation_token1, + ACTIONS(8718), 1, + sym__concat, + STATE(3669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1179), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [159190] = 6, ACTIONS(63), 1, sym_comment, ACTIONS(258), 1, anon_sym_LBRACE, - ACTIONS(8677), 1, + ACTIONS(8720), 1, anon_sym_SEMI, - ACTIONS(8679), 1, + ACTIONS(8722), 1, anon_sym_do, - STATE(3208), 1, - sym_do_group, - STATE(3213), 1, + STATE(3222), 1, sym_compound_statement, - [158035] = 5, + STATE(3223), 1, + sym_do_group, + [159209] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - ACTIONS(8668), 1, - sym_simple_heredoc_body, - STATE(4016), 1, - sym_heredoc_body, - STATE(2802), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [158052] = 5, + ACTIONS(8724), 1, + anon_sym_RBRACE3, + STATE(3666), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [159224] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8681), 1, - anon_sym_SLASH, - ACTIONS(8683), 1, - anon_sym_RBRACE3, - STATE(3641), 1, + ACTIONS(8620), 1, + aux_sym_concatenation_token1, + ACTIONS(8726), 1, + sym__concat, + STATE(3669), 1, aux_sym_concatenation_repeat1, - ACTIONS(8574), 2, + ACTIONS(1173), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [159241] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8728), 1, + anon_sym_SEMI, + ACTIONS(8730), 1, + anon_sym_do, + STATE(2840), 1, + sym_do_group, + STATE(2841), 1, + sym_compound_statement, + [159260] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8732), 1, sym__concat, - aux_sym_concatenation_token1, - [158069] = 3, + ACTIONS(3833), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [159273] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8685), 1, + ACTIONS(8734), 1, sym__concat, - ACTIONS(3776), 4, + ACTIONS(3839), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [158082] = 5, + [159286] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8668), 1, + ACTIONS(8706), 1, sym_simple_heredoc_body, - STATE(4016), 1, + STATE(4063), 1, sym_heredoc_body, - STATE(2822), 2, + STATE(3192), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158099] = 3, + [159303] = 6, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8642), 1, + anon_sym_RPAREN, + ACTIONS(8736), 1, + sym__special_character, + STATE(3778), 1, + aux_sym__literal_repeat1, + STATE(3799), 1, + aux_sym_case_item_repeat1, + [159322] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8687), 1, + ACTIONS(8738), 1, sym__concat, - ACTIONS(3802), 4, + ACTIONS(3857), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [158112] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8689), 1, - anon_sym_SEMI, - ACTIONS(8691), 1, - anon_sym_do, - STATE(2808), 1, - sym_compound_statement, - STATE(2809), 1, - sym_do_group, - [158131] = 3, + [159335] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8693), 1, + ACTIONS(8740), 1, sym__concat, - ACTIONS(3770), 4, + ACTIONS(3848), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [158144] = 4, + [159348] = 6, ACTIONS(63), 1, sym_comment, - STATE(3663), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 2, - anon_sym_RPAREN, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8695), 2, - sym__concat, - aux_sym_concatenation_token1, - [158159] = 3, + ACTIONS(8650), 1, + anon_sym_RPAREN, + ACTIONS(8736), 1, + sym__special_character, + STATE(3778), 1, + aux_sym__literal_repeat1, + STATE(3899), 1, + aux_sym_case_item_repeat1, + [159367] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8698), 1, - sym__concat, - ACTIONS(3758), 4, + ACTIONS(8692), 1, + sym_simple_heredoc_body, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + STATE(4138), 1, + sym_heredoc_body, + STATE(2829), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [159384] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4808), 1, + anon_sym_RBRACE3, + STATE(3665), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [158172] = 4, + [159399] = 5, ACTIONS(63), 1, sym_comment, - STATE(3665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1175), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(8700), 2, - sym__concat, - aux_sym_concatenation_token1, - [158187] = 6, + ACTIONS(8692), 1, + sym_simple_heredoc_body, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + STATE(4138), 1, + sym_heredoc_body, + STATE(2830), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [159416] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8628), 1, - anon_sym_RPAREN, - ACTIONS(8703), 1, - sym__special_character, - STATE(3718), 1, - aux_sym__literal_repeat1, - STATE(3828), 1, - aux_sym_case_item_repeat1, - [158206] = 4, + ACTIONS(8692), 1, + sym_simple_heredoc_body, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + STATE(4138), 1, + sym_heredoc_body, + STATE(2831), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [159433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, + ACTIONS(8515), 1, anon_sym_in, - ACTIONS(8489), 1, + ACTIONS(8519), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(8487), 3, + ACTIONS(8517), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [158221] = 4, + [159448] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8705), 1, + ACTIONS(8742), 1, anon_sym_RBRACE3, - STATE(3650), 1, + STATE(3666), 1, aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [158236] = 5, + [159463] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - ACTIONS(8707), 1, + ACTIONS(8646), 1, + aux_sym_concatenation_token1, + ACTIONS(8744), 1, + sym__concat, + STATE(3695), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1173), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [159480] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8692), 1, sym_simple_heredoc_body, - STATE(4324), 1, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + STATE(4138), 1, sym_heredoc_body, - STATE(3160), 2, + STATE(2843), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158253] = 5, + [159497] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + STATE(3666), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [159512] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + STATE(3666), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [159527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8748), 1, + anon_sym_in, + ACTIONS(8752), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8750), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [159542] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8574), 1, + ACTIONS(8646), 1, aux_sym_concatenation_token1, - ACTIONS(8709), 1, + ACTIONS(8754), 1, sym__concat, - STATE(3665), 1, + STATE(3695), 1, aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, + ACTIONS(1179), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [158270] = 5, + [159559] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - ACTIONS(8707), 1, + ACTIONS(8692), 1, sym_simple_heredoc_body, - STATE(4324), 1, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + STATE(4138), 1, sym_heredoc_body, - STATE(3164), 2, + STATE(2839), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158287] = 6, + [159576] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8624), 1, - anon_sym_RPAREN, - ACTIONS(8703), 1, - sym__special_character, - STATE(3718), 1, - aux_sym__literal_repeat1, - STATE(3800), 1, - aux_sym_case_item_repeat1, - [158306] = 6, + STATE(3695), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1185), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(8756), 2, + sym__concat, + aux_sym_concatenation_token1, + [159591] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + STATE(3666), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [159606] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8742), 1, + anon_sym_RBRACE3, + STATE(3666), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(4293), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [159621] = 5, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8694), 1, + sym__heredoc_body_beginning, + ACTIONS(8759), 1, + sym_simple_heredoc_body, + STATE(4090), 1, + sym_heredoc_body, + STATE(2856), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [159638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8497), 1, + anon_sym_in, + ACTIONS(8501), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8499), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [159653] = 6, ACTIONS(63), 1, sym_comment, ACTIONS(479), 1, anon_sym_LBRACE, - ACTIONS(8711), 1, + ACTIONS(8761), 1, anon_sym_SEMI, - ACTIONS(8713), 1, + ACTIONS(8763), 1, anon_sym_do, - STATE(2787), 1, + STATE(2834), 1, sym_compound_statement, - STATE(2804), 1, + STATE(2842), 1, sym_do_group, - [158325] = 4, + [159672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8770), 1, + aux_sym_heredoc_redirect_token1, + STATE(3701), 1, + aux_sym__for_body_repeat1, + ACTIONS(8765), 2, + anon_sym_SEMI, + anon_sym_AMP, + [159689] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4820), 1, - anon_sym_RBRACE3, - STATE(3649), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [158340] = 4, + ACTIONS(8774), 1, + anon_sym_elif, + ACTIONS(8772), 2, + anon_sym_fi, + anon_sym_else, + STATE(3702), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [159704] = 6, ACTIONS(63), 1, sym_comment, - STATE(3696), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8586), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(8715), 2, - anon_sym_RPAREN, + ACTIONS(8618), 1, anon_sym_PIPE, - [158355] = 4, - ACTIONS(63), 1, - sym_comment, - STATE(3700), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8586), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(8717), 2, + ACTIONS(8658), 1, anon_sym_RPAREN, - anon_sym_PIPE, - [158370] = 5, + ACTIONS(8736), 1, + sym__special_character, + STATE(3778), 1, + aux_sym__literal_repeat1, + STATE(3816), 1, + aux_sym_case_item_repeat1, + [159723] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8777), 1, + anon_sym_in, + ACTIONS(8781), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8779), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [159738] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8707), 1, + ACTIONS(8706), 1, sym_simple_heredoc_body, - STATE(4324), 1, + STATE(4063), 1, sym_heredoc_body, - STATE(3151), 2, + STATE(3206), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158387] = 5, + [159755] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8719), 1, + ACTIONS(8759), 1, sym_simple_heredoc_body, - STATE(4153), 1, + STATE(4090), 1, sym_heredoc_body, - STATE(2827), 2, + STATE(2868), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158404] = 5, + [159772] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8719), 1, + ACTIONS(8759), 1, sym_simple_heredoc_body, - STATE(4153), 1, + STATE(4090), 1, sym_heredoc_body, - STATE(2828), 2, + STATE(2871), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158421] = 5, + [159789] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8719), 1, + ACTIONS(8759), 1, sym_simple_heredoc_body, - STATE(4153), 1, + STATE(4090), 1, sym_heredoc_body, - STATE(2837), 2, + STATE(2872), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158438] = 4, + [159806] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, + ACTIONS(4527), 1, anon_sym_RBRACE3, - STATE(3650), 1, + STATE(3697), 1, aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, + ACTIONS(4293), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [158453] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - ACTIONS(8719), 1, - sym_simple_heredoc_body, - STATE(4153), 1, - sym_heredoc_body, - STATE(2838), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [158470] = 5, + [159821] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8719), 1, + ACTIONS(8759), 1, sym_simple_heredoc_body, - STATE(4153), 1, + STATE(4090), 1, sym_heredoc_body, - STATE(2853), 2, + STATE(2779), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158487] = 5, + [159838] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8719), 1, + ACTIONS(8759), 1, sym_simple_heredoc_body, - STATE(4153), 1, + STATE(4090), 1, sym_heredoc_body, - STATE(2857), 2, + STATE(2786), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158504] = 4, + [159855] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, + ACTIONS(8783), 1, + anon_sym_SLASH, + ACTIONS(8785), 1, anon_sym_RBRACE3, - STATE(3650), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [158519] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - ACTIONS(8707), 1, - sym_simple_heredoc_body, - STATE(4324), 1, - sym_heredoc_body, - STATE(3155), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [158536] = 4, + STATE(3693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8646), 2, + sym__concat, + aux_sym_concatenation_token1, + [159872] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, + ACTIONS(8787), 1, + anon_sym_SLASH, + ACTIONS(8789), 1, anon_sym_RBRACE3, - STATE(3650), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [158551] = 5, + STATE(3688), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8646), 2, + sym__concat, + aux_sym_concatenation_token1, + [159889] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8707), 1, + ACTIONS(8706), 1, sym_simple_heredoc_body, - STATE(4324), 1, + STATE(4063), 1, sym_heredoc_body, - STATE(3159), 2, + STATE(3183), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158568] = 4, + [159906] = 6, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - STATE(3650), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [158583] = 4, + ACTIONS(8616), 1, + anon_sym_RPAREN, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8736), 1, + sym__special_character, + STATE(3778), 1, + aux_sym__literal_repeat1, + STATE(3910), 1, + aux_sym_case_item_repeat1, + [159925] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, - anon_sym_RBRACE3, - STATE(3650), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(4277), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [158598] = 4, - ACTIONS(3), 1, + STATE(3670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8620), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(8791), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [159940] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8541), 1, - anon_sym_in, - ACTIONS(8545), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8543), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [158613] = 5, + STATE(3673), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8620), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(8793), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [159955] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8668), 1, + ACTIONS(8706), 1, sym_simple_heredoc_body, - STATE(4016), 1, + STATE(4063), 1, sym_heredoc_body, - STATE(2793), 2, + STATE(3184), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158630] = 5, + [159972] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, + ACTIONS(8694), 1, sym__heredoc_body_beginning, - ACTIONS(8668), 1, + ACTIONS(8706), 1, sym_simple_heredoc_body, - STATE(4016), 1, + STATE(4063), 1, sym_heredoc_body, - STATE(2798), 2, + STATE(3212), 2, sym__heredoc_body, sym__simple_heredoc_body, - [158647] = 4, - ACTIONS(3), 1, + [159989] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(8725), 1, - anon_sym_in, - ACTIONS(8729), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8727), 3, - anon_sym_SEMI, + ACTIONS(8795), 1, + anon_sym_esac, + ACTIONS(8797), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [158662] = 5, + ACTIONS(8799), 1, + anon_sym_SEMI_AMP, + ACTIONS(8801), 1, + anon_sym_SEMI_SEMI_AMP, + [160005] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - ACTIONS(8668), 1, - sym_simple_heredoc_body, - STATE(4016), 1, - sym_heredoc_body, - STATE(2768), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [158679] = 5, + ACTIONS(8803), 1, + anon_sym_esac, + ACTIONS(8805), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8807), 1, + anon_sym_SEMI_AMP, + ACTIONS(8809), 1, + anon_sym_SEMI_SEMI_AMP, + [160021] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8586), 1, - aux_sym_concatenation_token1, - ACTIONS(8731), 1, - sym__concat, - STATE(3663), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1186), 2, + ACTIONS(8811), 1, + anon_sym_esac, + ACTIONS(8813), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8815), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [160035] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8736), 1, + sym__special_character, + STATE(3778), 1, + aux_sym__literal_repeat1, + ACTIONS(8793), 2, anon_sym_RPAREN, anon_sym_PIPE, - [158696] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8735), 1, - anon_sym_COMMA, - ACTIONS(8738), 1, - aux_sym_heredoc_redirect_token1, - STATE(3697), 1, - aux_sym__for_body_repeat1, - ACTIONS(8733), 2, - anon_sym_SEMI, - anon_sym_AMP, - [158713] = 4, - ACTIONS(3), 1, + [160049] = 4, + ACTIONS(63), 1, sym_comment, - ACTIONS(8740), 1, - anon_sym_in, - ACTIONS(8744), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8742), 3, - anon_sym_SEMI, + ACTIONS(8817), 1, + anon_sym_esac, + ACTIONS(8819), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [158728] = 4, - ACTIONS(3), 1, + ACTIONS(8821), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [160063] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(8746), 1, - anon_sym_in, - ACTIONS(8750), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8748), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [158743] = 5, + ACTIONS(8787), 1, + anon_sym_SLASH, + ACTIONS(8789), 1, + anon_sym_RBRACE3, + ACTIONS(8823), 1, + sym__special_character, + STATE(3743), 1, + aux_sym__literal_repeat1, + [160079] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8586), 1, - aux_sym_concatenation_token1, - ACTIONS(8752), 1, + ACTIONS(8828), 1, + anon_sym_RBRACE3, + STATE(3726), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(8825), 2, sym__concat, - STATE(3663), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1192), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [158760] = 4, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [160093] = 5, + ACTIONS(63), 1, sym_comment, - ACTIONS(8479), 1, - anon_sym_in, - ACTIONS(8483), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8481), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [158775] = 4, + ACTIONS(479), 1, + anon_sym_LBRACE, + ACTIONS(8763), 1, + anon_sym_do, + STATE(2780), 1, + sym_compound_statement, + STATE(2785), 1, + sym_do_group, + [160109] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8756), 1, - anon_sym_elif, - ACTIONS(8754), 2, - anon_sym_fi, - anon_sym_else, - STATE(3702), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [158790] = 5, + ACTIONS(8832), 1, + anon_sym_RBRACE3, + STATE(3726), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(8830), 2, + sym__concat, + aux_sym_concatenation_token1, + [160123] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8666), 1, - sym__heredoc_body_beginning, - ACTIONS(8707), 1, - sym_simple_heredoc_body, - STATE(4324), 1, - sym_heredoc_body, - STATE(3162), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [158807] = 6, + ACTIONS(8834), 1, + anon_sym_esac, + ACTIONS(8836), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8838), 1, + anon_sym_SEMI_AMP, + ACTIONS(8840), 1, + anon_sym_SEMI_SEMI_AMP, + [160139] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8592), 1, - anon_sym_RPAREN, - ACTIONS(8703), 1, - sym__special_character, - STATE(3718), 1, - aux_sym__literal_repeat1, - STATE(3793), 1, - aux_sym_case_item_repeat1, - [158826] = 6, + ACTIONS(8842), 1, + anon_sym_esac, + ACTIONS(8844), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8846), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [160153] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8582), 1, - anon_sym_RPAREN, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8703), 1, - sym__special_character, - STATE(3718), 1, - aux_sym__literal_repeat1, - STATE(3867), 1, - aux_sym_case_item_repeat1, - [158845] = 2, + ACTIONS(8848), 1, + anon_sym_esac, + ACTIONS(8850), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8852), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [160167] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(3948), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [158855] = 2, + ACTIONS(8834), 1, + anon_sym_esac, + ACTIONS(8854), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8856), 1, + anon_sym_SEMI_AMP, + ACTIONS(8858), 1, + anon_sym_SEMI_SEMI_AMP, + [160183] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1207), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [158865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8738), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8733), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [158877] = 2, + anon_sym_RBRACE3, + [160193] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1237), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [158887] = 3, + [160203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8761), 1, + ACTIONS(8770), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(8759), 3, + ACTIONS(8765), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_AMP, - [158899] = 2, + [160215] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1207), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [158909] = 2, + anon_sym_RBRACE3, + [160225] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1252), 4, + ACTIONS(1265), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [158919] = 2, + anon_sym_RBRACE3, + [160235] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4007), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [160245] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(1261), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [158929] = 5, + [160255] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4003), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [160265] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3848), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [160275] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1207), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [160285] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8860), 1, + sym__special_character, + STATE(3743), 1, + aux_sym__literal_repeat1, + ACTIONS(1275), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [160299] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3857), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [160309] = 5, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(63), 1, sym_comment, - ACTIONS(8691), 1, + ACTIONS(8730), 1, anon_sym_do, - STATE(2769), 1, + STATE(2857), 1, sym_do_group, - STATE(2776), 1, + STATE(2858), 1, sym_compound_statement, - [158945] = 2, + [160325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8865), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8863), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [160337] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1249), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [158955] = 5, + anon_sym_RBRACE3, + [160347] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8763), 1, + ACTIONS(8795), 1, anon_sym_esac, - ACTIONS(8765), 1, + ACTIONS(8867), 1, anon_sym_SEMI_SEMI, - ACTIONS(8767), 1, + ACTIONS(8869), 1, anon_sym_SEMI_AMP, - ACTIONS(8769), 1, + ACTIONS(8871), 1, anon_sym_SEMI_SEMI_AMP, - [158971] = 2, + [160363] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1241), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [158981] = 4, + [160373] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8771), 1, - sym__special_character, - STATE(3718), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [158995] = 2, + ACTIONS(1217), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [160383] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1256), 4, + ACTIONS(1237), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [160393] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1225), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [159005] = 2, + anon_sym_RBRACE3, + [160403] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1248), 4, + ACTIONS(1213), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [159015] = 2, + [160413] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 4, + ACTIONS(1269), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [159025] = 4, + [160423] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8776), 1, + ACTIONS(1207), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - STATE(3750), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(8774), 2, + [160433] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1185), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [159039] = 2, + anon_sym_RBRACE3, + [160443] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1230), 4, + ACTIONS(8873), 1, + anon_sym_RBRACE3, + STATE(3728), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(8830), 2, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, aux_sym_concatenation_token1, - [159049] = 2, + [160457] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1264), 4, + ACTIONS(1257), 4, sym__concat, - anon_sym_RPAREN, - anon_sym_PIPE, + anon_sym_SLASH, aux_sym_concatenation_token1, - [159059] = 2, + anon_sym_RBRACE3, + [160467] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1203), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159069] = 2, + [160477] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1257), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159079] = 2, + [160487] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1203), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [159089] = 2, + [160497] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1185), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159099] = 2, + [160507] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1198), 4, + ACTIONS(1269), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159109] = 2, + [160517] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1213), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159119] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1252), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159129] = 2, + [160527] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1241), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159139] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1256), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159149] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1210), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159159] = 4, + [160537] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8778), 1, + ACTIONS(8875), 1, anon_sym_esac, - ACTIONS(8780), 1, + ACTIONS(8877), 1, anon_sym_SEMI_SEMI, - ACTIONS(8782), 2, + ACTIONS(8879), 1, anon_sym_SEMI_AMP, + ACTIONS(8881), 1, anon_sym_SEMI_SEMI_AMP, - [159173] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8784), 1, - anon_sym_RBRACE3, - STATE(3722), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(8774), 2, - sym__concat, - aux_sym_concatenation_token1, - [159187] = 2, + [160553] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1202), 4, + ACTIONS(1245), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159197] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8703), 1, - sym__special_character, - STATE(3718), 1, - aux_sym__literal_repeat1, - ACTIONS(8715), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [159211] = 2, + [160563] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8786), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(1229), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [159221] = 2, + [160573] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1249), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159231] = 4, + [160583] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8788), 1, + ACTIONS(8803), 1, anon_sym_esac, - ACTIONS(8790), 1, + ACTIONS(8883), 1, anon_sym_SEMI_SEMI, - ACTIONS(8792), 2, + ACTIONS(8885), 1, anon_sym_SEMI_AMP, + ACTIONS(8887), 1, anon_sym_SEMI_SEMI_AMP, - [159245] = 2, + [160599] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1261), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159255] = 2, + [160609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8891), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8889), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [160621] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1222), 4, + ACTIONS(1217), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159265] = 4, + [160631] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(8794), 1, - sym__special_character, - STATE(3744), 1, - aux_sym__literal_repeat1, - ACTIONS(1281), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [159279] = 2, + ACTIONS(8875), 1, + anon_sym_esac, + ACTIONS(8893), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8895), 1, + anon_sym_SEMI_AMP, + ACTIONS(8897), 1, + anon_sym_SEMI_SEMI_AMP, + [160647] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1233), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [159289] = 2, + [160657] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1206), 4, + ACTIONS(1265), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159299] = 2, + [160667] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1175), 4, + ACTIONS(1253), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159309] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3802), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [159319] = 5, + [160677] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8681), 1, - anon_sym_SLASH, - ACTIONS(8683), 1, - anon_sym_RBRACE3, - ACTIONS(8797), 1, + ACTIONS(8899), 1, sym__special_character, - STATE(3744), 1, + STATE(3778), 1, aux_sym__literal_repeat1, - [159335] = 4, + ACTIONS(1275), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [160691] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8802), 1, - anon_sym_RBRACE3, - STATE(3750), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(8799), 2, + ACTIONS(1253), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [159349] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3776), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [159359] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3942), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [159369] = 5, + [160701] = 5, ACTIONS(63), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(258), 1, anon_sym_LBRACE, - ACTIONS(8713), 1, + ACTIONS(8722), 1, anon_sym_do, - STATE(2763), 1, + STATE(3201), 1, sym_compound_statement, - STATE(2767), 1, + STATE(3205), 1, sym_do_group, - [159385] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8804), 1, - anon_sym_esac, - ACTIONS(8806), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8808), 1, - anon_sym_SEMI_AMP, - ACTIONS(8810), 1, - anon_sym_SEMI_SEMI_AMP, - [159401] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1244), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [159411] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1248), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [159421] = 2, + [160717] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1226), 4, + ACTIONS(1207), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159431] = 2, + [160727] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1240), 4, + ACTIONS(1237), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159441] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1244), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [159451] = 2, + [160737] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1210), 4, + ACTIONS(1225), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159461] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8812), 1, - anon_sym_esac, - ACTIONS(8814), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8816), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [159475] = 5, + [160747] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8763), 1, - anon_sym_esac, - ACTIONS(8818), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8820), 1, - anon_sym_SEMI_AMP, - ACTIONS(8822), 1, - anon_sym_SEMI_SEMI_AMP, - [159491] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1264), 4, + ACTIONS(1207), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159501] = 2, + [160757] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1214), 4, + ACTIONS(1245), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [159511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8824), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [159523] = 2, + [160767] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 4, + ACTIONS(1221), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [159533] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8828), 1, - anon_sym_esac, - ACTIONS(8830), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8832), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [159547] = 5, + [160777] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8804), 1, - anon_sym_esac, - ACTIONS(8834), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8836), 1, - anon_sym_SEMI_AMP, - ACTIONS(8838), 1, - anon_sym_SEMI_SEMI_AMP, - [159563] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1202), 4, + ACTIONS(1229), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159573] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8840), 1, - anon_sym_esac, - ACTIONS(8842), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8844), 1, - anon_sym_SEMI_AMP, - ACTIONS(8846), 1, - anon_sym_SEMI_SEMI_AMP, - [159589] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(258), 1, - anon_sym_LBRACE, - ACTIONS(8679), 1, - anon_sym_do, - STATE(3181), 1, - sym_compound_statement, - STATE(3182), 1, - sym_do_group, - [159605] = 2, + [160787] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1233), 4, sym__concat, - anon_sym_SLASH, + anon_sym_RPAREN, + anon_sym_PIPE, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [159615] = 2, + [160797] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1218), 4, + ACTIONS(1221), 4, sym__concat, anon_sym_RPAREN, anon_sym_PIPE, aux_sym_concatenation_token1, - [159625] = 5, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8840), 1, - anon_sym_esac, - ACTIONS(8848), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8850), 1, - anon_sym_SEMI_AMP, - ACTIONS(8852), 1, - anon_sym_SEMI_SEMI_AMP, - [159641] = 5, + [160807] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8854), 1, - anon_sym_esac, - ACTIONS(8856), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8858), 1, - anon_sym_SEMI_AMP, - ACTIONS(8860), 1, - anon_sym_SEMI_SEMI_AMP, - [159657] = 5, + ACTIONS(8902), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [160817] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8854), 1, - anon_sym_esac, - ACTIONS(8862), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8864), 1, - anon_sym_SEMI_AMP, - ACTIONS(8866), 1, - anon_sym_SEMI_SEMI_AMP, - [159673] = 4, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(8904), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [160830] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8588), 1, - anon_sym_RPAREN, - STATE(3861), 1, - aux_sym_case_item_repeat1, - [159686] = 4, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(8906), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [160843] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8868), 1, + ACTIONS(8908), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(8870), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - STATE(3809), 1, + STATE(3923), 1, aux_sym__for_body_repeat1, - [159699] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(8872), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [159710] = 3, + [160856] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(8876), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [159721] = 4, + ACTIONS(8856), 1, + anon_sym_SEMI_AMP, + ACTIONS(8858), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8912), 1, + anon_sym_SEMI_SEMI, + [160869] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8878), 1, + ACTIONS(8914), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [159734] = 3, + [160882] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8880), 1, + ACTIONS(8916), 1, anon_sym_SEMI_SEMI, - ACTIONS(8832), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [159745] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8836), 1, + ACTIONS(8852), 2, anon_sym_SEMI_AMP, - ACTIONS(8838), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8882), 1, - anon_sym_SEMI_SEMI, - [159758] = 3, + [160893] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8884), 2, + ACTIONS(8918), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [159769] = 3, + [160904] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(8886), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [159780] = 3, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(8922), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [160917] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8924), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [160930] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8888), 2, + ACTIONS(8926), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [159791] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(8890), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [159804] = 4, + [160941] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(8892), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [159817] = 4, + ACTIONS(8928), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8846), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [160952] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8894), 1, + ACTIONS(8930), 1, anon_sym_RPAREN, - STATE(3850), 1, + ACTIONS(8932), 1, + anon_sym_PIPE, + STATE(3802), 1, aux_sym_case_item_repeat1, - [159830] = 4, + [160965] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8896), 1, + ACTIONS(8935), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [159843] = 3, + [160978] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1180), 1, - sym__special_character, - ACTIONS(1182), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [159854] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8844), 1, + ACTIONS(8838), 1, anon_sym_SEMI_AMP, - ACTIONS(8846), 1, + ACTIONS(8840), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8898), 1, + ACTIONS(8937), 1, anon_sym_SEMI_SEMI, - [159867] = 4, + [160991] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8900), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [159880] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8902), 1, + ACTIONS(8939), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [159893] = 4, + [161004] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8770), 1, + anon_sym_RPAREN, + ACTIONS(8941), 1, + anon_sym_COMMA, + STATE(3806), 1, + aux_sym__for_body_repeat1, + [161017] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(8799), 1, anon_sym_SEMI_AMP, - ACTIONS(8810), 1, + ACTIONS(8801), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8904), 1, + ACTIONS(8944), 1, anon_sym_SEMI_SEMI, - [159906] = 3, + [161030] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(8946), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161043] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8906), 2, + ACTIONS(8948), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [159917] = 4, + [161054] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8908), 1, + ACTIONS(8950), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [159930] = 4, + [161067] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8952), 1, anon_sym_COMMA, - ACTIONS(8910), 1, + ACTIONS(8954), 1, + anon_sym_RPAREN, + STATE(3890), 1, + aux_sym__for_body_repeat1, + [161080] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8956), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [161093] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(8958), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [159943] = 3, + [161106] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8912), 2, + ACTIONS(8960), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [159954] = 4, + [161117] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8914), 1, + ACTIONS(8962), 1, anon_sym_RPAREN, - STATE(3850), 1, + STATE(3802), 1, aux_sym_case_item_repeat1, - [159967] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [159980] = 4, + [161130] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8918), 1, + ACTIONS(8964), 1, anon_sym_RPAREN, - STATE(3850), 1, + STATE(3802), 1, aux_sym_case_item_repeat1, - [159993] = 4, + [161143] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8920), 1, + ACTIONS(8680), 1, anon_sym_RPAREN, - STATE(3850), 1, + STATE(3919), 1, aux_sym_case_item_repeat1, - [160006] = 4, + [161156] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8922), 1, + ACTIONS(8966), 1, anon_sym_RPAREN_RPAREN, - STATE(3809), 1, - aux_sym__for_body_repeat1, - [160019] = 4, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161169] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8924), 1, + ACTIONS(8968), 1, anon_sym_RPAREN_RPAREN, - STATE(3888), 1, - aux_sym__for_body_repeat1, - [160032] = 4, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161182] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8926), 1, + ACTIONS(8970), 1, anon_sym_RPAREN_RPAREN, - STATE(3886), 1, - aux_sym__for_body_repeat1, - [160045] = 4, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161195] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(8972), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161206] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(8928), 1, + ACTIONS(8974), 1, anon_sym_RPAREN_RPAREN, - STATE(3778), 1, + STATE(3861), 1, aux_sym__for_body_repeat1, - [160058] = 4, + [161219] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(8930), 1, + ACTIONS(8976), 1, anon_sym_RPAREN_RPAREN, - STATE(3809), 1, + STATE(3923), 1, aux_sym__for_body_repeat1, - [160071] = 4, + [161232] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8738), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(8932), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - STATE(3809), 1, + ACTIONS(8978), 1, + anon_sym_RPAREN_RPAREN, + STATE(3923), 1, aux_sym__for_body_repeat1, - [160084] = 4, + [161245] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8935), 1, + ACTIONS(8980), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160097] = 3, + [161258] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8937), 2, + ACTIONS(8982), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160108] = 4, + [161269] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(8939), 1, - anon_sym_RPAREN_RPAREN, - STATE(3809), 1, - aux_sym__for_body_repeat1, - [160121] = 4, + ACTIONS(8828), 3, + sym__concat, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [161278] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(8984), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161289] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8941), 1, + ACTIONS(8986), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160134] = 4, + [161302] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(8943), 1, - anon_sym_RPAREN_RPAREN, - STATE(3884), 1, - aux_sym__for_body_repeat1, - [160147] = 4, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(8988), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161313] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8990), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [161326] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8992), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [161339] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8994), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [161352] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8996), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8821), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [161363] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(8998), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161374] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8945), 1, + ACTIONS(9000), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160160] = 4, + [161387] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8947), 1, + ACTIONS(9002), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160173] = 3, + [161400] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(8949), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160184] = 3, + ACTIONS(1169), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + sym__special_character, + [161409] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(8951), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160195] = 3, + ACTIONS(8910), 1, + anon_sym_COMMA, + ACTIONS(9004), 1, + anon_sym_RPAREN_RPAREN, + STATE(3898), 1, + aux_sym__for_body_repeat1, + [161422] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8953), 2, + ACTIONS(9006), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160206] = 2, + [161433] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(9008), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161446] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(1182), 3, + ACTIONS(8952), 1, + anon_sym_COMMA, + ACTIONS(9010), 1, anon_sym_RPAREN, - anon_sym_PIPE, - sym__special_character, - [160215] = 4, + STATE(3847), 1, + aux_sym__for_body_repeat1, + [161459] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(8955), 1, + ACTIONS(9012), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3923), 1, + aux_sym__for_body_repeat1, + [161472] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9014), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8815), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [161483] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(9016), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160228] = 4, + [161496] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8957), 1, + ACTIONS(9018), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160241] = 4, + [161509] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8952), 1, + anon_sym_COMMA, + ACTIONS(9020), 1, + anon_sym_RPAREN, + STATE(3806), 1, + aux_sym__for_body_repeat1, + [161522] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(9022), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160254] = 4, + [161535] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(8961), 1, + ACTIONS(9024), 1, anon_sym_RPAREN_RPAREN, - STATE(3809), 1, + STATE(3892), 1, aux_sym__for_body_repeat1, - [160267] = 3, + [161548] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8963), 2, + ACTIONS(9026), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160278] = 4, + [161559] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8858), 1, - anon_sym_SEMI_AMP, - ACTIONS(8860), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8965), 1, - anon_sym_SEMI_SEMI, - [160291] = 4, + ACTIONS(8910), 1, + anon_sym_COMMA, + ACTIONS(9028), 1, + anon_sym_RPAREN_RPAREN, + STATE(3923), 1, + aux_sym__for_body_repeat1, + [161572] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8967), 1, + ACTIONS(9030), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160304] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8969), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160317] = 4, + [161585] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8971), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160330] = 4, + ACTIONS(8910), 1, + anon_sym_COMMA, + ACTIONS(9032), 1, + anon_sym_RPAREN_RPAREN, + STATE(3888), 1, + aux_sym__for_body_repeat1, + [161598] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8973), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160343] = 3, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(9034), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161611] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8975), 2, + ACTIONS(9036), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160354] = 3, + [161622] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8869), 1, + anon_sym_SEMI_AMP, + ACTIONS(8871), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9038), 1, + anon_sym_SEMI_SEMI, + [161635] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8977), 2, + ACTIONS(9040), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160365] = 4, + [161646] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8979), 1, + ACTIONS(9042), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160378] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8594), 1, - anon_sym_RPAREN, - STATE(3881), 1, - aux_sym_case_item_repeat1, - [160391] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8981), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160404] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8983), 1, - anon_sym_COMMA, - ACTIONS(8985), 1, - anon_sym_RPAREN, - STATE(3845), 1, - aux_sym__for_body_repeat1, - [160417] = 4, + [161659] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8987), 1, + ACTIONS(9044), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160430] = 4, + [161672] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8989), 1, + ACTIONS(9046), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160443] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(8991), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160456] = 3, + [161685] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(8993), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160467] = 4, + ACTIONS(8910), 1, + anon_sym_COMMA, + ACTIONS(9048), 1, + anon_sym_RPAREN_RPAREN, + STATE(3923), 1, + aux_sym__for_body_repeat1, + [161698] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(8995), 1, + ACTIONS(9050), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160480] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8864), 1, - anon_sym_SEMI_AMP, - ACTIONS(8866), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8997), 1, - anon_sym_SEMI_SEMI, - [160493] = 3, + [161711] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(8999), 2, + ACTIONS(9052), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160504] = 4, + [161722] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(9001), 1, + ACTIONS(9054), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [160517] = 4, + STATE(3851), 1, + aux_sym__for_body_repeat1, + [161735] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8983), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9003), 1, - anon_sym_RPAREN, - STATE(3846), 1, - aux_sym__for_body_repeat1, - [160530] = 4, + ACTIONS(9056), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161748] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8738), 1, - anon_sym_RPAREN, - ACTIONS(9005), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - STATE(3846), 1, - aux_sym__for_body_repeat1, - [160543] = 4, + ACTIONS(9058), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161761] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(9008), 1, + ACTIONS(9060), 1, anon_sym_RPAREN_RPAREN, - STATE(3824), 1, + STATE(3843), 1, aux_sym__for_body_repeat1, - [160556] = 4, + [161774] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9010), 1, + ACTIONS(9062), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160569] = 3, + [161787] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8879), 1, + anon_sym_SEMI_AMP, + ACTIONS(8881), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9064), 1, + anon_sym_SEMI_SEMI, + [161800] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(9066), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161811] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(9012), 2, + ACTIONS(9068), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160580] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9014), 1, - anon_sym_RPAREN, - ACTIONS(9016), 1, - anon_sym_PIPE, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160593] = 3, + [161822] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(9019), 2, + ACTIONS(9070), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160604] = 4, + [161833] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9021), 1, + ACTIONS(9072), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160617] = 4, + [161846] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9023), 1, + ACTIONS(9074), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160630] = 4, + [161859] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9025), 1, + ACTIONS(9076), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160643] = 4, + [161872] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(9027), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [160656] = 3, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(9078), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161883] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(9029), 2, + ACTIONS(9080), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160667] = 4, + [161894] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8767), 1, - anon_sym_SEMI_AMP, - ACTIONS(8769), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9031), 1, - anon_sym_SEMI_SEMI, - [160680] = 3, + ACTIONS(9082), 1, + sym__concat, + ACTIONS(3833), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161905] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(9033), 2, + ACTIONS(9084), 1, + sym__concat, + ACTIONS(3839), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [160691] = 4, + [161916] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8952), 1, anon_sym_COMMA, - ACTIONS(9035), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [160704] = 4, + ACTIONS(9086), 1, + anon_sym_RPAREN, + STATE(3909), 1, + aux_sym__for_body_repeat1, + [161929] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(9037), 1, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(9088), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [161940] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4151), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + ACTIONS(9090), 1, + anon_sym_COMMA, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160717] = 4, + [161953] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(9039), 1, + ACTIONS(9093), 1, anon_sym_RPAREN, - STATE(3850), 1, + STATE(3802), 1, aux_sym_case_item_repeat1, - [160730] = 4, + [161966] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(9041), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160743] = 4, + ACTIONS(3875), 1, + anon_sym_COMMA, + ACTIONS(9095), 1, + anon_sym_RPAREN_RPAREN, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [161979] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(9043), 1, + ACTIONS(8636), 1, anon_sym_RPAREN, - STATE(3850), 1, + STATE(3905), 1, aux_sym_case_item_repeat1, - [160756] = 4, + [161992] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9045), 1, + ACTIONS(9097), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160769] = 4, + [162005] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9047), 1, + ACTIONS(9099), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160782] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8850), 1, - anon_sym_SEMI_AMP, - ACTIONS(8852), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9049), 1, - anon_sym_SEMI_SEMI, - [160795] = 4, + [162018] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(9051), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160808] = 4, + ACTIONS(8910), 1, + anon_sym_COMMA, + ACTIONS(9101), 1, + anon_sym_RPAREN_RPAREN, + STATE(3923), 1, + aux_sym__for_body_repeat1, + [162031] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9053), 1, + ACTIONS(9103), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [160821] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9055), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8792), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [160832] = 4, + [162044] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8983), 1, + ACTIONS(8952), 1, anon_sym_COMMA, - ACTIONS(9057), 1, + ACTIONS(9105), 1, anon_sym_RPAREN, - STATE(3873), 1, + STATE(3806), 1, aux_sym__for_body_repeat1, - [160845] = 3, + [162057] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(9059), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160856] = 4, + STATE(3728), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(8830), 2, + sym__concat, + aux_sym_concatenation_token1, + [162068] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(9061), 1, + ACTIONS(9107), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [160869] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8983), 1, - anon_sym_COMMA, - ACTIONS(9063), 1, - anon_sym_RPAREN, - STATE(3846), 1, + STATE(3923), 1, aux_sym__for_body_repeat1, - [160882] = 4, + [162081] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8983), 1, - anon_sym_COMMA, - ACTIONS(9065), 1, - anon_sym_RPAREN, - STATE(3846), 1, - aux_sym__for_body_repeat1, - [160895] = 4, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(9109), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162092] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_PIPE, - ACTIONS(9067), 1, - anon_sym_RPAREN, - STATE(3850), 1, - aux_sym_case_item_repeat1, - [160908] = 4, + ACTIONS(8920), 1, + anon_sym_LBRACK, + ACTIONS(9111), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162103] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(8895), 1, anon_sym_SEMI_AMP, - ACTIONS(8822), 1, + ACTIONS(8897), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(9069), 1, + ACTIONS(9113), 1, anon_sym_SEMI_SEMI, - [160921] = 4, + [162116] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(9071), 1, + ACTIONS(9115), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [160934] = 4, + STATE(3823), 1, + aux_sym__for_body_repeat1, + [162129] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(9073), 1, + ACTIONS(9117), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [160947] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9075), 1, - sym__concat, - ACTIONS(3776), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [160958] = 4, + STATE(3824), 1, + aux_sym__for_body_repeat1, + [162142] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(8910), 1, anon_sym_COMMA, - ACTIONS(9077), 1, + ACTIONS(9119), 1, anon_sym_RPAREN_RPAREN, - STATE(3812), 1, + STATE(3923), 1, aux_sym__for_body_repeat1, - [160971] = 4, + [162155] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(9079), 1, + ACTIONS(9121), 1, anon_sym_RPAREN, - STATE(3850), 1, + STATE(3802), 1, aux_sym_case_item_repeat1, - [160984] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9081), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8816), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [160995] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(9083), 1, - anon_sym_RPAREN_RPAREN, - STATE(3899), 1, - aux_sym__for_body_repeat1, - [161008] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(9085), 1, - anon_sym_RPAREN_RPAREN, - STATE(3809), 1, - aux_sym__for_body_repeat1, - [161021] = 4, + [162168] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(9087), 1, - anon_sym_RPAREN_RPAREN, - STATE(3804), 1, - aux_sym__for_body_repeat1, - [161034] = 4, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(9123), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [162181] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9089), 1, + ACTIONS(9125), 1, anon_sym_RPAREN_RPAREN, - STATE(3809), 1, - aux_sym__for_body_repeat1, - [161047] = 4, + STATE(3882), 1, + aux_sym_arithmetic_expansion_repeat1, + [162194] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9091), 1, + ACTIONS(9127), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [161060] = 4, + [162207] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(9093), 1, - anon_sym_RPAREN_RPAREN, - STATE(3809), 1, - aux_sym__for_body_repeat1, - [161073] = 3, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(8654), 1, + anon_sym_RPAREN, + STATE(3812), 1, + aux_sym_case_item_repeat1, + [162220] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9095), 1, + ACTIONS(9129), 1, sym__concat, - ACTIONS(3758), 2, + ACTIONS(3857), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161084] = 4, + [162231] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(9097), 1, - anon_sym_RPAREN_RPAREN, - STATE(3808), 1, - aux_sym__for_body_repeat1, - [161097] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8626), 1, + ACTIONS(9131), 1, anon_sym_RPAREN, - STATE(3835), 1, + STATE(3802), 1, aux_sym_case_item_repeat1, - [161110] = 3, + [162244] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9099), 1, + ACTIONS(9133), 1, sym__concat, - ACTIONS(3770), 2, + ACTIONS(3848), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161121] = 4, + [162255] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9101), 1, + ACTIONS(9135), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [161134] = 4, + [162268] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(9103), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [161147] = 4, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(9137), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [162281] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8983), 1, + ACTIONS(8952), 1, anon_sym_COMMA, - ACTIONS(9105), 1, + ACTIONS(9139), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3806), 1, aux_sym__for_body_repeat1, - [161160] = 4, + [162294] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(9107), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [161173] = 3, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(9141), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [162307] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9109), 1, - sym__concat, - ACTIONS(3802), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [161184] = 4, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(9143), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [162320] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9111), 1, + ACTIONS(9145), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [161197] = 4, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8870), 1, - anon_sym_COMMA, - ACTIONS(9113), 1, - anon_sym_RPAREN_RPAREN, - STATE(3809), 1, - aux_sym__for_body_repeat1, - [161210] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8802), 3, - sym__concat, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [161219] = 4, + [162333] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(4115), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(9115), 1, - anon_sym_COMMA, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [161232] = 4, + ACTIONS(8885), 1, + anon_sym_SEMI_AMP, + ACTIONS(8887), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(9147), 1, + anon_sym_SEMI_SEMI, + [162346] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8584), 1, + ACTIONS(8618), 1, anon_sym_PIPE, - ACTIONS(8614), 1, + ACTIONS(8652), 1, anon_sym_RPAREN, - STATE(3863), 1, + STATE(3832), 1, aux_sym_case_item_repeat1, - [161245] = 4, + [162359] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9118), 1, + ACTIONS(9149), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [161258] = 3, + [162372] = 3, ACTIONS(63), 1, sym_comment, - STATE(3722), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(8774), 2, - sym__concat, - aux_sym_concatenation_token1, - [161269] = 4, + ACTIONS(1167), 1, + sym__special_character, + ACTIONS(1169), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [162383] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9120), 1, + ACTIONS(9151), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [161282] = 4, + [162396] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - ACTIONS(9122), 1, + ACTIONS(9153), 1, anon_sym_RPAREN_RPAREN, - STATE(3901), 1, + STATE(3882), 1, aux_sym_arithmetic_expansion_repeat1, - [161295] = 4, + [162409] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_COMMA, - ACTIONS(9124), 1, - anon_sym_RPAREN_RPAREN, - STATE(3901), 1, - aux_sym_arithmetic_expansion_repeat1, - [161308] = 3, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(9155), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [162422] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9126), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8782), 2, + ACTIONS(8618), 1, + anon_sym_PIPE, + ACTIONS(9157), 1, + anon_sym_RPAREN, + STATE(3802), 1, + aux_sym_case_item_repeat1, + [162435] = 4, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8807), 1, anon_sym_SEMI_AMP, + ACTIONS(8809), 1, anon_sym_SEMI_SEMI_AMP, - [161319] = 3, + ACTIONS(9159), 1, + anon_sym_SEMI_SEMI, + [162448] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, + ACTIONS(8920), 1, anon_sym_LBRACK, - ACTIONS(9128), 2, + ACTIONS(9161), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161330] = 3, + [162459] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_LBRACK, - ACTIONS(9130), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [161341] = 3, + ACTIONS(8770), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(9163), 1, + anon_sym_COMMA, + STATE(3923), 1, + aux_sym__for_body_repeat1, + [162472] = 4, ACTIONS(63), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_SLASH, - ACTIONS(9134), 1, - anon_sym_RBRACE3, - [161351] = 3, + ACTIONS(8910), 1, + anon_sym_COMMA, + ACTIONS(9166), 1, + anon_sym_RPAREN_RPAREN, + STATE(3793), 1, + aux_sym__for_body_repeat1, + [162485] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_COLON, - ACTIONS(9138), 1, - anon_sym_RBRACE3, - [161361] = 3, + ACTIONS(5346), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3576), 1, + sym_expansion, + [162495] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8656), 1, - anon_sym_SLASH, - ACTIONS(8658), 1, - anon_sym_RBRACE3, - [161371] = 3, + ACTIONS(5881), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1102), 1, + sym_expansion, + [162505] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6903), 1, + ACTIONS(6035), 1, anon_sym_DOLLAR_LBRACE, - STATE(1846), 1, + STATE(1037), 1, sym_expansion, - [161381] = 3, + [162515] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5304), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - STATE(2488), 1, + STATE(2508), 1, sym_expansion, - [161391] = 3, + [162525] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5162), 1, + ACTIONS(4673), 1, anon_sym_DOLLAR_LBRACE, - STATE(2632), 1, + STATE(1240), 1, sym_expansion, - [161401] = 3, + [162535] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6943), 1, + ACTIONS(5230), 1, anon_sym_DOLLAR_LBRACE, - STATE(2042), 1, + STATE(3737), 1, sym_expansion, - [161411] = 3, + [162545] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(721), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_LBRACE, - STATE(675), 1, + STATE(1692), 1, sym_expansion, - [161421] = 2, + [162555] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9128), 2, + ACTIONS(3848), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161429] = 2, + [162563] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3693), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [161437] = 3, + ACTIONS(9161), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162571] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(4990), 1, anon_sym_DOLLAR_LBRACE, - STATE(901), 1, + STATE(2939), 1, sym_expansion, - [161447] = 3, + [162581] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(4427), 1, anon_sym_DOLLAR_LBRACE, - STATE(3613), 1, + STATE(891), 1, sym_expansion, - [161457] = 3, + [162591] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5971), 1, - anon_sym_DOLLAR_LBRACE, - STATE(912), 1, - sym_expansion, - [161467] = 3, + ACTIONS(8891), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162599] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4467), 1, + ACTIONS(8730), 1, + anon_sym_do, + STATE(2862), 1, + sym_do_group, + [162609] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5376), 1, anon_sym_DOLLAR_LBRACE, - STATE(1102), 1, + STATE(2599), 1, sym_expansion, - [161477] = 2, + [162619] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8826), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [161485] = 3, + ACTIONS(9070), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162627] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(997), 1, + ACTIONS(7105), 1, anon_sym_DOLLAR_LBRACE, - STATE(1403), 1, + STATE(2054), 1, sym_expansion, - [161495] = 3, + [162637] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6981), 1, + ACTIONS(4467), 1, anon_sym_DOLLAR_LBRACE, - STATE(1911), 1, + STATE(2495), 1, sym_expansion, - [161505] = 2, + [162647] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9059), 2, + ACTIONS(3857), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161513] = 2, + [162655] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3802), 2, + ACTIONS(9111), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161521] = 3, + [162663] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9140), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(9142), 1, - aux_sym__simple_variable_name_token1, - [161531] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4353), 1, + ACTIONS(4549), 1, anon_sym_DOLLAR_LBRACE, - STATE(735), 1, + STATE(1012), 1, sym_expansion, - [161541] = 3, + [162673] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(1217), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [162681] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4930), 1, anon_sym_DOLLAR_LBRACE, - STATE(338), 1, + STATE(840), 1, sym_expansion, - [161551] = 2, + [162691] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3776), 2, + ACTIONS(9109), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161559] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8713), 1, - anon_sym_do, - STATE(2758), 1, - sym_do_group, - [161569] = 3, + [162699] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(971), 1, + ACTIONS(4838), 1, anon_sym_DOLLAR_LBRACE, - STATE(1489), 1, + STATE(1723), 1, sym_expansion, - [161579] = 2, + [162709] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9088), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162717] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9033), 2, + ACTIONS(8918), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161587] = 3, + [162725] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8770), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [162733] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9144), 1, + ACTIONS(9168), 1, + anon_sym_SLASH, + ACTIONS(9170), 1, anon_sym_RBRACE3, - ACTIONS(9146), 1, - sym_regex, - [161597] = 3, + [162743] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(9172), 1, + anon_sym_COLON, + ACTIONS(9174), 1, + anon_sym_RBRACE3, + [162753] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9176), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4025), 1, + sym_expansion, + [162763] = 3, + ACTIONS(53), 1, anon_sym_DOLLAR_LBRACE, - STATE(1557), 1, + ACTIONS(63), 1, + sym_comment, + STATE(794), 1, sym_expansion, - [161607] = 3, + [162773] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8713), 1, + ACTIONS(8763), 1, anon_sym_do, - STATE(2839), 1, + STATE(2878), 1, sym_do_group, - [161617] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(4145), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3723), 1, - sym_expansion, - [161627] = 3, + [162783] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_LBRACE, - STATE(1118), 1, + STATE(3163), 1, sym_expansion, - [161637] = 3, + [162793] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4593), 1, anon_sym_DOLLAR_LBRACE, - STATE(927), 1, + STATE(2084), 1, sym_expansion, - [161647] = 2, + [162803] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9130), 2, + ACTIONS(9078), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161655] = 3, + [162811] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(6852), 1, anon_sym_DOLLAR_LBRACE, - STATE(889), 1, + STATE(2028), 1, sym_expansion, - [161665] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9012), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [161673] = 3, + [162821] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8691), 1, + ACTIONS(8763), 1, anon_sym_do, - STATE(2807), 1, + STATE(2776), 1, sym_do_group, - [161683] = 2, + [162831] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5464), 1, + anon_sym_DOLLAR_LBRACE, + STATE(3109), 1, + sym_expansion, + [162841] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8999), 2, + ACTIONS(9068), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161691] = 2, + [162849] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9019), 2, + ACTIONS(9080), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161699] = 3, + [162857] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(4894), 1, anon_sym_DOLLAR_LBRACE, - STATE(2411), 1, + STATE(1234), 1, sym_expansion, - [161709] = 2, + [162867] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9029), 2, + ACTIONS(9066), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161717] = 3, + [162875] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4003), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162883] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(4007), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162891] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5985), 1, anon_sym_DOLLAR_LBRACE, - STATE(2902), 1, + STATE(1829), 1, sym_expansion, - [161727] = 3, + [162901] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9148), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(9150), 1, - aux_sym__simple_variable_name_token1, - [161737] = 2, + ACTIONS(4794), 1, + anon_sym_DOLLAR_LBRACE, + STATE(741), 1, + sym_expansion, + [162911] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8993), 2, + ACTIONS(9036), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161745] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8679), 1, - anon_sym_do, - STATE(3175), 1, - sym_do_group, - [161755] = 2, + [162919] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8717), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [161763] = 3, + ACTIONS(9052), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162927] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LBRACE, - STATE(1633), 1, + STATE(863), 1, sym_expansion, - [161773] = 3, + [162937] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8691), 1, - anon_sym_do, - STATE(2803), 1, - sym_do_group, - [161783] = 2, + ACTIONS(9040), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [162945] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8738), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161791] = 3, + ACTIONS(9178), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9180), 1, + aux_sym__simple_variable_name_token1, + [162955] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5102), 1, - anon_sym_DOLLAR_LBRACE, - STATE(3713), 1, - sym_expansion, - [161801] = 3, + ACTIONS(9182), 1, + anon_sym_RBRACE3, + ACTIONS(9184), 1, + sym_regex, + [162965] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(288), 1, anon_sym_DOLLAR_LBRACE, - STATE(1115), 1, + STATE(406), 1, sym_expansion, - [161811] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8977), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [161819] = 2, + [162975] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8761), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161827] = 3, + ACTIONS(1225), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [162983] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6019), 1, + ACTIONS(5494), 1, anon_sym_DOLLAR_LBRACE, - STATE(1170), 1, + STATE(1608), 1, sym_expansion, - [161837] = 2, + [162993] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8761), 2, + ACTIONS(8891), 2, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - [161845] = 3, + [163001] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(4175), 1, anon_sym_DOLLAR_LBRACE, - STATE(1721), 1, + STATE(3776), 1, sym_expansion, - [161855] = 3, + [163011] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8679), 1, - anon_sym_do, - STATE(3211), 1, - sym_do_group, - [161865] = 2, + ACTIONS(8865), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [163019] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8963), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [161873] = 3, + ACTIONS(8722), 1, + anon_sym_do, + STATE(3200), 1, + sym_do_group, + [163029] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(503), 1, anon_sym_DOLLAR_LBRACE, - STATE(3070), 1, + STATE(633), 1, sym_expansion, - [161883] = 2, + [163039] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8953), 2, + ACTIONS(9026), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161891] = 3, + [163047] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4856), 1, + ACTIONS(6185), 1, anon_sym_DOLLAR_LBRACE, - STATE(1051), 1, + STATE(881), 1, sym_expansion, - [161901] = 3, + [163057] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5438), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LBRACE, - STATE(3122), 1, + STATE(1324), 1, sym_expansion, - [161911] = 2, + [163067] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8722), 1, + anon_sym_do, + STATE(3226), 1, + sym_do_group, + [163077] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8975), 2, + ACTIONS(9006), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161919] = 3, + [163085] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6923), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1619), 1, - sym_expansion, - [161929] = 3, + ACTIONS(8730), 1, + anon_sym_do, + STATE(2812), 1, + sym_do_group, + [163095] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACE, - STATE(2067), 1, + STATE(356), 1, sym_expansion, - [161939] = 2, + [163105] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1202), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [161947] = 2, + ACTIONS(2473), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1620), 1, + sym_expansion, + [163115] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8949), 2, + ACTIONS(8998), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [161955] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5244), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2587), 1, - sym_expansion, - [161965] = 2, + [163123] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1206), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [161973] = 2, + ACTIONS(8865), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163131] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8738), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [161981] = 3, + ACTIONS(8988), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [163139] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9152), 1, + ACTIONS(987), 1, anon_sym_DOLLAR_LBRACE, - STATE(3989), 1, + STATE(1488), 1, sym_expansion, - [161991] = 2, + [163149] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(8951), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [161999] = 2, + ACTIONS(8783), 1, + anon_sym_SLASH, + ACTIONS(8785), 1, + anon_sym_RBRACE3, + [163159] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8912), 2, + ACTIONS(8984), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [162007] = 3, + [163167] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6221), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR_LBRACE, - STATE(913), 1, + STATE(3491), 1, sym_expansion, - [162017] = 3, + [163177] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(503), 1, - anon_sym_DOLLAR_LBRACE, - STATE(628), 1, - sym_expansion, - [162027] = 2, + ACTIONS(9186), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9188), 1, + aux_sym__simple_variable_name_token1, + [163187] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8872), 2, + ACTIONS(8982), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [162035] = 3, + [163195] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5566), 1, + ACTIONS(957), 1, anon_sym_DOLLAR_LBRACE, - STATE(1564), 1, + STATE(1505), 1, sym_expansion, - [162045] = 2, + [163205] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1222), 2, + ACTIONS(3661), 2, anon_sym_COLON, anon_sym_RBRACE3, - [162053] = 3, + [163213] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(4357), 1, + anon_sym_DOLLAR_LBRACE, + STATE(932), 1, + sym_expansion, + [163223] = 3, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5905), 1, anon_sym_DOLLAR_LBRACE, - STATE(915), 1, + STATE(1727), 1, sym_expansion, - [162063] = 2, + [163233] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1230), 2, + ACTIONS(1241), 2, anon_sym_COLON, anon_sym_RBRACE3, - [162071] = 2, + [163241] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8937), 2, + ACTIONS(8972), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [162079] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1264), 2, - anon_sym_COLON, - anon_sym_RBRACE3, - [162087] = 2, + [163249] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1268), 2, + ACTIONS(1249), 2, anon_sym_COLON, anon_sym_RBRACE3, - [162095] = 3, + [163257] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(167), 1, + ACTIONS(7145), 1, anon_sym_DOLLAR_LBRACE, - STATE(365), 1, + STATE(1923), 1, sym_expansion, - [162105] = 3, + [163267] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5288), 1, anon_sym_DOLLAR_LBRACE, - STATE(3480), 1, + STATE(2515), 1, sym_expansion, - [162115] = 3, + [163277] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(4321), 1, - anon_sym_DOLLAR_LBRACE, - STATE(2412), 1, - sym_expansion, - [162125] = 2, + ACTIONS(8770), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163285] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3948), 2, + ACTIONS(8960), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [162133] = 2, + [163293] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(3942), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162141] = 3, - ACTIONS(53), 1, + ACTIONS(167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - sym_comment, - STATE(894), 1, + STATE(365), 1, sym_expansion, - [162151] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8906), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162159] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8886), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162167] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8826), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162175] = 3, + [163303] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(5158), 1, anon_sym_DOLLAR_LBRACE, - STATE(3077), 1, + STATE(2687), 1, sym_expansion, - [162185] = 3, + [163313] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(1069), 1, - anon_sym_DOLLAR_LBRACE, - STATE(1380), 1, - sym_expansion, - [162195] = 2, + ACTIONS(9190), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(9192), 1, + aux_sym__simple_variable_name_token1, + [163323] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8884), 2, + ACTIONS(8948), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [162203] = 3, + [163331] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(6483), 1, anon_sym_DOLLAR_LBRACE, - STATE(1611), 1, + STATE(1086), 1, sym_expansion, - [162213] = 2, + [163341] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8876), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162221] = 3, + ACTIONS(8791), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [163349] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - STATE(395), 1, + STATE(740), 1, sym_expansion, - [162231] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8888), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [162239] = 3, + [163359] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LBRACE, - STATE(810), 1, + STATE(1568), 1, sym_expansion, - [162249] = 3, + [163369] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(6651), 1, + ACTIONS(4637), 1, anon_sym_DOLLAR_LBRACE, - STATE(1978), 1, + STATE(3080), 1, sym_expansion, - [162259] = 3, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9154), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(9156), 1, - aux_sym__simple_variable_name_token1, - [162269] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9158), 1, - anon_sym_RPAREN, - [162276] = 2, + [163379] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_RBRACE2, - [162283] = 2, + ACTIONS(8926), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [163387] = 3, ACTIONS(63), 1, sym_comment, - ACTIONS(9162), 1, - anon_sym_BQUOTE, - [162290] = 2, + ACTIONS(4497), 1, + anon_sym_DOLLAR_LBRACE, + STATE(1067), 1, + sym_expansion, + [163397] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9164), 1, + ACTIONS(1261), 2, + anon_sym_COLON, anon_sym_RBRACE3, - [162297] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9166), 1, - sym_heredoc_end, - [162304] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9168), 1, - anon_sym_BQUOTE, - [162311] = 2, + [163405] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9162), 1, - anon_sym_RPAREN, - [162318] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9170), 1, - aux_sym_brace_expression_token1, - [162325] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9172), 1, - anon_sym_RBRACE2, - [162332] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9174), 1, + ACTIONS(1265), 2, + anon_sym_COLON, anon_sym_RBRACE3, - [162339] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9176), 1, - sym_heredoc_end, - [162346] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9178), 1, - anon_sym_RBRACE2, - [162353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9180), 1, - aux_sym_heredoc_redirect_token1, - [162360] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9182), 1, - aux_sym_brace_expression_token1, - [162367] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9184), 1, - anon_sym_RPAREN, - [162374] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9186), 1, - anon_sym_BQUOTE, - [162381] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9188), 1, - anon_sym_BQUOTE, - [162388] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9190), 1, - aux_sym_brace_expression_token1, - [162395] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9192), 1, - anon_sym_BQUOTE, - [162402] = 2, + [163413] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9194), 1, - anon_sym_BQUOTE, - [162409] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9188), 1, - anon_sym_RPAREN, - [162416] = 2, + aux_sym_brace_expression_token1, + [163420] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9196), 1, - anon_sym_RBRACE3, - [162423] = 2, + anon_sym_esac, + [163427] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9198), 1, - anon_sym_esac, - [162430] = 2, + anon_sym_BQUOTE, + [163434] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9200), 1, - anon_sym_fi, - [162437] = 2, + aux_sym_brace_expression_token1, + [163441] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9202), 1, - aux_sym_brace_expression_token1, - [162444] = 2, + anon_sym_RBRACE3, + [163448] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9204), 1, - aux_sym_brace_expression_token1, - [162451] = 2, + anon_sym_BQUOTE, + [163455] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9206), 1, - anon_sym_RPAREN, - [162458] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9186), 1, - anon_sym_RPAREN, - [162465] = 2, + aux_sym_brace_expression_token1, + [163462] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9208), 1, anon_sym_BQUOTE, - [162472] = 2, + [163469] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9210), 1, - aux_sym_brace_expression_token1, - [162479] = 2, + anon_sym_RBRACE3, + [163476] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9212), 1, - anon_sym_RBRACE2, - [162486] = 2, + anon_sym_RBRACE3, + [163483] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9214), 1, - anon_sym_RBRACE3, - [162493] = 2, + aux_sym_brace_expression_token1, + [163490] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9216), 1, - anon_sym_BQUOTE, - [162500] = 2, + anon_sym_esac, + [163497] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9218), 1, - aux_sym_brace_expression_token1, - [162507] = 2, + anon_sym_esac, + [163504] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9220), 1, - aux_sym_brace_expression_token1, - [162514] = 2, + anon_sym_BQUOTE, + [163511] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9222), 1, - anon_sym_RBRACE3, - [162521] = 2, + anon_sym_RPAREN, + [163518] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9224), 1, - anon_sym_RBRACE3, - [162528] = 2, + aux_sym_brace_expression_token1, + [163525] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9226), 1, - anon_sym_RBRACE3, - [162535] = 2, + anon_sym_RPAREN, + [163532] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9228), 1, aux_sym_brace_expression_token1, - [162542] = 2, + [163539] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9230), 1, - anon_sym_RBRACE3, - [162549] = 2, + anon_sym_esac, + [163546] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9232), 1, - anon_sym_esac, - [162556] = 2, + anon_sym_fi, + [163553] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9234), 1, - anon_sym_BQUOTE, - [162563] = 2, + aux_sym_brace_expression_token1, + [163560] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9236), 1, - aux_sym_brace_expression_token1, - [162570] = 2, + anon_sym_RBRACE2, + [163567] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9238), 1, - anon_sym_BQUOTE, - [162577] = 2, + ACTIONS(9198), 1, + anon_sym_RPAREN, + [163574] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9158), 1, - anon_sym_BQUOTE, - [162584] = 2, + ACTIONS(9204), 1, + anon_sym_RPAREN, + [163581] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_BQUOTE, - [162591] = 2, + ACTIONS(9238), 1, + aux_sym_brace_expression_token1, + [163588] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9242), 1, - anon_sym_RBRACE2, - [162598] = 2, + ACTIONS(9240), 1, + anon_sym_RBRACE3, + [163595] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [162605] = 2, + ACTIONS(9242), 1, + anon_sym_BQUOTE, + [163602] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9244), 1, - anon_sym_BQUOTE, - [162612] = 2, + anon_sym_esac, + [163609] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9246), 1, + anon_sym_esac, + [163616] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9222), 1, anon_sym_BQUOTE, - [162619] = 2, + [163623] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9248), 1, - anon_sym_RPAREN, - [162626] = 2, + anon_sym_RBRACE2, + [163630] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9250), 1, - aux_sym_brace_expression_token1, - [162633] = 2, + anon_sym_RBRACE2, + [163637] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9252), 1, - anon_sym_RPAREN, - [162640] = 2, + anon_sym_RBRACE3, + [163644] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9254), 1, - anon_sym_RPAREN, - [162647] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5725), 1, - anon_sym_RBRACK, - [162654] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8596), 1, - anon_sym_fi, - [162661] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(5817), 1, - anon_sym_RBRACK, - [162668] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym_RPAREN, - [162675] = 2, + aux_sym_brace_expression_token1, + [163651] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9256), 1, - anon_sym_RBRACE3, - [162682] = 2, + aux_sym_brace_expression_token1, + [163658] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9258), 1, - anon_sym_RPAREN, - [162689] = 2, + anon_sym_esac, + [163665] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9260), 1, - aux_sym_brace_expression_token1, - [162696] = 2, + anon_sym_fi, + [163672] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9262), 1, - anon_sym_RBRACE2, - [162703] = 2, + sym_heredoc_end, + [163679] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9264), 1, - anon_sym_RBRACE3, - [162710] = 2, + sym_heredoc_end, + [163686] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9266), 1, - anon_sym_RPAREN, - [162717] = 2, + anon_sym_RBRACE2, + [163693] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9268), 1, - anon_sym_BQUOTE, - [162724] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9270), 1, anon_sym_RBRACE2, - [162731] = 2, + [163700] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9266), 1, - anon_sym_BQUOTE, - [162738] = 2, + ACTIONS(9270), 1, + anon_sym_RPAREN, + [163707] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9272), 1, aux_sym_brace_expression_token1, - [162745] = 2, + [163714] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9274), 1, - aux_sym_brace_expression_token1, - [162752] = 2, + anon_sym_RPAREN, + [163721] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9276), 1, anon_sym_RPAREN, - [162759] = 2, + [163728] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9278), 1, - anon_sym_BQUOTE, - [162766] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9258), 1, - anon_sym_BQUOTE, - [162773] = 2, + anon_sym_RPAREN, + [163735] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9280), 1, - anon_sym_RBRACE3, - [162780] = 2, + anon_sym_esac, + [163742] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9282), 1, anon_sym_RPAREN, - [162787] = 2, + [163749] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9284), 1, - anon_sym_RPAREN, - [162794] = 2, + anon_sym_BQUOTE, + [163756] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9286), 1, - anon_sym_esac, - [162801] = 2, + anon_sym_BQUOTE, + [163763] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9288), 1, - aux_sym_brace_expression_token1, - [162808] = 2, + anon_sym_BQUOTE, + [163770] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9290), 1, - anon_sym_RBRACE2, - [162815] = 2, + aux_sym_brace_expression_token1, + [163777] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9292), 1, anon_sym_BQUOTE, - [162822] = 2, - ACTIONS(63), 1, + [163784] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9294), 1, - anon_sym_BQUOTE, - [162829] = 2, + aux_sym_heredoc_redirect_token1, + [163791] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5546), 1, - anon_sym_RBRACK, - [162836] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [163798] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9296), 1, - anon_sym_RBRACE3, - [162843] = 2, + anon_sym_esac, + [163805] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9292), 1, + ACTIONS(9286), 1, anon_sym_RPAREN, - [162850] = 2, + [163812] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9298), 1, - anon_sym_RPAREN, - [162857] = 2, + anon_sym_RBRACE2, + [163819] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9300), 1, aux_sym_brace_expression_token1, - [162864] = 2, + [163826] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9302), 1, - anon_sym_RPAREN, - [162871] = 2, + anon_sym_BQUOTE, + [163833] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9304), 1, - anon_sym_RPAREN, - [162878] = 2, + aux_sym_brace_expression_token1, + [163840] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9306), 1, - anon_sym_BQUOTE, - [162885] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9302), 1, - anon_sym_BQUOTE, - [162892] = 2, + anon_sym_RBRACE3, + [163847] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9308), 1, - anon_sym_RPAREN, - [162899] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE3, + [163854] = 2, + ACTIONS(63), 1, sym_comment, ACTIONS(9310), 1, - aux_sym_heredoc_redirect_token1, - [162906] = 2, + anon_sym_RBRACE3, + [163861] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9312), 1, - anon_sym_RBRACE2, - [162913] = 2, + sym_heredoc_end, + [163868] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8644), 1, + anon_sym_fi, + [163875] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9314), 1, - aux_sym_brace_expression_token1, - [162920] = 2, + anon_sym_RPAREN, + [163882] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9316), 1, - anon_sym_BQUOTE, - [162927] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [163889] = 2, + ACTIONS(63), 1, sym_comment, ACTIONS(9318), 1, - aux_sym_heredoc_redirect_token1, - [162934] = 2, + aux_sym_brace_expression_token1, + [163896] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9320), 1, anon_sym_BQUOTE, - [162941] = 2, - ACTIONS(3), 1, + [163903] = 2, + ACTIONS(63), 1, sym_comment, ACTIONS(9322), 1, - aux_sym_heredoc_redirect_token1, - [162948] = 2, + sym_heredoc_end, + [163910] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9324), 1, - anon_sym_RBRACE3, - [162955] = 2, + anon_sym_BQUOTE, + [163917] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9326), 1, - aux_sym_brace_expression_token1, - [162962] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9328), 1, anon_sym_BQUOTE, - [162969] = 2, - ACTIONS(63), 1, + [163924] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 1, - anon_sym_RPAREN, - [162976] = 2, + ACTIONS(9328), 1, + aux_sym_heredoc_redirect_token1, + [163931] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9330), 1, - anon_sym_RBRACE3, - [162983] = 2, + anon_sym_BQUOTE, + [163938] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9282), 1, + ACTIONS(9316), 1, anon_sym_BQUOTE, - [162990] = 2, + [163945] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9332), 1, - anon_sym_RPAREN, - [162997] = 2, + aux_sym_brace_expression_token1, + [163952] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9334), 1, - aux_sym_brace_expression_token1, - [163004] = 2, + anon_sym_RPAREN, + [163959] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9336), 1, - aux_sym_brace_expression_token1, - [163011] = 2, + ACTIONS(9302), 1, + anon_sym_RPAREN, + [163966] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(9336), 1, anon_sym_RBRACE3, - [163018] = 2, + [163973] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_RPAREN, - [163025] = 2, + ACTIONS(9314), 1, + anon_sym_BQUOTE, + [163980] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9298), 1, - anon_sym_BQUOTE, - [163032] = 2, + ACTIONS(9338), 1, + anon_sym_RPAREN, + [163987] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9340), 1, - anon_sym_RBRACE2, - [163039] = 2, + anon_sym_RBRACE3, + [163994] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9342), 1, - aux_sym_brace_expression_token1, - [163046] = 2, + anon_sym_RPAREN, + [164001] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9344), 1, - anon_sym_BQUOTE, - [163053] = 2, + aux_sym_brace_expression_token1, + [164008] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9346), 1, - anon_sym_RPAREN, - [163060] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163067] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163074] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163081] = 2, + anon_sym_BQUOTE, + [164015] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9348), 1, - aux_sym_brace_expression_token1, - [163088] = 2, + anon_sym_esac, + [164022] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9350), 1, - anon_sym_BQUOTE, - [163095] = 2, + anon_sym_RBRACE2, + [164029] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163102] = 2, + ACTIONS(5572), 1, + anon_sym_RBRACK, + [164036] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163109] = 2, + ACTIONS(5570), 1, + anon_sym_RBRACK, + [164043] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163116] = 2, - ACTIONS(63), 1, + ACTIONS(9342), 1, + anon_sym_BQUOTE, + [164050] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9352), 1, - anon_sym_BQUOTE, - [163123] = 2, + aux_sym_heredoc_redirect_token1, + [164057] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9354), 1, aux_sym_brace_expression_token1, - [163130] = 2, + [164064] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9356), 1, - anon_sym_RBRACE3, - [163137] = 2, + anon_sym_RPAREN, + [164071] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163144] = 2, + ACTIONS(9358), 1, + anon_sym_RPAREN, + [164078] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163151] = 2, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + [164085] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163158] = 2, + ACTIONS(9362), 1, + anon_sym_esac, + [164092] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163165] = 2, + ACTIONS(9364), 1, + anon_sym_BQUOTE, + [164099] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9358), 1, + ACTIONS(9366), 1, aux_sym_brace_expression_token1, - [163172] = 2, - ACTIONS(63), 1, + [164106] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9350), 1, - anon_sym_RPAREN, - [163179] = 2, + ACTIONS(9368), 1, + aux_sym_heredoc_redirect_token1, + [164113] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9360), 1, - anon_sym_RBRACE3, - [163186] = 2, + ACTIONS(9370), 1, + anon_sym_RBRACE2, + [164120] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163193] = 2, + ACTIONS(9372), 1, + anon_sym_RBRACE2, + [164127] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9362), 1, + ACTIONS(9360), 1, anon_sym_RPAREN, - [163200] = 2, + [164134] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, - anon_sym_RBRACE3, - [163207] = 2, + ACTIONS(8656), 1, + anon_sym_fi, + [164141] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9374), 1, aux_sym_brace_expression_token1, - [163214] = 2, + [164148] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9366), 1, - anon_sym_BQUOTE, - [163221] = 2, + ACTIONS(9376), 1, + anon_sym_esac, + [164155] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, - anon_sym_RBRACE3, - [163228] = 2, + ACTIONS(9378), 1, + anon_sym_esac, + [164162] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, - anon_sym_RBRACE3, - [163235] = 2, + ACTIONS(9380), 1, + sym_heredoc_end, + [164169] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, - anon_sym_RBRACE3, - [163242] = 2, + ACTIONS(9382), 1, + aux_sym_brace_expression_token1, + [164176] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, + ACTIONS(9384), 1, anon_sym_RBRACE3, - [163249] = 2, + [164183] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9368), 1, + ACTIONS(9386), 1, aux_sym_brace_expression_token1, - [163256] = 2, + [164190] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9370), 1, + ACTIONS(9388), 1, + anon_sym_RBRACE2, + [164197] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9390), 1, sym_heredoc_end, - [163263] = 2, + [164204] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8721), 1, - anon_sym_RBRACE3, - [163270] = 2, + ACTIONS(8682), 1, + anon_sym_fi, + [164211] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163277] = 2, + ACTIONS(9392), 1, + anon_sym_RBRACE2, + [164218] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, + ACTIONS(9394), 1, anon_sym_RBRACE3, - [163284] = 2, + [164225] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163291] = 2, + ACTIONS(9396), 1, + aux_sym_brace_expression_token1, + [164232] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9398), 1, + anon_sym_RPAREN, + [164239] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9400), 1, + anon_sym_BQUOTE, + [164246] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9402), 1, + anon_sym_BQUOTE, + [164253] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9372), 1, - aux_sym_brace_expression_token1, - [163298] = 2, + ACTIONS(9398), 1, + anon_sym_BQUOTE, + [164260] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9374), 1, - sym_heredoc_end, - [163305] = 2, + ACTIONS(9404), 1, + anon_sym_RPAREN, + [164267] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163312] = 2, + ACTIONS(9406), 1, + aux_sym_brace_expression_token1, + [164274] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, + ACTIONS(3264), 1, anon_sym_RBRACE3, - [163319] = 2, + [164281] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym_RBRACE3, - [163326] = 2, + ACTIONS(9408), 1, + anon_sym_RBRACE2, + [164288] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8351), 1, - anon_sym_RBRACE3, - [163333] = 2, + ACTIONS(9410), 1, + anon_sym_esac, + [164295] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9376), 1, - aux_sym_brace_expression_token1, - [163340] = 2, + ACTIONS(9276), 1, + anon_sym_BQUOTE, + [164302] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9362), 1, - anon_sym_BQUOTE, - [163347] = 2, + ACTIONS(9412), 1, + anon_sym_RBRACE2, + [164309] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9378), 1, - anon_sym_RPAREN, - [163354] = 2, + ACTIONS(9414), 1, + anon_sym_esac, + [164316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9416), 1, + aux_sym_heredoc_redirect_token1, + [164323] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8784), 1, + ACTIONS(9418), 1, anon_sym_RBRACE3, - [163361] = 2, + [164330] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9380), 1, - anon_sym_esac, - [163368] = 2, + ACTIONS(9420), 1, + anon_sym_RPAREN, + [164337] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9382), 1, - anon_sym_BQUOTE, - [163375] = 2, + ACTIONS(9422), 1, + anon_sym_RBRACE2, + [164344] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9384), 1, + ACTIONS(5588), 1, + anon_sym_RBRACK, + [164351] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9424), 1, aux_sym_brace_expression_token1, - [163382] = 2, + [164358] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9386), 1, - anon_sym_RBRACE2, - [163389] = 2, + ACTIONS(5586), 1, + anon_sym_RBRACK, + [164365] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9388), 1, + ACTIONS(9426), 1, anon_sym_RBRACE3, - [163396] = 2, + [164372] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9346), 1, - anon_sym_BQUOTE, - [163403] = 2, + ACTIONS(9428), 1, + anon_sym_RPAREN, + [164379] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9390), 1, - anon_sym_RBRACE3, - [163410] = 2, + ACTIONS(9430), 1, + anon_sym_BQUOTE, + [164386] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_RBRACE3, - [163417] = 2, + ACTIONS(9432), 1, + anon_sym_BQUOTE, + [164393] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9394), 1, + ACTIONS(9434), 1, aux_sym_brace_expression_token1, - [163424] = 2, + [164400] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8654), 1, - anon_sym_fi, - [163431] = 2, + ACTIONS(9436), 1, + anon_sym_RPAREN, + [164407] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9396), 1, + ACTIONS(8746), 1, anon_sym_RBRACE3, - [163438] = 2, + [164414] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9398), 1, + ACTIONS(8746), 1, anon_sym_RBRACE3, - [163445] = 2, + [164421] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5548), 1, - anon_sym_RBRACK, - [163452] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164428] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9400), 1, - anon_sym_RPAREN, - [163459] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164435] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9402), 1, + ACTIONS(9438), 1, aux_sym_brace_expression_token1, - [163466] = 2, + [164442] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9404), 1, - anon_sym_RPAREN, - [163473] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164449] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9406), 1, - anon_sym_RBRACE2, - [163480] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164456] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9408), 1, - anon_sym_RBRACE2, - [163487] = 2, + ACTIONS(9208), 1, + anon_sym_RPAREN, + [164463] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9410), 1, - anon_sym_esac, - [163494] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164470] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(8746), 1, anon_sym_RBRACE3, - [163501] = 2, + [164477] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9412), 1, + ACTIONS(9440), 1, aux_sym_brace_expression_token1, - [163508] = 2, + [164484] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9414), 1, - anon_sym_RBRACE2, - [163515] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164491] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9416), 1, - anon_sym_RPAREN, - [163522] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164498] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9418), 1, - anon_sym_esac, - [163529] = 2, + ACTIONS(9430), 1, + anon_sym_RPAREN, + [164505] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9420), 1, - anon_sym_BQUOTE, - [163536] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164512] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9422), 1, - anon_sym_BQUOTE, - [163543] = 2, + ACTIONS(9442), 1, + anon_sym_RBRACE3, + [164519] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9424), 1, + ACTIONS(9444), 1, aux_sym_brace_expression_token1, - [163550] = 2, + [164526] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9426), 1, - anon_sym_RBRACE2, - [163557] = 2, + ACTIONS(8742), 1, + anon_sym_RBRACE3, + [164533] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9420), 1, - anon_sym_RPAREN, - [163564] = 2, + ACTIONS(8742), 1, + anon_sym_RBRACE3, + [164540] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9428), 1, + ACTIONS(8742), 1, anon_sym_RBRACE3, - [163571] = 2, + [164547] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9430), 1, + ACTIONS(8742), 1, anon_sym_RBRACE3, - [163578] = 2, + [164554] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8630), 1, - anon_sym_fi, - [163585] = 2, + ACTIONS(8742), 1, + anon_sym_RBRACE3, + [164561] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9432), 1, + ACTIONS(9446), 1, aux_sym_brace_expression_token1, - [163592] = 2, + [164568] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9434), 1, - anon_sym_RPAREN, - [163599] = 2, + ACTIONS(8742), 1, + anon_sym_RBRACE3, + [164575] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9436), 1, - anon_sym_BQUOTE, - [163606] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164582] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9438), 1, - anon_sym_BQUOTE, - [163613] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164589] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9436), 1, - anon_sym_RPAREN, - [163620] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164596] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9440), 1, - anon_sym_RPAREN, - [163627] = 2, + ACTIONS(8746), 1, + anon_sym_RBRACE3, + [164603] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9442), 1, + ACTIONS(9448), 1, aux_sym_brace_expression_token1, - [163634] = 2, + [164610] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9444), 1, + ACTIONS(8746), 1, anon_sym_RBRACE3, - [163641] = 2, + [164617] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9446), 1, + ACTIONS(8746), 1, anon_sym_RBRACE3, - [163648] = 2, + [164624] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9448), 1, + ACTIONS(8349), 1, anon_sym_RBRACE3, - [163655] = 2, + [164631] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9450), 1, - anon_sym_RPAREN, - [163662] = 2, + anon_sym_BQUOTE, + [164638] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(8873), 1, anon_sym_RBRACE3, - [163669] = 2, + [164645] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9452), 1, aux_sym_brace_expression_token1, - [163676] = 2, - ACTIONS(63), 1, + [164652] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9454), 1, - anon_sym_BQUOTE, - [163683] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9450), 1, - anon_sym_BQUOTE, - [163690] = 2, + aux_sym_heredoc_redirect_token1, + [164659] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9456), 1, - anon_sym_BQUOTE, - [163697] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9458), 1, anon_sym_RBRACE3, - [163704] = 2, + [164666] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(9458), 1, anon_sym_RBRACE3, - [163711] = 2, + [164673] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9460), 1, - aux_sym_brace_expression_token1, - [163718] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9462), 1, - sym_word, - [163725] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9344), 1, anon_sym_RPAREN, - [163732] = 2, + [164680] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9464), 1, - anon_sym_RBRACE2, - [163739] = 2, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [164687] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5711), 1, - anon_sym_RBRACK, - [163746] = 2, + ACTIONS(9462), 1, + aux_sym_brace_expression_token1, + [164694] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5408), 1, - anon_sym_RBRACK, - [163753] = 2, + ACTIONS(9464), 1, + anon_sym_RBRACE3, + [164701] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9466), 1, - aux_sym_brace_expression_token1, - [163760] = 2, + anon_sym_RBRACE3, + [164708] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9440), 1, - anon_sym_BQUOTE, - [163767] = 2, + ACTIONS(9468), 1, + anon_sym_RBRACE3, + [164715] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9468), 1, - anon_sym_RPAREN, - [163774] = 2, + ACTIONS(9436), 1, + anon_sym_BQUOTE, + [164722] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9470), 1, - anon_sym_RBRACE2, - [163781] = 2, + anon_sym_RPAREN, + [164729] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9472), 1, - anon_sym_RBRACE2, - [163788] = 2, + aux_sym_brace_expression_token1, + [164736] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9474), 1, - anon_sym_RBRACE2, - [163795] = 2, + anon_sym_RPAREN, + [164743] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9476), 1, anon_sym_RBRACE3, - [163802] = 2, + [164750] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9478), 1, - anon_sym_RPAREN, - [163809] = 2, + anon_sym_esac, + [164757] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9480), 1, - anon_sym_esac, - [163816] = 2, + anon_sym_RBRACE2, + [164764] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9482), 1, - anon_sym_esac, - [163823] = 2, + anon_sym_RPAREN, + [164771] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9484), 1, - anon_sym_BQUOTE, - [163830] = 2, + aux_sym_brace_expression_token1, + [164778] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9486), 1, - anon_sym_BQUOTE, - [163837] = 2, + anon_sym_esac, + [164785] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9488), 1, - anon_sym_esac, - [163844] = 2, + anon_sym_RPAREN, + [164792] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9490), 1, anon_sym_esac, - [163851] = 2, + [164799] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9492), 1, - anon_sym_fi, - [163858] = 2, + ACTIONS(3260), 1, + anon_sym_RBRACE3, + [164806] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9494), 1, - anon_sym_RPAREN, - [163865] = 2, + ACTIONS(9492), 1, + anon_sym_BQUOTE, + [164813] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9484), 1, - anon_sym_RPAREN, - [163872] = 2, + ACTIONS(9494), 1, + aux_sym_brace_expression_token1, + [164820] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9496), 1, - sym_heredoc_end, - [163879] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9498), 1, - sym_heredoc_start, - [163886] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9500), 1, - anon_sym_RBRACE3, - [163893] = 2, + anon_sym_BQUOTE, + [164827] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9502), 1, - anon_sym_RBRACE3, - [163900] = 2, + ACTIONS(8622), 1, + anon_sym_fi, + [164834] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9504), 1, + ACTIONS(9498), 1, anon_sym_BQUOTE, - [163907] = 2, + [164841] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9494), 1, + ACTIONS(9482), 1, anon_sym_BQUOTE, - [163914] = 2, + [164848] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACE3, - [163921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9506), 1, - aux_sym_heredoc_redirect_token1, - [163928] = 2, + ACTIONS(9500), 1, + anon_sym_RPAREN, + [164855] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9142), 1, - aux_sym__simple_variable_name_token1, - [163935] = 2, + ACTIONS(9502), 1, + aux_sym_brace_expression_token1, + [164862] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACE3, - [163942] = 2, + ACTIONS(9504), 1, + anon_sym_RPAREN, + [164869] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACE3, - [163949] = 2, + ACTIONS(9506), 1, + anon_sym_BQUOTE, + [164876] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9508), 1, - sym_heredoc_end, - [163956] = 2, + anon_sym_BQUOTE, + [164883] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9510), 1, - anon_sym_DOT_DOT, - [163963] = 2, + anon_sym_RBRACE2, + [164890] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACE3, - [163970] = 2, + ACTIONS(9506), 1, + anon_sym_RPAREN, + [164897] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9512), 1, - anon_sym_RBRACE3, - [163977] = 2, + aux_sym_brace_expression_token1, + [164904] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9514), 1, - anon_sym_esac, - [163984] = 2, + ACTIONS(9492), 1, + anon_sym_RPAREN, + [164911] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9516), 1, - sym_heredoc_start, - [163991] = 2, + ACTIONS(9514), 1, + anon_sym_RBRACE3, + [164918] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(9516), 1, anon_sym_RBRACE3, - [163998] = 2, + [164925] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9518), 1, - anon_sym_RPAREN, - [164005] = 2, + anon_sym_in, + [164932] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9520), 1, - anon_sym_esac, - [164012] = 2, + anon_sym_in, + [164939] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9522), 1, - anon_sym_RPAREN, - [164019] = 2, + anon_sym_RBRACE2, + [164946] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_RBRACE2, - [164026] = 2, + ACTIONS(5640), 1, + anon_sym_RBRACK, + [164953] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8576), 1, - anon_sym_fi, - [164033] = 2, + ACTIONS(5642), 1, + anon_sym_RBRACK, + [164960] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9524), 1, + anon_sym_RPAREN_RPAREN, + [164967] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9526), 1, - anon_sym_LBRACK, - [164040] = 2, + anon_sym_RBRACE3, + [164974] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9528), 1, - sym_heredoc_start, - [164047] = 2, + aux_sym_brace_expression_token1, + [164981] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9530), 1, - anon_sym_BQUOTE, - [164054] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [164988] = 2, + ACTIONS(63), 1, sym_comment, ACTIONS(9532), 1, - aux_sym_heredoc_redirect_token1, - [164061] = 2, + anon_sym_RBRACE3, + [164995] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9534), 1, - anon_sym_RBRACE2, - [164068] = 2, + anon_sym_BQUOTE, + [165002] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9536), 1, - anon_sym_RBRACE3, - [164075] = 2, + anon_sym_RPAREN, + [165009] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9522), 1, - anon_sym_BQUOTE, - [164082] = 2, + ACTIONS(9538), 1, + anon_sym_RBRACE2, + [165016] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9538), 1, + ACTIONS(9540), 1, anon_sym_RPAREN, - [164089] = 2, + [165023] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9540), 1, - anon_sym_esac, - [164096] = 2, + ACTIONS(9460), 1, + anon_sym_BQUOTE, + [165030] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9542), 1, - anon_sym_esac, - [164103] = 2, + anon_sym_RPAREN, + [165037] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9544), 1, - anon_sym_RPAREN, - [164110] = 2, + anon_sym_RBRACE2, + [165044] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9546), 1, anon_sym_RPAREN, - [164117] = 2, + [165051] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9548), 1, - anon_sym_BQUOTE, - [164124] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8662), 1, - anon_sym_RBRACE3, - [164131] = 2, + anon_sym_RBRACE2, + [165058] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 1, + ACTIONS(9550), 1, anon_sym_RBRACE3, - [164138] = 2, + [165065] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 1, - anon_sym_RBRACE3, - [164145] = 2, + ACTIONS(9552), 1, + sym_heredoc_start, + [165072] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 1, - anon_sym_RBRACE3, - [164152] = 2, + ACTIONS(9554), 1, + anon_sym_BQUOTE, + [165079] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 1, - anon_sym_RBRACE3, - [164159] = 2, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + [165086] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8662), 1, - anon_sym_RBRACE3, - [164166] = 2, + ACTIONS(9558), 1, + anon_sym_BQUOTE, + [165093] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACE3, - [164173] = 2, + ACTIONS(9554), 1, + anon_sym_RPAREN, + [165100] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(8696), 1, anon_sym_RBRACE3, - [164180] = 2, + [165107] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACE3, - [164187] = 2, + ACTIONS(9560), 1, + anon_sym_RPAREN, + [165114] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACE3, - [164194] = 2, + ACTIONS(9180), 1, + aux_sym__simple_variable_name_token1, + [165121] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(8696), 1, anon_sym_RBRACE3, - [164201] = 2, + [165128] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8670), 1, + ACTIONS(8696), 1, anon_sym_RBRACE3, - [164208] = 2, + [165135] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9550), 1, - anon_sym_BQUOTE, - [164215] = 2, + ACTIONS(5606), 1, + anon_sym_RBRACK, + [165142] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9552), 1, - anon_sym_BQUOTE, - [164222] = 2, + ACTIONS(9562), 1, + anon_sym_DOT_DOT, + [165149] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9216), 1, - anon_sym_RPAREN, - [164229] = 2, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [165156] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9554), 1, - sym__regex_no_slash, - [164236] = 2, + ACTIONS(9564), 1, + anon_sym_esac, + [165163] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9538), 1, - anon_sym_BQUOTE, - [164243] = 2, + ACTIONS(9566), 1, + anon_sym_RBRACE3, + [165170] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5695), 1, - anon_sym_RBRACK, - [164250] = 2, + ACTIONS(9568), 1, + sym_heredoc_start, + [165177] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9556), 1, - anon_sym_RPAREN, - [164257] = 2, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [165184] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5592), 1, + ACTIONS(5604), 1, anon_sym_RBRACK, - [164264] = 2, + [165191] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9548), 1, - anon_sym_RPAREN, - [164271] = 2, + ACTIONS(9536), 1, + anon_sym_BQUOTE, + [165198] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9558), 1, + ACTIONS(9570), 1, anon_sym_RPAREN, - [164278] = 2, + [165205] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9560), 1, - anon_sym_in, - [164285] = 2, + ACTIONS(9572), 1, + sym_word, + [165212] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_RPAREN, - [164292] = 2, + ACTIONS(9574), 1, + anon_sym_esac, + [165219] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9546), 1, - anon_sym_BQUOTE, - [164299] = 2, + ACTIONS(9576), 1, + anon_sym_LBRACK, + [165226] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9564), 1, - anon_sym_in, - [164306] = 2, + ACTIONS(9578), 1, + sym_heredoc_start, + [165233] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9566), 1, + ACTIONS(9580), 1, anon_sym_BQUOTE, - [164313] = 2, + [165240] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9568), 1, - anon_sym_in, - [164320] = 2, + ACTIONS(9582), 1, + anon_sym_esac, + [165247] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9570), 1, - anon_sym_esac, - [164327] = 2, + ACTIONS(9584), 1, + anon_sym_fi, + [165254] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9572), 1, - anon_sym_RBRACE3, - [164334] = 2, + ACTIONS(9586), 1, + anon_sym_RBRACE2, + [165261] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9574), 1, - anon_sym_in, - [164341] = 2, + ACTIONS(9588), 1, + anon_sym_RBRACE2, + [165268] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9576), 1, - anon_sym_RPAREN_RPAREN, - [164348] = 2, + ACTIONS(9590), 1, + sym_heredoc_end, + [165275] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9578), 1, + ACTIONS(9592), 1, + sym_heredoc_end, + [165282] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9594), 1, anon_sym_RBRACE2, - [164355] = 2, + [165289] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9580), 1, - aux_sym_brace_expression_token1, - [164362] = 2, + ACTIONS(9596), 1, + anon_sym_BQUOTE, + [165296] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9582), 1, + ACTIONS(9598), 1, + anon_sym_esac, + [165303] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9600), 1, anon_sym_RPAREN, - [164369] = 2, + [165310] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9584), 1, - anon_sym_RBRACE2, - [164376] = 2, + ACTIONS(8708), 1, + anon_sym_RBRACE3, + [165317] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9586), 1, - anon_sym_RPAREN, - [164383] = 2, + ACTIONS(8708), 1, + anon_sym_RBRACE3, + [165324] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9588), 1, - anon_sym_esac, - [164390] = 2, + ACTIONS(8708), 1, + anon_sym_RBRACE3, + [165331] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9590), 1, - anon_sym_esac, - [164397] = 2, + ACTIONS(8708), 1, + anon_sym_RBRACE3, + [165338] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9592), 1, - anon_sym_BQUOTE, - [164404] = 2, + ACTIONS(8708), 1, + anon_sym_RBRACE3, + [165345] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9594), 1, - anon_sym_RPAREN, - [164411] = 2, + ACTIONS(8708), 1, + anon_sym_RBRACE3, + [165352] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9596), 1, + ACTIONS(8696), 1, anon_sym_RBRACE3, - [164418] = 2, + [165359] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9598), 1, - anon_sym_esac, - [164425] = 2, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [165366] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9600), 1, - anon_sym_esac, - [164432] = 2, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [165373] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [165380] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [165387] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8696), 1, + anon_sym_RBRACE3, + [165394] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9602), 1, - anon_sym_fi, - [164439] = 2, + anon_sym_RPAREN, + [165401] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9604), 1, - anon_sym_RPAREN, - [164446] = 2, + anon_sym_BQUOTE, + [165408] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9606), 1, anon_sym_BQUOTE, - [164453] = 2, + [165415] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9608), 1, - sym_heredoc_end, - [164460] = 2, + sym__regex_no_slash, + [165422] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9560), 1, + anon_sym_BQUOTE, + [165429] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9604), 1, + anon_sym_RPAREN, + [165436] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9610), 1, - sym_heredoc_end, - [164467] = 2, + anon_sym_RBRACE3, + [165443] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9612), 1, - anon_sym_RBRACE2, - [164474] = 2, + ACTIONS(8660), 1, + anon_sym_fi, + [165450] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9604), 1, - anon_sym_BQUOTE, - [164481] = 2, + ACTIONS(9612), 1, + anon_sym_RPAREN, + [165457] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9614), 1, - anon_sym_RBRACE3, - [164488] = 2, + anon_sym_RBRACE2, + [165464] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9616), 1, - anon_sym_esac, - [164495] = 2, + anon_sym_BQUOTE, + [165471] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9618), 1, anon_sym_BQUOTE, - [164502] = 2, + [165478] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9620), 1, - anon_sym_RPAREN, - [164509] = 2, + anon_sym_RBRACE3, + [165485] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9622), 1, - anon_sym_BQUOTE, - [164516] = 2, + anon_sym_in, + [165492] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9624), 1, - anon_sym_RPAREN_RPAREN, - [164523] = 2, + anon_sym_RPAREN, + [165499] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9626), 1, - anon_sym_BQUOTE, - [164530] = 2, + anon_sym_RBRACE3, + [165506] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9628), 1, - anon_sym_esac, - [164537] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9630), 1, anon_sym_RPAREN, - [164544] = 2, + [165513] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9622), 1, - anon_sym_RPAREN, - [164551] = 2, + ACTIONS(9630), 1, + anon_sym_esac, + [165520] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9632), 1, - anon_sym_RBRACE3, - [164558] = 2, + anon_sym_BQUOTE, + [165527] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9634), 1, - anon_sym_BQUOTE, - [164565] = 2, + anon_sym_esac, + [165534] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9636), 1, - anon_sym_RPAREN, - [164572] = 2, + anon_sym_RBRACE2, + [165541] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9638), 1, + anon_sym_in, + [165548] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(8648), 1, + anon_sym_fi, + [165555] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9624), 1, anon_sym_BQUOTE, - [164579] = 2, + [165562] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9640), 1, - sym_word, - [164586] = 2, + anon_sym_RPAREN, + [165569] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9642), 1, - anon_sym_RPAREN, - [164593] = 2, + anon_sym_RBRACE2, + [165576] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5310), 1, + anon_sym_RBRACK, + [165583] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_RBRACK, + [165590] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9644), 1, anon_sym_RPAREN, - [164600] = 2, + [165597] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9150), 1, - aux_sym__simple_variable_name_token1, - [164607] = 2, + ACTIONS(1253), 1, + anon_sym_RBRACE3, + [165604] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9646), 1, - aux_sym_brace_expression_token1, - [164614] = 2, + anon_sym_BQUOTE, + [165611] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9648), 1, - anon_sym_RBRACE2, - [164621] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(8598), 1, - anon_sym_fi, - [164628] = 2, + anon_sym_BQUOTE, + [165618] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9650), 1, - anon_sym_DOT_DOT, - [164635] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9636), 1, - anon_sym_BQUOTE, - [164642] = 2, + anon_sym_RBRACE3, + [165625] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9652), 1, - anon_sym_RPAREN, - [164649] = 2, + anon_sym_BQUOTE, + [165632] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9654), 1, - sym_word, - [164656] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9656), 1, - sym_heredoc_start, - [164663] = 2, + anon_sym_RBRACE2, + [165639] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9618), 1, anon_sym_RPAREN, - [164670] = 2, + [165646] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9656), 1, + anon_sym_RBRACE3, + [165653] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9658), 1, - aux_sym_brace_expression_token1, - [164677] = 2, + anon_sym_RBRACE3, + [165660] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9660), 1, - anon_sym_RBRACE3, - [164684] = 2, + anon_sym_RPAREN, + [165667] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9662), 1, - anon_sym_esac, - [164691] = 2, + anon_sym_BQUOTE, + [165674] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9664), 1, - sym_heredoc_start, - [164698] = 2, + anon_sym_BQUOTE, + [165681] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9666), 1, + ACTIONS(9662), 1, anon_sym_RPAREN, - [164705] = 2, + [165688] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9668), 1, - sym_heredoc_start, - [164712] = 2, + ACTIONS(9666), 1, + anon_sym_RBRACE3, + [165695] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9670), 1, - anon_sym_BQUOTE, - [164719] = 2, + ACTIONS(9668), 1, + anon_sym_RBRACE3, + [165702] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(8590), 1, - anon_sym_fi, - [164726] = 2, + ACTIONS(9670), 1, + anon_sym_RPAREN, + [165709] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9672), 1, - anon_sym_RBRACE2, - [164733] = 2, + anon_sym_RPAREN, + [165716] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9666), 1, - anon_sym_BQUOTE, - [164740] = 2, + ACTIONS(9646), 1, + anon_sym_RPAREN, + [165723] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9674), 1, anon_sym_RBRACE3, - [164747] = 2, + [165730] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9676), 1, - anon_sym_RBRACE3, - [164754] = 2, + ACTIONS(9628), 1, + anon_sym_BQUOTE, + [165737] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9678), 1, - anon_sym_RBRACE2, - [164761] = 2, + ACTIONS(9676), 1, + anon_sym_BQUOTE, + [165744] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5346), 1, - anon_sym_RBRACK, - [164768] = 2, + ACTIONS(9678), 1, + anon_sym_RPAREN, + [165751] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(5338), 1, - anon_sym_RBRACK, - [164775] = 2, + ACTIONS(9670), 1, + anon_sym_BQUOTE, + [165758] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9680), 1, anon_sym_RPAREN, - [164782] = 2, + [165765] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9682), 1, - anon_sym_RPAREN, - [164789] = 2, + sym_word, + [165772] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9684), 1, anon_sym_RPAREN, - [164796] = 2, + [165779] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9686), 1, anon_sym_BQUOTE, - [164803] = 2, + [165786] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9688), 1, - anon_sym_BQUOTE, - [164810] = 2, + ACTIONS(9188), 1, + aux_sym__simple_variable_name_token1, + [165793] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9686), 1, - anon_sym_RPAREN, - [164817] = 2, + ACTIONS(9688), 1, + anon_sym_RPAREN_RPAREN, + [165800] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9690), 1, + anon_sym_RBRACE2, + [165807] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9672), 1, anon_sym_BQUOTE, - [164824] = 2, + [165814] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9692), 1, - anon_sym_BQUOTE, - [164831] = 2, + anon_sym_DOT_DOT, + [165821] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9694), 1, - anon_sym_RBRACE3, - [164838] = 2, + anon_sym_RPAREN, + [165828] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9696), 1, - anon_sym_RPAREN, - [164845] = 2, + aux_sym_brace_expression_token1, + [165835] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9698), 1, - anon_sym_RBRACE3, - [164852] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9690), 1, - anon_sym_RPAREN, - [164859] = 2, + anon_sym_RBRACE2, + [165842] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9700), 1, - anon_sym_RBRACE3, - [164866] = 2, + sym_heredoc_start, + [165849] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9702), 1, - anon_sym_RPAREN_RPAREN, - [164873] = 2, + anon_sym_RPAREN, + [165856] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9704), 1, anon_sym_RBRACE2, - [164880] = 2, + [165863] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9706), 1, - anon_sym_RPAREN, - [164887] = 2, + anon_sym_RBRACE3, + [165870] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9708), 1, - anon_sym_BQUOTE, - [164894] = 2, + anon_sym_RPAREN, + [165877] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9710), 1, - anon_sym_BQUOTE, - [164901] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9708), 1, anon_sym_RPAREN, - [164908] = 2, + [165884] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9712), 1, - anon_sym_RBRACE3, - [164915] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9714), 1, anon_sym_BQUOTE, - [164922] = 2, + [165891] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9716), 1, - anon_sym_RPAREN, - [164929] = 2, + ACTIONS(9714), 1, + sym_heredoc_start, + [165898] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9718), 1, + ACTIONS(9710), 1, anon_sym_BQUOTE, - [164936] = 2, + [165905] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9716), 1, anon_sym_BQUOTE, - [164943] = 2, + [165912] = 2, ACTIONS(63), 1, sym_comment, + ACTIONS(9718), 1, + anon_sym_RPAREN, + [165919] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(9720), 1, - anon_sym_RBRACE3, - [164950] = 2, + aux_sym_heredoc_redirect_token1, + [165926] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9722), 1, - anon_sym_RPAREN, - [164957] = 2, + anon_sym_BQUOTE, + [165933] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1221), 1, + anon_sym_RBRACE3, + [165940] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9724), 1, - anon_sym_BQUOTE, - [164964] = 2, + anon_sym_RBRACE2, + [165947] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9726), 1, + anon_sym_RBRACE2, + [165954] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9716), 1, anon_sym_RPAREN, - [164971] = 2, + [165961] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9728), 1, - anon_sym_RBRACE2, - [164978] = 2, + anon_sym_RBRACE3, + [165968] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9730), 1, - anon_sym_in, - [164985] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9722), 1, - anon_sym_BQUOTE, - [164992] = 2, + anon_sym_RBRACE2, + [165975] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9732), 1, - anon_sym_esac, - [164999] = 2, + sym_heredoc_start, + [165982] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9734), 1, - anon_sym_RPAREN, - [165006] = 2, + anon_sym_RBRACE3, + [165989] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9736), 1, anon_sym_RPAREN, - [165013] = 2, + [165996] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9738), 1, anon_sym_RPAREN, - [165020] = 2, + [166003] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9740), 1, anon_sym_BQUOTE, - [165027] = 2, + [166010] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9742), 1, anon_sym_BQUOTE, - [165034] = 2, + [166017] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9740), 1, + anon_sym_RPAREN, + [166024] = 2, ACTIONS(63), 1, sym_comment, + ACTIONS(1245), 1, + anon_sym_RBRACE3, + [166031] = 2, + ACTIONS(3), 1, + sym_comment, ACTIONS(9744), 1, - anon_sym_RBRACE2, - [165041] = 2, + aux_sym_heredoc_redirect_token1, + [166038] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9746), 1, - anon_sym_RPAREN, - [165048] = 2, + anon_sym_RBRACE3, + [166045] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9740), 1, + ACTIONS(9748), 1, anon_sym_RPAREN, - [165055] = 2, + [166052] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9748), 1, - anon_sym_RBRACE3, - [165062] = 2, + ACTIONS(9750), 1, + anon_sym_BQUOTE, + [166059] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9750), 1, - anon_sym_esac, - [165069] = 2, + ACTIONS(9748), 1, + anon_sym_BQUOTE, + [166066] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9752), 1, - anon_sym_RBRACE3, - [165076] = 2, + anon_sym_RBRACE2, + [166073] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9754), 1, - anon_sym_DOT_DOT, - [165083] = 2, + anon_sym_in, + [166080] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9756), 1, anon_sym_RPAREN, - [165090] = 2, + [166087] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9758), 1, - anon_sym_RBRACE2, - [165097] = 2, + anon_sym_BQUOTE, + [166094] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9760), 1, - sym_heredoc_start, - [165104] = 2, + anon_sym_in, + [166101] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9762), 1, - anon_sym_DOT_DOT, - [165111] = 2, + anon_sym_RPAREN_RPAREN, + [166108] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9764), 1, - anon_sym_BQUOTE, - [165118] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9756), 1, - anon_sym_BQUOTE, - [165125] = 2, + anon_sym_RPAREN, + [166115] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9766), 1, - anon_sym_RBRACE3, - [165132] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1272), 1, - anon_sym_RBRACE3, - [165139] = 2, + aux_sym_brace_expression_token1, + [166122] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9768), 1, - anon_sym_RBRACE3, - [165146] = 2, + anon_sym_RPAREN, + [166129] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9770), 1, - sym_heredoc_start, - [165153] = 2, + anon_sym_BQUOTE, + [166136] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9772), 1, anon_sym_RPAREN, - [165160] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1198), 1, - anon_sym_RBRACE3, - [165167] = 2, + [166143] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9774), 1, anon_sym_RBRACE3, - [165174] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1214), 1, - anon_sym_RBRACE3, - [165181] = 2, + [166150] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1248), 1, - anon_sym_RBRACE3, - [165188] = 2, + ACTIONS(9758), 1, + anon_sym_RPAREN, + [166157] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9776), 1, - anon_sym_RPAREN, - [165195] = 2, + anon_sym_BQUOTE, + [166164] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9778), 1, - anon_sym_RBRACE2, - [165202] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9780), 1, anon_sym_RBRACE3, - [165209] = 2, + [166171] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(1244), 1, + ACTIONS(9780), 1, anon_sym_RBRACE3, - [165216] = 2, + [166178] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9782), 1, anon_sym_RPAREN, - [165223] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(1244), 1, - anon_sym_RBRACE3, - [165230] = 2, + [166185] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9784), 1, - anon_sym_RBRACE2, - [165237] = 2, + anon_sym_BQUOTE, + [166192] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9786), 1, + anon_sym_RPAREN, + [166199] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9782), 1, anon_sym_BQUOTE, - [165244] = 2, + [166206] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(9770), 1, anon_sym_RPAREN, - [165251] = 2, + [166213] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9786), 1, + anon_sym_BQUOTE, + [166220] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9788), 1, anon_sym_RPAREN, - [165258] = 2, + [166227] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9790), 1, - anon_sym_BQUOTE, - [165265] = 2, + anon_sym_RPAREN, + [166234] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9792), 1, - anon_sym_BQUOTE, - [165272] = 2, + anon_sym_RBRACE3, + [166241] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9794), 1, - anon_sym_DOT_DOT, - [165279] = 2, + anon_sym_RPAREN, + [166248] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9796), 1, - anon_sym_BQUOTE, - [165286] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9776), 1, - anon_sym_BQUOTE, - [165293] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9790), 1, - anon_sym_RPAREN, - [165300] = 2, + sym_word, + [166255] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9798), 1, - anon_sym_RBRACE3, - [165307] = 2, + anon_sym_BQUOTE, + [166262] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9800), 1, - anon_sym_RPAREN, - [165314] = 2, + anon_sym_DOT_DOT, + [166269] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9802), 1, - anon_sym_RPAREN, - [165321] = 2, + anon_sym_RBRACE2, + [166276] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9804), 1, - ts_builtin_sym_end, - [165328] = 2, + anon_sym_RBRACE3, + [166283] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9806), 1, - anon_sym_RPAREN, - [165335] = 2, + sym_heredoc_start, + [166290] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9808), 1, - anon_sym_RBRACE2, - [165342] = 2, + anon_sym_DOT_DOT, + [166297] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9810), 1, - anon_sym_RBRACE2, - [165349] = 2, + anon_sym_RPAREN, + [166304] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9812), 1, - anon_sym_RBRACE3, - [165356] = 2, + anon_sym_BQUOTE, + [166311] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9814), 1, anon_sym_BQUOTE, - [165363] = 2, + [166318] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9816), 1, - anon_sym_RBRACE2, - [165370] = 2, + anon_sym_BQUOTE, + [166325] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9818), 1, - anon_sym_RBRACE3, - [165377] = 2, + anon_sym_BQUOTE, + [166332] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9820), 1, + sym_heredoc_start, + [166339] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9794), 1, anon_sym_BQUOTE, - [165384] = 2, + [166346] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9822), 1, - anon_sym_RBRACE2, - [165391] = 2, + ACTIONS(9812), 1, + anon_sym_RPAREN, + [166353] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9824), 1, + ACTIONS(9814), 1, anon_sym_RPAREN, - [165398] = 2, + [166360] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9404), 1, + ACTIONS(9822), 1, + anon_sym_BQUOTE, + [166367] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9824), 1, anon_sym_BQUOTE, - [165405] = 2, + [166374] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9826), 1, anon_sym_RPAREN, - [165412] = 2, + [166381] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9822), 1, + anon_sym_RPAREN, + [166388] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9828), 1, - anon_sym_BQUOTE, - [165419] = 2, + anon_sym_RBRACE3, + [166395] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1207), 1, + anon_sym_RBRACE3, + [166402] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1237), 1, + anon_sym_RBRACE3, + [166409] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(1207), 1, + anon_sym_RBRACE3, + [166416] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9830), 1, - anon_sym_BQUOTE, - [165426] = 2, + anon_sym_RBRACE3, + [166423] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9832), 1, anon_sym_BQUOTE, - [165433] = 2, + [166430] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9834), 1, - anon_sym_DOT_DOT, - [165440] = 2, + anon_sym_RBRACE2, + [166437] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9836), 1, - anon_sym_DOT_DOT, - [165447] = 2, + anon_sym_BQUOTE, + [166444] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9838), 1, - anon_sym_DOT_DOT, - [165454] = 2, + anon_sym_RBRACE3, + [166451] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9832), 1, + anon_sym_RPAREN, + [166458] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9840), 1, anon_sym_DOT_DOT, - [165461] = 2, + [166465] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9842), 1, - anon_sym_DOT_DOT, - [165468] = 2, + anon_sym_RBRACE3, + [166472] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9844), 1, - anon_sym_DOT_DOT, - [165475] = 2, + anon_sym_RPAREN, + [166479] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9846), 1, - anon_sym_DOT_DOT, - [165482] = 2, + anon_sym_BQUOTE, + [166486] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9848), 1, - anon_sym_DOT_DOT, - [165489] = 2, + anon_sym_RBRACE2, + [166493] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9850), 1, - anon_sym_DOT_DOT, - [165496] = 2, + anon_sym_BQUOTE, + [166500] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9852), 1, - anon_sym_DOT_DOT, - [165503] = 2, + anon_sym_BQUOTE, + [166507] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9854), 1, - anon_sym_DOT_DOT, - [165510] = 2, + ts_builtin_sym_end, + [166514] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9856), 1, - anon_sym_DOT_DOT, - [165517] = 2, + anon_sym_BQUOTE, + [166521] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9858), 1, - anon_sym_DOT_DOT, - [165524] = 2, + anon_sym_RPAREN, + [166528] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9860), 1, - anon_sym_DOT_DOT, - [165531] = 2, + anon_sym_BQUOTE, + [166535] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9862), 1, - anon_sym_DOT_DOT, - [165538] = 2, + anon_sym_BQUOTE, + [166542] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9844), 1, + anon_sym_BQUOTE, + [166549] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9860), 1, + anon_sym_RPAREN, + [166556] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9864), 1, - anon_sym_DOT_DOT, - [165545] = 2, + anon_sym_RBRACE3, + [166563] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9866), 1, - anon_sym_DOT_DOT, - [165552] = 2, + anon_sym_RPAREN, + [166570] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9868), 1, - anon_sym_DOT_DOT, - [165559] = 2, + anon_sym_RBRACE3, + [166577] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9852), 1, + anon_sym_RPAREN, + [166584] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9870), 1, - anon_sym_DOT_DOT, - [165566] = 2, + anon_sym_RBRACE3, + [166591] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9872), 1, - anon_sym_DOT_DOT, - [165573] = 2, + anon_sym_RPAREN, + [166598] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9874), 1, - anon_sym_DOT_DOT, - [165580] = 2, + anon_sym_BQUOTE, + [166605] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9876), 1, - anon_sym_DOT_DOT, - [165587] = 2, + anon_sym_BQUOTE, + [166612] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9874), 1, + anon_sym_RPAREN, + [166619] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9878), 1, anon_sym_DOT_DOT, - [165594] = 2, + [166626] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9880), 1, anon_sym_DOT_DOT, - [165601] = 2, + [166633] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9882), 1, anon_sym_DOT_DOT, - [165608] = 2, + [166640] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9884), 1, anon_sym_DOT_DOT, - [165615] = 2, + [166647] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9886), 1, anon_sym_DOT_DOT, - [165622] = 2, + [166654] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9888), 1, anon_sym_DOT_DOT, - [165629] = 2, + [166661] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9890), 1, anon_sym_DOT_DOT, - [165636] = 2, + [166668] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9892), 1, anon_sym_DOT_DOT, - [165643] = 2, + [166675] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9894), 1, anon_sym_DOT_DOT, - [165650] = 2, + [166682] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9896), 1, anon_sym_DOT_DOT, - [165657] = 2, + [166689] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9898), 1, anon_sym_DOT_DOT, - [165664] = 2, + [166696] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9900), 1, anon_sym_DOT_DOT, - [165671] = 2, + [166703] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9902), 1, anon_sym_DOT_DOT, - [165678] = 2, + [166710] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9904), 1, anon_sym_DOT_DOT, - [165685] = 2, + [166717] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9906), 1, - aux_sym_brace_expression_token1, - [165692] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9828), 1, - anon_sym_RPAREN, - [165699] = 2, + anon_sym_DOT_DOT, + [166724] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9908), 1, - anon_sym_RBRACE3, - [165706] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9824), 1, - anon_sym_BQUOTE, - [165713] = 2, + anon_sym_DOT_DOT, + [166731] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9910), 1, - ts_builtin_sym_end, - [165720] = 2, + anon_sym_DOT_DOT, + [166738] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9912), 1, - anon_sym_RPAREN, - [165727] = 2, + anon_sym_DOT_DOT, + [166745] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9914), 1, - anon_sym_in, - [165734] = 2, + anon_sym_DOT_DOT, + [166752] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9916), 1, - anon_sym_RPAREN, - [165741] = 2, + anon_sym_DOT_DOT, + [166759] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9918), 1, - aux_sym_brace_expression_token1, - [165748] = 2, + anon_sym_DOT_DOT, + [166766] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9920), 1, - anon_sym_RBRACE2, - [165755] = 2, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [166773] = 2, + ACTIONS(63), 1, sym_comment, ACTIONS(9922), 1, - aux_sym_heredoc_redirect_token1, - [165762] = 2, + anon_sym_DOT_DOT, + [166780] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9924), 1, - anon_sym_RBRACE2, - [165769] = 2, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [166787] = 2, + ACTIONS(63), 1, sym_comment, ACTIONS(9926), 1, - aux_sym_heredoc_redirect_token1, - [165776] = 2, + anon_sym_DOT_DOT, + [166794] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9928), 1, - sym_word, - [165783] = 2, + anon_sym_DOT_DOT, + [166801] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9930), 1, - aux_sym_brace_expression_token1, - [165790] = 2, + anon_sym_DOT_DOT, + [166808] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9932), 1, - anon_sym_RBRACE3, - [165797] = 2, + anon_sym_DOT_DOT, + [166815] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9934), 1, - anon_sym_RBRACE2, - [165804] = 2, + anon_sym_DOT_DOT, + [166822] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9936), 1, - anon_sym_RBRACE2, - [165811] = 2, + anon_sym_DOT_DOT, + [166829] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9938), 1, - aux_sym_brace_expression_token1, - [165818] = 2, + anon_sym_DOT_DOT, + [166836] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9940), 1, - anon_sym_RPAREN, - [165825] = 2, + anon_sym_DOT_DOT, + [166843] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9942), 1, - anon_sym_RPAREN, - [165832] = 2, - ACTIONS(63), 1, - sym_comment, - ACTIONS(9782), 1, - anon_sym_BQUOTE, - [165839] = 2, + anon_sym_DOT_DOT, + [166850] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9944), 1, - aux_sym_brace_expression_token1, - [165846] = 2, + anon_sym_DOT_DOT, + [166857] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9946), 1, - aux_sym_brace_expression_token1, - [165853] = 2, + anon_sym_DOT_DOT, + [166864] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9948), 1, - aux_sym_brace_expression_token1, - [165860] = 2, + anon_sym_DOT_DOT, + [166871] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9950), 1, aux_sym_brace_expression_token1, - [165867] = 2, + [166878] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9952), 1, - aux_sym_brace_expression_token1, - [165874] = 2, + anon_sym_RBRACE2, + [166885] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9954), 1, - aux_sym_brace_expression_token1, - [165881] = 2, + anon_sym_RBRACE3, + [166892] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9956), 1, - aux_sym_brace_expression_token1, - [165888] = 2, + anon_sym_RBRACE2, + [166899] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9958), 1, - aux_sym_brace_expression_token1, - [165895] = 2, + ts_builtin_sym_end, + [166906] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9960), 1, - aux_sym_brace_expression_token1, - [165902] = 2, + anon_sym_RBRACE2, + [166913] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9962), 1, - aux_sym_brace_expression_token1, - [165909] = 2, + anon_sym_RPAREN, + [166920] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9964), 1, - aux_sym_brace_expression_token1, - [165916] = 2, + anon_sym_BQUOTE, + [166927] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9966), 1, aux_sym_brace_expression_token1, - [165923] = 2, + [166934] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9968), 1, - aux_sym_brace_expression_token1, - [165930] = 2, + anon_sym_BQUOTE, + [166941] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9970), 1, - aux_sym_brace_expression_token1, - [165937] = 2, + anon_sym_BQUOTE, + [166948] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9972), 1, - aux_sym_brace_expression_token1, - [165944] = 2, + anon_sym_RBRACE3, + [166955] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9968), 1, + anon_sym_RPAREN, + [166962] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9974), 1, - aux_sym_brace_expression_token1, - [165951] = 2, + anon_sym_RBRACE3, + [166969] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9976), 1, aux_sym_brace_expression_token1, - [165958] = 2, + [166976] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9330), 1, + anon_sym_RPAREN, + [166983] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9978), 1, - aux_sym_brace_expression_token1, - [165965] = 2, + anon_sym_BQUOTE, + [166990] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9980), 1, - aux_sym_brace_expression_token1, - [165972] = 2, + anon_sym_BQUOTE, + [166997] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9982), 1, aux_sym_brace_expression_token1, - [165979] = 2, + [167004] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9984), 1, - aux_sym_brace_expression_token1, - [165986] = 2, + anon_sym_BQUOTE, + [167011] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9986), 1, - aux_sym_brace_expression_token1, - [165993] = 2, + anon_sym_RBRACE2, + [167018] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9964), 1, + anon_sym_RPAREN, + [167025] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9988), 1, aux_sym_brace_expression_token1, - [166000] = 2, + [167032] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9990), 1, aux_sym_brace_expression_token1, - [166007] = 2, + [167039] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9992), 1, aux_sym_brace_expression_token1, - [166014] = 2, + [167046] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9994), 1, aux_sym_brace_expression_token1, - [166021] = 2, + [167053] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9996), 1, aux_sym_brace_expression_token1, - [166028] = 2, + [167060] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(9998), 1, aux_sym_brace_expression_token1, - [166035] = 2, + [167067] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10000), 1, aux_sym_brace_expression_token1, - [166042] = 2, + [167074] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10002), 1, aux_sym_brace_expression_token1, - [166049] = 2, + [167081] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10004), 1, aux_sym_brace_expression_token1, - [166056] = 2, + [167088] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10006), 1, aux_sym_brace_expression_token1, - [166063] = 2, + [167095] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10008), 1, aux_sym_brace_expression_token1, - [166070] = 2, + [167102] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10010), 1, aux_sym_brace_expression_token1, - [166077] = 2, + [167109] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10012), 1, aux_sym_brace_expression_token1, - [166084] = 2, + [167116] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10014), 1, aux_sym_brace_expression_token1, - [166091] = 2, + [167123] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10016), 1, - sym_word, - [166098] = 2, + aux_sym_brace_expression_token1, + [167130] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10018), 1, - anon_sym_RPAREN, - [166105] = 2, + aux_sym_brace_expression_token1, + [167137] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10020), 1, - anon_sym_BQUOTE, - [166112] = 2, + aux_sym_brace_expression_token1, + [167144] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10022), 1, - sym_word, - [166119] = 2, + aux_sym_brace_expression_token1, + [167151] = 2, ACTIONS(63), 1, sym_comment, ACTIONS(10024), 1, + aux_sym_brace_expression_token1, + [167158] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10026), 1, + aux_sym_brace_expression_token1, + [167165] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10028), 1, + aux_sym_brace_expression_token1, + [167172] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10030), 1, + aux_sym_brace_expression_token1, + [167179] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10032), 1, + aux_sym_brace_expression_token1, + [167186] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10034), 1, + aux_sym_brace_expression_token1, + [167193] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10036), 1, + aux_sym_brace_expression_token1, + [167200] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10038), 1, + aux_sym_brace_expression_token1, + [167207] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10040), 1, + aux_sym_brace_expression_token1, + [167214] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10042), 1, + aux_sym_brace_expression_token1, + [167221] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10044), 1, + aux_sym_brace_expression_token1, + [167228] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10046), 1, + aux_sym_brace_expression_token1, + [167235] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10048), 1, + aux_sym_brace_expression_token1, + [167242] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10050), 1, + aux_sym_brace_expression_token1, + [167249] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10052), 1, + aux_sym_brace_expression_token1, + [167256] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10054), 1, + aux_sym_brace_expression_token1, + [167263] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10056), 1, + aux_sym_brace_expression_token1, + [167270] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10058), 1, + aux_sym_brace_expression_token1, + [167277] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10060), 1, + sym_word, + [167284] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10062), 1, anon_sym_RPAREN, - [166126] = 2, + [167291] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10064), 1, + sym_word, + [167298] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(10066), 1, + sym_word, + [167305] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9156), 1, + ACTIONS(10068), 1, + anon_sym_RPAREN, + [167312] = 2, + ACTIONS(63), 1, + sym_comment, + ACTIONS(9192), 1, aux_sym__simple_variable_name_token1, - [166133] = 2, + [167319] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10026), 1, + ACTIONS(10070), 1, sym_word, - [166140] = 2, + [167326] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10028), 1, + ACTIONS(10072), 1, anon_sym_RPAREN, - [166147] = 2, + [167333] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10030), 1, - anon_sym_BQUOTE, - [166154] = 2, + ACTIONS(10074), 1, + anon_sym_RBRACE3, + [167340] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10032), 1, + ACTIONS(10076), 1, sym_word, - [166161] = 2, + [167347] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10034), 1, + ACTIONS(10078), 1, anon_sym_RPAREN, - [166168] = 2, + [167354] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(10036), 1, + ACTIONS(10080), 1, aux_sym_brace_expression_token1, - [166175] = 2, + [167361] = 2, ACTIONS(63), 1, sym_comment, - ACTIONS(9940), 1, + ACTIONS(9872), 1, anon_sym_BQUOTE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(408)] = 0, - [SMALL_STATE(409)] = 71, - [SMALL_STATE(410)] = 150, - [SMALL_STATE(411)] = 290, - [SMALL_STATE(412)] = 430, - [SMALL_STATE(413)] = 570, - [SMALL_STATE(414)] = 710, - [SMALL_STATE(415)] = 815, - [SMALL_STATE(416)] = 920, - [SMALL_STATE(417)] = 1025, - [SMALL_STATE(418)] = 1129, - [SMALL_STATE(419)] = 1233, - [SMALL_STATE(420)] = 1337, - [SMALL_STATE(421)] = 1441, - [SMALL_STATE(422)] = 1545, - [SMALL_STATE(423)] = 1649, - [SMALL_STATE(424)] = 1753, - [SMALL_STATE(425)] = 1857, - [SMALL_STATE(426)] = 1960, - [SMALL_STATE(427)] = 2063, - [SMALL_STATE(428)] = 2166, - [SMALL_STATE(429)] = 2269, - [SMALL_STATE(430)] = 2372, - [SMALL_STATE(431)] = 2475, - [SMALL_STATE(432)] = 2546, - [SMALL_STATE(433)] = 2649, - [SMALL_STATE(434)] = 2752, - [SMALL_STATE(435)] = 2855, - [SMALL_STATE(436)] = 2958, - [SMALL_STATE(437)] = 3061, - [SMALL_STATE(438)] = 3132, - [SMALL_STATE(439)] = 3234, - [SMALL_STATE(440)] = 3332, - [SMALL_STATE(441)] = 3434, - [SMALL_STATE(442)] = 3504, - [SMALL_STATE(443)] = 3606, - [SMALL_STATE(444)] = 3676, - [SMALL_STATE(445)] = 3774, - [SMALL_STATE(446)] = 3876, - [SMALL_STATE(447)] = 3974, - [SMALL_STATE(448)] = 4076, - [SMALL_STATE(449)] = 4178, - [SMALL_STATE(450)] = 4280, - [SMALL_STATE(451)] = 4382, - [SMALL_STATE(452)] = 4484, - [SMALL_STATE(453)] = 4584, - [SMALL_STATE(454)] = 4686, - [SMALL_STATE(455)] = 4788, - [SMALL_STATE(456)] = 4890, - [SMALL_STATE(457)] = 4990, - [SMALL_STATE(458)] = 5092, - [SMALL_STATE(459)] = 5161, - [SMALL_STATE(460)] = 5230, - [SMALL_STATE(461)] = 5331, - [SMALL_STATE(462)] = 5432, - [SMALL_STATE(463)] = 5529, - [SMALL_STATE(464)] = 5626, - [SMALL_STATE(465)] = 5725, - [SMALL_STATE(466)] = 5794, - [SMALL_STATE(467)] = 5895, - [SMALL_STATE(468)] = 5996, - [SMALL_STATE(469)] = 6095, - [SMALL_STATE(470)] = 6194, - [SMALL_STATE(471)] = 6263, - [SMALL_STATE(472)] = 6332, - [SMALL_STATE(473)] = 6431, - [SMALL_STATE(474)] = 6500, - [SMALL_STATE(475)] = 6597, - [SMALL_STATE(476)] = 6666, - [SMALL_STATE(477)] = 6735, - [SMALL_STATE(478)] = 6836, - [SMALL_STATE(479)] = 6904, - [SMALL_STATE(480)] = 6972, - [SMALL_STATE(481)] = 7040, - [SMALL_STATE(482)] = 7108, - [SMALL_STATE(483)] = 7204, - [SMALL_STATE(484)] = 7300, - [SMALL_STATE(485)] = 7368, - [SMALL_STATE(486)] = 7464, - [SMALL_STATE(487)] = 7532, - [SMALL_STATE(488)] = 7600, - [SMALL_STATE(489)] = 7668, - [SMALL_STATE(490)] = 7728, - [SMALL_STATE(491)] = 7824, - [SMALL_STATE(492)] = 7920, - [SMALL_STATE(493)] = 8016, - [SMALL_STATE(494)] = 8079, - [SMALL_STATE(495)] = 8146, - [SMALL_STATE(496)] = 8213, - [SMALL_STATE(497)] = 8280, - [SMALL_STATE(498)] = 8347, - [SMALL_STATE(499)] = 8414, - [SMALL_STATE(500)] = 8481, - [SMALL_STATE(501)] = 8548, - [SMALL_STATE(502)] = 8615, - [SMALL_STATE(503)] = 8714, - [SMALL_STATE(504)] = 8781, - [SMALL_STATE(505)] = 8844, - [SMALL_STATE(506)] = 8907, - [SMALL_STATE(507)] = 9006, - [SMALL_STATE(508)] = 9069, - [SMALL_STATE(509)] = 9162, - [SMALL_STATE(510)] = 9261, - [SMALL_STATE(511)] = 9356, - [SMALL_STATE(512)] = 9451, - [SMALL_STATE(513)] = 9518, - [SMALL_STATE(514)] = 9613, - [SMALL_STATE(515)] = 9706, - [SMALL_STATE(516)] = 9804, - [SMALL_STATE(517)] = 9904, - [SMALL_STATE(518)] = 10002, - [SMALL_STATE(519)] = 10068, - [SMALL_STATE(520)] = 10186, - [SMALL_STATE(521)] = 10304, - [SMALL_STATE(522)] = 10422, - [SMALL_STATE(523)] = 10488, - [SMALL_STATE(524)] = 10606, - [SMALL_STATE(525)] = 10724, - [SMALL_STATE(526)] = 10824, - [SMALL_STATE(527)] = 10942, - [SMALL_STATE(528)] = 11040, - [SMALL_STATE(529)] = 11106, - [SMALL_STATE(530)] = 11204, - [SMALL_STATE(531)] = 11270, - [SMALL_STATE(532)] = 11336, - [SMALL_STATE(533)] = 11454, - [SMALL_STATE(534)] = 11520, - [SMALL_STATE(535)] = 11620, - [SMALL_STATE(536)] = 11686, - [SMALL_STATE(537)] = 11804, - [SMALL_STATE(538)] = 11902, - [SMALL_STATE(539)] = 11968, - [SMALL_STATE(540)] = 12045, - [SMALL_STATE(541)] = 12144, - [SMALL_STATE(542)] = 12209, - [SMALL_STATE(543)] = 12274, - [SMALL_STATE(544)] = 12373, - [SMALL_STATE(545)] = 12442, - [SMALL_STATE(546)] = 12511, - [SMALL_STATE(547)] = 12576, - [SMALL_STATE(548)] = 12653, - [SMALL_STATE(549)] = 12718, - [SMALL_STATE(550)] = 12817, - [SMALL_STATE(551)] = 12916, - [SMALL_STATE(552)] = 13015, - [SMALL_STATE(553)] = 13107, - [SMALL_STATE(554)] = 13199, - [SMALL_STATE(555)] = 13291, - [SMALL_STATE(556)] = 13355, - [SMALL_STATE(557)] = 13419, - [SMALL_STATE(558)] = 13483, - [SMALL_STATE(559)] = 13551, - [SMALL_STATE(560)] = 13609, - [SMALL_STATE(561)] = 13667, - [SMALL_STATE(562)] = 13735, - [SMALL_STATE(563)] = 13791, - [SMALL_STATE(564)] = 13847, - [SMALL_STATE(565)] = 13923, - [SMALL_STATE(566)] = 13999, - [SMALL_STATE(567)] = 14074, - [SMALL_STATE(568)] = 14137, - [SMALL_STATE(569)] = 14212, - [SMALL_STATE(570)] = 14279, - [SMALL_STATE(571)] = 14348, - [SMALL_STATE(572)] = 14409, - [SMALL_STATE(573)] = 14484, - [SMALL_STATE(574)] = 14547, - [SMALL_STATE(575)] = 14610, - [SMALL_STATE(576)] = 14673, - [SMALL_STATE(577)] = 14736, - [SMALL_STATE(578)] = 14799, - [SMALL_STATE(579)] = 14862, - [SMALL_STATE(580)] = 14919, - [SMALL_STATE(581)] = 14980, - [SMALL_STATE(582)] = 15041, - [SMALL_STATE(583)] = 15102, - [SMALL_STATE(584)] = 15195, - [SMALL_STATE(585)] = 15256, - [SMALL_STATE(586)] = 15317, - [SMALL_STATE(587)] = 15378, - [SMALL_STATE(588)] = 15445, - [SMALL_STATE(589)] = 15508, - [SMALL_STATE(590)] = 15569, - [SMALL_STATE(591)] = 15636, - [SMALL_STATE(592)] = 15729, - [SMALL_STATE(593)] = 15804, - [SMALL_STATE(594)] = 15865, - [SMALL_STATE(595)] = 15920, - [SMALL_STATE(596)] = 15977, - [SMALL_STATE(597)] = 16038, - [SMALL_STATE(598)] = 16131, - [SMALL_STATE(599)] = 16192, - [SMALL_STATE(600)] = 16253, - [SMALL_STATE(601)] = 16316, - [SMALL_STATE(602)] = 16376, - [SMALL_STATE(603)] = 16430, - [SMALL_STATE(604)] = 16490, - [SMALL_STATE(605)] = 16550, - [SMALL_STATE(606)] = 16610, - [SMALL_STATE(607)] = 16672, - [SMALL_STATE(608)] = 16732, - [SMALL_STATE(609)] = 16792, - [SMALL_STATE(610)] = 16852, - [SMALL_STATE(611)] = 16906, - [SMALL_STATE(612)] = 16960, - [SMALL_STATE(613)] = 17014, - [SMALL_STATE(614)] = 17074, - [SMALL_STATE(615)] = 17128, - [SMALL_STATE(616)] = 17188, - [SMALL_STATE(617)] = 17260, - [SMALL_STATE(618)] = 17314, - [SMALL_STATE(619)] = 17380, - [SMALL_STATE(620)] = 17446, - [SMALL_STATE(621)] = 17512, - [SMALL_STATE(622)] = 17572, - [SMALL_STATE(623)] = 17632, - [SMALL_STATE(624)] = 17694, - [SMALL_STATE(625)] = 17754, - [SMALL_STATE(626)] = 17816, - [SMALL_STATE(627)] = 17870, - [SMALL_STATE(628)] = 17930, - [SMALL_STATE(629)] = 17984, - [SMALL_STATE(630)] = 18058, - [SMALL_STATE(631)] = 18112, - [SMALL_STATE(632)] = 18172, - [SMALL_STATE(633)] = 18244, - [SMALL_STATE(634)] = 18310, - [SMALL_STATE(635)] = 18370, - [SMALL_STATE(636)] = 18444, - [SMALL_STATE(637)] = 18504, - [SMALL_STATE(638)] = 18558, - [SMALL_STATE(639)] = 18612, - [SMALL_STATE(640)] = 18666, - [SMALL_STATE(641)] = 18720, - [SMALL_STATE(642)] = 18780, - [SMALL_STATE(643)] = 18840, - [SMALL_STATE(644)] = 18912, - [SMALL_STATE(645)] = 18966, - [SMALL_STATE(646)] = 19038, - [SMALL_STATE(647)] = 19092, - [SMALL_STATE(648)] = 19146, - [SMALL_STATE(649)] = 19206, - [SMALL_STATE(650)] = 19266, - [SMALL_STATE(651)] = 19326, - [SMALL_STATE(652)] = 19388, - [SMALL_STATE(653)] = 19448, - [SMALL_STATE(654)] = 19510, - [SMALL_STATE(655)] = 19572, - [SMALL_STATE(656)] = 19626, - [SMALL_STATE(657)] = 19680, - [SMALL_STATE(658)] = 19734, - [SMALL_STATE(659)] = 19794, - [SMALL_STATE(660)] = 19854, - [SMALL_STATE(661)] = 19914, - [SMALL_STATE(662)] = 19974, - [SMALL_STATE(663)] = 20036, - [SMALL_STATE(664)] = 20098, - [SMALL_STATE(665)] = 20158, - [SMALL_STATE(666)] = 20218, - [SMALL_STATE(667)] = 20277, - [SMALL_STATE(668)] = 20336, - [SMALL_STATE(669)] = 20395, - [SMALL_STATE(670)] = 20456, - [SMALL_STATE(671)] = 20509, - [SMALL_STATE(672)] = 20562, - [SMALL_STATE(673)] = 20621, - [SMALL_STATE(674)] = 20674, - [SMALL_STATE(675)] = 20727, - [SMALL_STATE(676)] = 20780, - [SMALL_STATE(677)] = 20833, - [SMALL_STATE(678)] = 20886, - [SMALL_STATE(679)] = 20943, - [SMALL_STATE(680)] = 20996, - [SMALL_STATE(681)] = 21055, - [SMALL_STATE(682)] = 21108, - [SMALL_STATE(683)] = 21161, - [SMALL_STATE(684)] = 21214, - [SMALL_STATE(685)] = 21273, - [SMALL_STATE(686)] = 21326, - [SMALL_STATE(687)] = 21385, - [SMALL_STATE(688)] = 21444, - [SMALL_STATE(689)] = 21503, - [SMALL_STATE(690)] = 21562, - [SMALL_STATE(691)] = 21623, - [SMALL_STATE(692)] = 21682, - [SMALL_STATE(693)] = 21739, - [SMALL_STATE(694)] = 21800, - [SMALL_STATE(695)] = 21859, - [SMALL_STATE(696)] = 21912, - [SMALL_STATE(697)] = 21971, - [SMALL_STATE(698)] = 22024, - [SMALL_STATE(699)] = 22077, - [SMALL_STATE(700)] = 22130, - [SMALL_STATE(701)] = 22183, - [SMALL_STATE(702)] = 22236, - [SMALL_STATE(703)] = 22293, - [SMALL_STATE(704)] = 22346, - [SMALL_STATE(705)] = 22399, - [SMALL_STATE(706)] = 22452, - [SMALL_STATE(707)] = 22505, - [SMALL_STATE(708)] = 22564, - [SMALL_STATE(709)] = 22623, - [SMALL_STATE(710)] = 22682, - [SMALL_STATE(711)] = 22735, - [SMALL_STATE(712)] = 22788, - [SMALL_STATE(713)] = 22841, - [SMALL_STATE(714)] = 22894, - [SMALL_STATE(715)] = 22947, - [SMALL_STATE(716)] = 23006, - [SMALL_STATE(717)] = 23065, - [SMALL_STATE(718)] = 23118, - [SMALL_STATE(719)] = 23177, - [SMALL_STATE(720)] = 23236, - [SMALL_STATE(721)] = 23289, - [SMALL_STATE(722)] = 23348, - [SMALL_STATE(723)] = 23407, - [SMALL_STATE(724)] = 23466, - [SMALL_STATE(725)] = 23525, - [SMALL_STATE(726)] = 23584, - [SMALL_STATE(727)] = 23643, - [SMALL_STATE(728)] = 23702, - [SMALL_STATE(729)] = 23761, - [SMALL_STATE(730)] = 23820, - [SMALL_STATE(731)] = 23873, - [SMALL_STATE(732)] = 23926, - [SMALL_STATE(733)] = 23979, - [SMALL_STATE(734)] = 24038, - [SMALL_STATE(735)] = 24097, - [SMALL_STATE(736)] = 24150, - [SMALL_STATE(737)] = 24203, - [SMALL_STATE(738)] = 24256, - [SMALL_STATE(739)] = 24315, - [SMALL_STATE(740)] = 24374, - [SMALL_STATE(741)] = 24433, - [SMALL_STATE(742)] = 24494, - [SMALL_STATE(743)] = 24553, - [SMALL_STATE(744)] = 24612, - [SMALL_STATE(745)] = 24671, - [SMALL_STATE(746)] = 24730, - [SMALL_STATE(747)] = 24789, - [SMALL_STATE(748)] = 24848, - [SMALL_STATE(749)] = 24907, - [SMALL_STATE(750)] = 24964, - [SMALL_STATE(751)] = 25023, - [SMALL_STATE(752)] = 25082, - [SMALL_STATE(753)] = 25141, - [SMALL_STATE(754)] = 25194, - [SMALL_STATE(755)] = 25253, - [SMALL_STATE(756)] = 25312, - [SMALL_STATE(757)] = 25365, - [SMALL_STATE(758)] = 25418, - [SMALL_STATE(759)] = 25470, - [SMALL_STATE(760)] = 25528, - [SMALL_STATE(761)] = 25586, - [SMALL_STATE(762)] = 25638, - [SMALL_STATE(763)] = 25696, - [SMALL_STATE(764)] = 25754, - [SMALL_STATE(765)] = 25812, - [SMALL_STATE(766)] = 25864, - [SMALL_STATE(767)] = 25916, - [SMALL_STATE(768)] = 25968, - [SMALL_STATE(769)] = 26024, - [SMALL_STATE(770)] = 26082, - [SMALL_STATE(771)] = 26134, - [SMALL_STATE(772)] = 26186, - [SMALL_STATE(773)] = 26238, - [SMALL_STATE(774)] = 26290, - [SMALL_STATE(775)] = 26348, - [SMALL_STATE(776)] = 26400, - [SMALL_STATE(777)] = 26452, - [SMALL_STATE(778)] = 26504, - [SMALL_STATE(779)] = 26556, - [SMALL_STATE(780)] = 26608, - [SMALL_STATE(781)] = 26660, - [SMALL_STATE(782)] = 26712, - [SMALL_STATE(783)] = 26764, - [SMALL_STATE(784)] = 26816, - [SMALL_STATE(785)] = 26868, - [SMALL_STATE(786)] = 26926, - [SMALL_STATE(787)] = 26984, - [SMALL_STATE(788)] = 27042, - [SMALL_STATE(789)] = 27094, - [SMALL_STATE(790)] = 27146, - [SMALL_STATE(791)] = 27198, - [SMALL_STATE(792)] = 27256, - [SMALL_STATE(793)] = 27308, - [SMALL_STATE(794)] = 27366, - [SMALL_STATE(795)] = 27418, - [SMALL_STATE(796)] = 27476, - [SMALL_STATE(797)] = 27528, - [SMALL_STATE(798)] = 27586, - [SMALL_STATE(799)] = 27644, - [SMALL_STATE(800)] = 27696, - [SMALL_STATE(801)] = 27748, - [SMALL_STATE(802)] = 27806, - [SMALL_STATE(803)] = 27858, - [SMALL_STATE(804)] = 27910, - [SMALL_STATE(805)] = 27968, - [SMALL_STATE(806)] = 28026, - [SMALL_STATE(807)] = 28084, - [SMALL_STATE(808)] = 28140, - [SMALL_STATE(809)] = 28198, - [SMALL_STATE(810)] = 28250, - [SMALL_STATE(811)] = 28302, - [SMALL_STATE(812)] = 28354, - [SMALL_STATE(813)] = 28412, - [SMALL_STATE(814)] = 28464, - [SMALL_STATE(815)] = 28522, - [SMALL_STATE(816)] = 28574, - [SMALL_STATE(817)] = 28632, - [SMALL_STATE(818)] = 28684, - [SMALL_STATE(819)] = 28736, - [SMALL_STATE(820)] = 28794, - [SMALL_STATE(821)] = 28852, - [SMALL_STATE(822)] = 28952, - [SMALL_STATE(823)] = 29004, - [SMALL_STATE(824)] = 29062, - [SMALL_STATE(825)] = 29114, - [SMALL_STATE(826)] = 29166, - [SMALL_STATE(827)] = 29222, - [SMALL_STATE(828)] = 29280, - [SMALL_STATE(829)] = 29332, - [SMALL_STATE(830)] = 29384, - [SMALL_STATE(831)] = 29442, - [SMALL_STATE(832)] = 29494, - [SMALL_STATE(833)] = 29546, - [SMALL_STATE(834)] = 29598, - [SMALL_STATE(835)] = 29650, - [SMALL_STATE(836)] = 29708, - [SMALL_STATE(837)] = 29760, - [SMALL_STATE(838)] = 29812, - [SMALL_STATE(839)] = 29864, - [SMALL_STATE(840)] = 29922, - [SMALL_STATE(841)] = 29974, - [SMALL_STATE(842)] = 30074, - [SMALL_STATE(843)] = 30126, - [SMALL_STATE(844)] = 30226, - [SMALL_STATE(845)] = 30278, - [SMALL_STATE(846)] = 30330, - [SMALL_STATE(847)] = 30388, - [SMALL_STATE(848)] = 30440, - [SMALL_STATE(849)] = 30492, - [SMALL_STATE(850)] = 30544, - [SMALL_STATE(851)] = 30596, - [SMALL_STATE(852)] = 30648, - [SMALL_STATE(853)] = 30700, - [SMALL_STATE(854)] = 30752, - [SMALL_STATE(855)] = 30852, - [SMALL_STATE(856)] = 30904, - [SMALL_STATE(857)] = 30962, - [SMALL_STATE(858)] = 31014, - [SMALL_STATE(859)] = 31070, - [SMALL_STATE(860)] = 31122, - [SMALL_STATE(861)] = 31180, - [SMALL_STATE(862)] = 31232, - [SMALL_STATE(863)] = 31284, - [SMALL_STATE(864)] = 31336, - [SMALL_STATE(865)] = 31388, - [SMALL_STATE(866)] = 31440, - [SMALL_STATE(867)] = 31540, - [SMALL_STATE(868)] = 31592, - [SMALL_STATE(869)] = 31650, - [SMALL_STATE(870)] = 31708, - [SMALL_STATE(871)] = 31766, - [SMALL_STATE(872)] = 31818, - [SMALL_STATE(873)] = 31870, - [SMALL_STATE(874)] = 31922, - [SMALL_STATE(875)] = 31974, - [SMALL_STATE(876)] = 32026, - [SMALL_STATE(877)] = 32078, - [SMALL_STATE(878)] = 32130, - [SMALL_STATE(879)] = 32230, - [SMALL_STATE(880)] = 32282, - [SMALL_STATE(881)] = 32334, - [SMALL_STATE(882)] = 32386, - [SMALL_STATE(883)] = 32442, - [SMALL_STATE(884)] = 32494, - [SMALL_STATE(885)] = 32546, - [SMALL_STATE(886)] = 32646, - [SMALL_STATE(887)] = 32698, - [SMALL_STATE(888)] = 32756, - [SMALL_STATE(889)] = 32808, - [SMALL_STATE(890)] = 32860, - [SMALL_STATE(891)] = 32918, - [SMALL_STATE(892)] = 32970, - [SMALL_STATE(893)] = 33028, - [SMALL_STATE(894)] = 33084, - [SMALL_STATE(895)] = 33136, - [SMALL_STATE(896)] = 33188, - [SMALL_STATE(897)] = 33240, - [SMALL_STATE(898)] = 33292, - [SMALL_STATE(899)] = 33344, - [SMALL_STATE(900)] = 33396, - [SMALL_STATE(901)] = 33448, - [SMALL_STATE(902)] = 33500, - [SMALL_STATE(903)] = 33552, - [SMALL_STATE(904)] = 33604, - [SMALL_STATE(905)] = 33656, - [SMALL_STATE(906)] = 33708, - [SMALL_STATE(907)] = 33764, - [SMALL_STATE(908)] = 33816, - [SMALL_STATE(909)] = 33916, - [SMALL_STATE(910)] = 33974, - [SMALL_STATE(911)] = 34026, - [SMALL_STATE(912)] = 34084, - [SMALL_STATE(913)] = 34136, - [SMALL_STATE(914)] = 34187, - [SMALL_STATE(915)] = 34244, - [SMALL_STATE(916)] = 34295, - [SMALL_STATE(917)] = 34346, - [SMALL_STATE(918)] = 34401, - [SMALL_STATE(919)] = 34464, - [SMALL_STATE(920)] = 34527, - [SMALL_STATE(921)] = 34578, - [SMALL_STATE(922)] = 34629, - [SMALL_STATE(923)] = 34680, - [SMALL_STATE(924)] = 34731, - [SMALL_STATE(925)] = 34782, - [SMALL_STATE(926)] = 34833, - [SMALL_STATE(927)] = 34884, - [SMALL_STATE(928)] = 34935, - [SMALL_STATE(929)] = 34986, - [SMALL_STATE(930)] = 35041, - [SMALL_STATE(931)] = 35092, - [SMALL_STATE(932)] = 35143, - [SMALL_STATE(933)] = 35194, - [SMALL_STATE(934)] = 35245, - [SMALL_STATE(935)] = 35296, - [SMALL_STATE(936)] = 35347, - [SMALL_STATE(937)] = 35404, - [SMALL_STATE(938)] = 35455, - [SMALL_STATE(939)] = 35510, - [SMALL_STATE(940)] = 35561, - [SMALL_STATE(941)] = 35612, - [SMALL_STATE(942)] = 35663, - [SMALL_STATE(943)] = 35720, - [SMALL_STATE(944)] = 35777, - [SMALL_STATE(945)] = 35828, - [SMALL_STATE(946)] = 35923, - [SMALL_STATE(947)] = 35980, - [SMALL_STATE(948)] = 36037, - [SMALL_STATE(949)] = 36088, - [SMALL_STATE(950)] = 36145, - [SMALL_STATE(951)] = 36202, - [SMALL_STATE(952)] = 36253, - [SMALL_STATE(953)] = 36304, - [SMALL_STATE(954)] = 36399, - [SMALL_STATE(955)] = 36450, - [SMALL_STATE(956)] = 36501, - [SMALL_STATE(957)] = 36552, - [SMALL_STATE(958)] = 36603, - [SMALL_STATE(959)] = 36654, - [SMALL_STATE(960)] = 36705, - [SMALL_STATE(961)] = 36756, - [SMALL_STATE(962)] = 36851, - [SMALL_STATE(963)] = 36946, - [SMALL_STATE(964)] = 36997, - [SMALL_STATE(965)] = 37048, - [SMALL_STATE(966)] = 37099, - [SMALL_STATE(967)] = 37150, - [SMALL_STATE(968)] = 37207, - [SMALL_STATE(969)] = 37258, - [SMALL_STATE(970)] = 37313, - [SMALL_STATE(971)] = 37408, - [SMALL_STATE(972)] = 37459, - [SMALL_STATE(973)] = 37514, - [SMALL_STATE(974)] = 37565, - [SMALL_STATE(975)] = 37616, - [SMALL_STATE(976)] = 37667, - [SMALL_STATE(977)] = 37762, - [SMALL_STATE(978)] = 37813, - [SMALL_STATE(979)] = 37864, - [SMALL_STATE(980)] = 37915, - [SMALL_STATE(981)] = 37972, - [SMALL_STATE(982)] = 38029, - [SMALL_STATE(983)] = 38086, - [SMALL_STATE(984)] = 38137, - [SMALL_STATE(985)] = 38194, - [SMALL_STATE(986)] = 38245, - [SMALL_STATE(987)] = 38302, - [SMALL_STATE(988)] = 38397, - [SMALL_STATE(989)] = 38454, - [SMALL_STATE(990)] = 38511, - [SMALL_STATE(991)] = 38562, - [SMALL_STATE(992)] = 38619, - [SMALL_STATE(993)] = 38674, - [SMALL_STATE(994)] = 38729, - [SMALL_STATE(995)] = 38786, - [SMALL_STATE(996)] = 38843, - [SMALL_STATE(997)] = 38894, - [SMALL_STATE(998)] = 38951, - [SMALL_STATE(999)] = 39008, - [SMALL_STATE(1000)] = 39059, - [SMALL_STATE(1001)] = 39116, - [SMALL_STATE(1002)] = 39167, - [SMALL_STATE(1003)] = 39218, - [SMALL_STATE(1004)] = 39269, - [SMALL_STATE(1005)] = 39320, - [SMALL_STATE(1006)] = 39371, - [SMALL_STATE(1007)] = 39422, - [SMALL_STATE(1008)] = 39473, - [SMALL_STATE(1009)] = 39524, - [SMALL_STATE(1010)] = 39581, - [SMALL_STATE(1011)] = 39632, - [SMALL_STATE(1012)] = 39689, - [SMALL_STATE(1013)] = 39740, - [SMALL_STATE(1014)] = 39791, - [SMALL_STATE(1015)] = 39848, - [SMALL_STATE(1016)] = 39903, - [SMALL_STATE(1017)] = 39960, - [SMALL_STATE(1018)] = 40011, - [SMALL_STATE(1019)] = 40068, - [SMALL_STATE(1020)] = 40163, - [SMALL_STATE(1021)] = 40218, - [SMALL_STATE(1022)] = 40273, - [SMALL_STATE(1023)] = 40328, - [SMALL_STATE(1024)] = 40379, - [SMALL_STATE(1025)] = 40430, - [SMALL_STATE(1026)] = 40481, - [SMALL_STATE(1027)] = 40532, - [SMALL_STATE(1028)] = 40589, - [SMALL_STATE(1029)] = 40646, - [SMALL_STATE(1030)] = 40697, - [SMALL_STATE(1031)] = 40754, - [SMALL_STATE(1032)] = 40811, - [SMALL_STATE(1033)] = 40868, - [SMALL_STATE(1034)] = 40919, - [SMALL_STATE(1035)] = 40976, - [SMALL_STATE(1036)] = 41027, - [SMALL_STATE(1037)] = 41082, - [SMALL_STATE(1038)] = 41139, - [SMALL_STATE(1039)] = 41194, - [SMALL_STATE(1040)] = 41251, - [SMALL_STATE(1041)] = 41302, - [SMALL_STATE(1042)] = 41353, - [SMALL_STATE(1043)] = 41404, - [SMALL_STATE(1044)] = 41455, - [SMALL_STATE(1045)] = 41506, - [SMALL_STATE(1046)] = 41563, - [SMALL_STATE(1047)] = 41620, - [SMALL_STATE(1048)] = 41675, - [SMALL_STATE(1049)] = 41726, - [SMALL_STATE(1050)] = 41777, - [SMALL_STATE(1051)] = 41828, - [SMALL_STATE(1052)] = 41879, - [SMALL_STATE(1053)] = 41934, - [SMALL_STATE(1054)] = 41985, - [SMALL_STATE(1055)] = 42036, - [SMALL_STATE(1056)] = 42093, - [SMALL_STATE(1057)] = 42144, - [SMALL_STATE(1058)] = 42195, - [SMALL_STATE(1059)] = 42246, - [SMALL_STATE(1060)] = 42315, - [SMALL_STATE(1061)] = 42366, - [SMALL_STATE(1062)] = 42421, - [SMALL_STATE(1063)] = 42476, - [SMALL_STATE(1064)] = 42533, - [SMALL_STATE(1065)] = 42583, - [SMALL_STATE(1066)] = 42633, - [SMALL_STATE(1067)] = 42683, - [SMALL_STATE(1068)] = 42733, - [SMALL_STATE(1069)] = 42787, - [SMALL_STATE(1070)] = 42837, - [SMALL_STATE(1071)] = 42891, - [SMALL_STATE(1072)] = 42941, - [SMALL_STATE(1073)] = 43033, - [SMALL_STATE(1074)] = 43095, - [SMALL_STATE(1075)] = 43145, - [SMALL_STATE(1076)] = 43195, - [SMALL_STATE(1077)] = 43245, - [SMALL_STATE(1078)] = 43295, - [SMALL_STATE(1079)] = 43389, - [SMALL_STATE(1080)] = 43439, - [SMALL_STATE(1081)] = 43493, - [SMALL_STATE(1082)] = 43585, - [SMALL_STATE(1083)] = 43677, - [SMALL_STATE(1084)] = 43769, - [SMALL_STATE(1085)] = 43835, - [SMALL_STATE(1086)] = 43885, - [SMALL_STATE(1087)] = 43935, - [SMALL_STATE(1088)] = 43985, - [SMALL_STATE(1089)] = 44039, - [SMALL_STATE(1090)] = 44093, - [SMALL_STATE(1091)] = 44143, - [SMALL_STATE(1092)] = 44235, - [SMALL_STATE(1093)] = 44285, - [SMALL_STATE(1094)] = 44377, - [SMALL_STATE(1095)] = 44427, - [SMALL_STATE(1096)] = 44519, - [SMALL_STATE(1097)] = 44611, - [SMALL_STATE(1098)] = 44703, - [SMALL_STATE(1099)] = 44753, - [SMALL_STATE(1100)] = 44803, - [SMALL_STATE(1101)] = 44853, - [SMALL_STATE(1102)] = 44945, - [SMALL_STATE(1103)] = 44995, - [SMALL_STATE(1104)] = 45045, - [SMALL_STATE(1105)] = 45095, - [SMALL_STATE(1106)] = 45189, - [SMALL_STATE(1107)] = 45239, - [SMALL_STATE(1108)] = 45293, - [SMALL_STATE(1109)] = 45343, - [SMALL_STATE(1110)] = 45393, - [SMALL_STATE(1111)] = 45443, - [SMALL_STATE(1112)] = 45535, - [SMALL_STATE(1113)] = 45585, - [SMALL_STATE(1114)] = 45677, - [SMALL_STATE(1115)] = 45769, - [SMALL_STATE(1116)] = 45819, - [SMALL_STATE(1117)] = 45869, - [SMALL_STATE(1118)] = 45919, - [SMALL_STATE(1119)] = 45969, - [SMALL_STATE(1120)] = 46019, - [SMALL_STATE(1121)] = 46069, - [SMALL_STATE(1122)] = 46119, - [SMALL_STATE(1123)] = 46169, - [SMALL_STATE(1124)] = 46219, - [SMALL_STATE(1125)] = 46269, - [SMALL_STATE(1126)] = 46319, - [SMALL_STATE(1127)] = 46369, - [SMALL_STATE(1128)] = 46419, - [SMALL_STATE(1129)] = 46473, - [SMALL_STATE(1130)] = 46529, - [SMALL_STATE(1131)] = 46585, - [SMALL_STATE(1132)] = 46641, - [SMALL_STATE(1133)] = 46697, - [SMALL_STATE(1134)] = 46747, - [SMALL_STATE(1135)] = 46797, - [SMALL_STATE(1136)] = 46889, - [SMALL_STATE(1137)] = 46939, - [SMALL_STATE(1138)] = 46989, - [SMALL_STATE(1139)] = 47081, - [SMALL_STATE(1140)] = 47131, - [SMALL_STATE(1141)] = 47181, - [SMALL_STATE(1142)] = 47231, - [SMALL_STATE(1143)] = 47323, - [SMALL_STATE(1144)] = 47373, - [SMALL_STATE(1145)] = 47423, - [SMALL_STATE(1146)] = 47473, - [SMALL_STATE(1147)] = 47565, - [SMALL_STATE(1148)] = 47657, - [SMALL_STATE(1149)] = 47707, - [SMALL_STATE(1150)] = 47757, - [SMALL_STATE(1151)] = 47807, - [SMALL_STATE(1152)] = 47857, - [SMALL_STATE(1153)] = 47907, - [SMALL_STATE(1154)] = 47999, - [SMALL_STATE(1155)] = 48049, - [SMALL_STATE(1156)] = 48099, - [SMALL_STATE(1157)] = 48149, - [SMALL_STATE(1158)] = 48219, - [SMALL_STATE(1159)] = 48311, - [SMALL_STATE(1160)] = 48361, - [SMALL_STATE(1161)] = 48411, - [SMALL_STATE(1162)] = 48461, - [SMALL_STATE(1163)] = 48511, - [SMALL_STATE(1164)] = 48569, - [SMALL_STATE(1165)] = 48661, - [SMALL_STATE(1166)] = 48753, - [SMALL_STATE(1167)] = 48803, - [SMALL_STATE(1168)] = 48897, - [SMALL_STATE(1169)] = 48947, - [SMALL_STATE(1170)] = 48997, - [SMALL_STATE(1171)] = 49047, - [SMALL_STATE(1172)] = 49139, - [SMALL_STATE(1173)] = 49231, - [SMALL_STATE(1174)] = 49323, - [SMALL_STATE(1175)] = 49415, - [SMALL_STATE(1176)] = 49465, - [SMALL_STATE(1177)] = 49515, - [SMALL_STATE(1178)] = 49565, - [SMALL_STATE(1179)] = 49615, - [SMALL_STATE(1180)] = 49665, - [SMALL_STATE(1181)] = 49715, - [SMALL_STATE(1182)] = 49807, - [SMALL_STATE(1183)] = 49857, - [SMALL_STATE(1184)] = 49949, - [SMALL_STATE(1185)] = 50003, - [SMALL_STATE(1186)] = 50059, - [SMALL_STATE(1187)] = 50109, - [SMALL_STATE(1188)] = 50165, - [SMALL_STATE(1189)] = 50219, - [SMALL_STATE(1190)] = 50275, - [SMALL_STATE(1191)] = 50325, - [SMALL_STATE(1192)] = 50417, - [SMALL_STATE(1193)] = 50509, - [SMALL_STATE(1194)] = 50601, - [SMALL_STATE(1195)] = 50693, - [SMALL_STATE(1196)] = 50787, - [SMALL_STATE(1197)] = 50879, - [SMALL_STATE(1198)] = 50935, - [SMALL_STATE(1199)] = 50991, - [SMALL_STATE(1200)] = 51041, - [SMALL_STATE(1201)] = 51133, - [SMALL_STATE(1202)] = 51225, - [SMALL_STATE(1203)] = 51275, - [SMALL_STATE(1204)] = 51367, - [SMALL_STATE(1205)] = 51417, - [SMALL_STATE(1206)] = 51509, - [SMALL_STATE(1207)] = 51601, - [SMALL_STATE(1208)] = 51655, - [SMALL_STATE(1209)] = 51705, - [SMALL_STATE(1210)] = 51755, - [SMALL_STATE(1211)] = 51805, - [SMALL_STATE(1212)] = 51855, - [SMALL_STATE(1213)] = 51911, - [SMALL_STATE(1214)] = 51965, - [SMALL_STATE(1215)] = 52015, - [SMALL_STATE(1216)] = 52071, - [SMALL_STATE(1217)] = 52121, - [SMALL_STATE(1218)] = 52213, - [SMALL_STATE(1219)] = 52305, - [SMALL_STATE(1220)] = 52355, - [SMALL_STATE(1221)] = 52411, - [SMALL_STATE(1222)] = 52467, - [SMALL_STATE(1223)] = 52523, - [SMALL_STATE(1224)] = 52573, - [SMALL_STATE(1225)] = 52623, - [SMALL_STATE(1226)] = 52673, - [SMALL_STATE(1227)] = 52765, - [SMALL_STATE(1228)] = 52815, - [SMALL_STATE(1229)] = 52907, - [SMALL_STATE(1230)] = 53001, - [SMALL_STATE(1231)] = 53093, - [SMALL_STATE(1232)] = 53185, - [SMALL_STATE(1233)] = 53277, - [SMALL_STATE(1234)] = 53331, - [SMALL_STATE(1235)] = 53423, - [SMALL_STATE(1236)] = 53473, - [SMALL_STATE(1237)] = 53523, - [SMALL_STATE(1238)] = 53573, - [SMALL_STATE(1239)] = 53623, - [SMALL_STATE(1240)] = 53677, - [SMALL_STATE(1241)] = 53727, - [SMALL_STATE(1242)] = 53819, - [SMALL_STATE(1243)] = 53875, - [SMALL_STATE(1244)] = 53928, - [SMALL_STATE(1245)] = 53977, - [SMALL_STATE(1246)] = 54026, - [SMALL_STATE(1247)] = 54079, - [SMALL_STATE(1248)] = 54132, - [SMALL_STATE(1249)] = 54181, - [SMALL_STATE(1250)] = 54236, - [SMALL_STATE(1251)] = 54289, - [SMALL_STATE(1252)] = 54344, - [SMALL_STATE(1253)] = 54399, - [SMALL_STATE(1254)] = 54448, - [SMALL_STATE(1255)] = 54501, - [SMALL_STATE(1256)] = 54554, - [SMALL_STATE(1257)] = 54607, - [SMALL_STATE(1258)] = 54660, - [SMALL_STATE(1259)] = 54709, - [SMALL_STATE(1260)] = 54758, - [SMALL_STATE(1261)] = 54807, - [SMALL_STATE(1262)] = 54860, - [SMALL_STATE(1263)] = 54913, - [SMALL_STATE(1264)] = 54968, - [SMALL_STATE(1265)] = 55021, - [SMALL_STATE(1266)] = 55074, - [SMALL_STATE(1267)] = 55129, - [SMALL_STATE(1268)] = 55184, - [SMALL_STATE(1269)] = 55237, - [SMALL_STATE(1270)] = 55286, - [SMALL_STATE(1271)] = 55335, - [SMALL_STATE(1272)] = 55390, - [SMALL_STATE(1273)] = 55439, - [SMALL_STATE(1274)] = 55488, - [SMALL_STATE(1275)] = 55537, - [SMALL_STATE(1276)] = 55592, - [SMALL_STATE(1277)] = 55647, - [SMALL_STATE(1278)] = 55700, - [SMALL_STATE(1279)] = 55753, - [SMALL_STATE(1280)] = 55802, - [SMALL_STATE(1281)] = 55851, - [SMALL_STATE(1282)] = 55900, - [SMALL_STATE(1283)] = 55955, - [SMALL_STATE(1284)] = 56010, - [SMALL_STATE(1285)] = 56066, - [SMALL_STATE(1286)] = 56114, - [SMALL_STATE(1287)] = 56168, - [SMALL_STATE(1288)] = 56220, - [SMALL_STATE(1289)] = 56274, - [SMALL_STATE(1290)] = 56326, - [SMALL_STATE(1291)] = 56374, - [SMALL_STATE(1292)] = 56426, - [SMALL_STATE(1293)] = 56480, - [SMALL_STATE(1294)] = 56534, - [SMALL_STATE(1295)] = 56586, - [SMALL_STATE(1296)] = 56634, - [SMALL_STATE(1297)] = 56690, - [SMALL_STATE(1298)] = 56742, - [SMALL_STATE(1299)] = 56798, - [SMALL_STATE(1300)] = 56846, - [SMALL_STATE(1301)] = 56902, - [SMALL_STATE(1302)] = 56958, - [SMALL_STATE(1303)] = 57014, - [SMALL_STATE(1304)] = 57070, - [SMALL_STATE(1305)] = 57122, - [SMALL_STATE(1306)] = 57178, - [SMALL_STATE(1307)] = 57234, - [SMALL_STATE(1308)] = 57290, - [SMALL_STATE(1309)] = 57342, - [SMALL_STATE(1310)] = 57394, - [SMALL_STATE(1311)] = 57448, - [SMALL_STATE(1312)] = 57496, - [SMALL_STATE(1313)] = 57552, - [SMALL_STATE(1314)] = 57604, - [SMALL_STATE(1315)] = 57658, - [SMALL_STATE(1316)] = 57714, - [SMALL_STATE(1317)] = 57770, - [SMALL_STATE(1318)] = 57822, - [SMALL_STATE(1319)] = 57874, - [SMALL_STATE(1320)] = 57928, - [SMALL_STATE(1321)] = 57976, - [SMALL_STATE(1322)] = 58032, - [SMALL_STATE(1323)] = 58088, - [SMALL_STATE(1324)] = 58140, - [SMALL_STATE(1325)] = 58192, - [SMALL_STATE(1326)] = 58246, - [SMALL_STATE(1327)] = 58294, - [SMALL_STATE(1328)] = 58350, - [SMALL_STATE(1329)] = 58404, - [SMALL_STATE(1330)] = 58452, - [SMALL_STATE(1331)] = 58500, - [SMALL_STATE(1332)] = 58548, - [SMALL_STATE(1333)] = 58604, - [SMALL_STATE(1334)] = 58660, - [SMALL_STATE(1335)] = 58712, - [SMALL_STATE(1336)] = 58760, - [SMALL_STATE(1337)] = 58808, - [SMALL_STATE(1338)] = 58864, - [SMALL_STATE(1339)] = 58920, - [SMALL_STATE(1340)] = 58974, - [SMALL_STATE(1341)] = 59030, - [SMALL_STATE(1342)] = 59086, - [SMALL_STATE(1343)] = 59142, - [SMALL_STATE(1344)] = 59198, - [SMALL_STATE(1345)] = 59246, - [SMALL_STATE(1346)] = 59302, - [SMALL_STATE(1347)] = 59356, - [SMALL_STATE(1348)] = 59410, - [SMALL_STATE(1349)] = 59466, - [SMALL_STATE(1350)] = 59522, - [SMALL_STATE(1351)] = 59578, - [SMALL_STATE(1352)] = 59634, - [SMALL_STATE(1353)] = 59690, - [SMALL_STATE(1354)] = 59746, - [SMALL_STATE(1355)] = 59802, - [SMALL_STATE(1356)] = 59858, - [SMALL_STATE(1357)] = 59910, - [SMALL_STATE(1358)] = 59966, - [SMALL_STATE(1359)] = 60022, - [SMALL_STATE(1360)] = 60078, - [SMALL_STATE(1361)] = 60130, - [SMALL_STATE(1362)] = 60186, - [SMALL_STATE(1363)] = 60242, - [SMALL_STATE(1364)] = 60298, - [SMALL_STATE(1365)] = 60354, - [SMALL_STATE(1366)] = 60402, - [SMALL_STATE(1367)] = 60458, - [SMALL_STATE(1368)] = 60510, - [SMALL_STATE(1369)] = 60566, - [SMALL_STATE(1370)] = 60622, - [SMALL_STATE(1371)] = 60670, - [SMALL_STATE(1372)] = 60726, - [SMALL_STATE(1373)] = 60774, - [SMALL_STATE(1374)] = 60822, - [SMALL_STATE(1375)] = 60878, - [SMALL_STATE(1376)] = 60934, - [SMALL_STATE(1377)] = 60982, - [SMALL_STATE(1378)] = 61038, - [SMALL_STATE(1379)] = 61094, - [SMALL_STATE(1380)] = 61142, - [SMALL_STATE(1381)] = 61190, - [SMALL_STATE(1382)] = 61238, - [SMALL_STATE(1383)] = 61286, - [SMALL_STATE(1384)] = 61334, - [SMALL_STATE(1385)] = 61382, - [SMALL_STATE(1386)] = 61430, - [SMALL_STATE(1387)] = 61478, - [SMALL_STATE(1388)] = 61530, - [SMALL_STATE(1389)] = 61578, - [SMALL_STATE(1390)] = 61626, - [SMALL_STATE(1391)] = 61674, - [SMALL_STATE(1392)] = 61722, - [SMALL_STATE(1393)] = 61770, - [SMALL_STATE(1394)] = 61826, - [SMALL_STATE(1395)] = 61874, - [SMALL_STATE(1396)] = 61922, - [SMALL_STATE(1397)] = 61975, - [SMALL_STATE(1398)] = 62028, - [SMALL_STATE(1399)] = 62075, - [SMALL_STATE(1400)] = 62122, - [SMALL_STATE(1401)] = 62169, - [SMALL_STATE(1402)] = 62222, - [SMALL_STATE(1403)] = 62269, - [SMALL_STATE(1404)] = 62316, - [SMALL_STATE(1405)] = 62363, - [SMALL_STATE(1406)] = 62416, - [SMALL_STATE(1407)] = 62463, - [SMALL_STATE(1408)] = 62510, - [SMALL_STATE(1409)] = 62557, - [SMALL_STATE(1410)] = 62604, - [SMALL_STATE(1411)] = 62651, - [SMALL_STATE(1412)] = 62698, - [SMALL_STATE(1413)] = 62745, - [SMALL_STATE(1414)] = 62796, - [SMALL_STATE(1415)] = 62843, - [SMALL_STATE(1416)] = 62890, - [SMALL_STATE(1417)] = 62943, - [SMALL_STATE(1418)] = 62990, - [SMALL_STATE(1419)] = 63037, - [SMALL_STATE(1420)] = 63084, - [SMALL_STATE(1421)] = 63131, - [SMALL_STATE(1422)] = 63184, - [SMALL_STATE(1423)] = 63235, - [SMALL_STATE(1424)] = 63286, - [SMALL_STATE(1425)] = 63333, - [SMALL_STATE(1426)] = 63380, - [SMALL_STATE(1427)] = 63427, - [SMALL_STATE(1428)] = 63474, - [SMALL_STATE(1429)] = 63525, - [SMALL_STATE(1430)] = 63578, - [SMALL_STATE(1431)] = 63631, - [SMALL_STATE(1432)] = 63682, - [SMALL_STATE(1433)] = 63737, - [SMALL_STATE(1434)] = 63792, - [SMALL_STATE(1435)] = 63843, - [SMALL_STATE(1436)] = 63894, - [SMALL_STATE(1437)] = 63945, - [SMALL_STATE(1438)] = 63992, - [SMALL_STATE(1439)] = 64039, - [SMALL_STATE(1440)] = 64090, - [SMALL_STATE(1441)] = 64143, - [SMALL_STATE(1442)] = 64194, - [SMALL_STATE(1443)] = 64247, - [SMALL_STATE(1444)] = 64302, - [SMALL_STATE(1445)] = 64357, - [SMALL_STATE(1446)] = 64404, - [SMALL_STATE(1447)] = 64455, - [SMALL_STATE(1448)] = 64508, - [SMALL_STATE(1449)] = 64561, - [SMALL_STATE(1450)] = 64608, - [SMALL_STATE(1451)] = 64655, - [SMALL_STATE(1452)] = 64708, - [SMALL_STATE(1453)] = 64797, - [SMALL_STATE(1454)] = 64852, - [SMALL_STATE(1455)] = 64907, - [SMALL_STATE(1456)] = 64954, - [SMALL_STATE(1457)] = 65001, - [SMALL_STATE(1458)] = 65056, - [SMALL_STATE(1459)] = 65109, - [SMALL_STATE(1460)] = 65162, - [SMALL_STATE(1461)] = 65251, - [SMALL_STATE(1462)] = 65340, - [SMALL_STATE(1463)] = 65429, - [SMALL_STATE(1464)] = 65518, - [SMALL_STATE(1465)] = 65571, - [SMALL_STATE(1466)] = 65622, - [SMALL_STATE(1467)] = 65673, - [SMALL_STATE(1468)] = 65720, - [SMALL_STATE(1469)] = 65767, - [SMALL_STATE(1470)] = 65818, - [SMALL_STATE(1471)] = 65869, - [SMALL_STATE(1472)] = 65922, - [SMALL_STATE(1473)] = 66011, - [SMALL_STATE(1474)] = 66062, - [SMALL_STATE(1475)] = 66115, - [SMALL_STATE(1476)] = 66162, - [SMALL_STATE(1477)] = 66215, - [SMALL_STATE(1478)] = 66268, - [SMALL_STATE(1479)] = 66357, - [SMALL_STATE(1480)] = 66410, - [SMALL_STATE(1481)] = 66461, - [SMALL_STATE(1482)] = 66512, - [SMALL_STATE(1483)] = 66601, - [SMALL_STATE(1484)] = 66648, - [SMALL_STATE(1485)] = 66699, - [SMALL_STATE(1486)] = 66750, - [SMALL_STATE(1487)] = 66797, - [SMALL_STATE(1488)] = 66852, - [SMALL_STATE(1489)] = 66903, - [SMALL_STATE(1490)] = 66950, - [SMALL_STATE(1491)] = 67003, - [SMALL_STATE(1492)] = 67054, - [SMALL_STATE(1493)] = 67107, - [SMALL_STATE(1494)] = 67154, - [SMALL_STATE(1495)] = 67205, - [SMALL_STATE(1496)] = 67252, - [SMALL_STATE(1497)] = 67299, - [SMALL_STATE(1498)] = 67350, - [SMALL_STATE(1499)] = 67397, - [SMALL_STATE(1500)] = 67450, - [SMALL_STATE(1501)] = 67503, - [SMALL_STATE(1502)] = 67592, - [SMALL_STATE(1503)] = 67645, - [SMALL_STATE(1504)] = 67696, - [SMALL_STATE(1505)] = 67747, - [SMALL_STATE(1506)] = 67794, - [SMALL_STATE(1507)] = 67849, - [SMALL_STATE(1508)] = 67938, - [SMALL_STATE(1509)] = 67991, - [SMALL_STATE(1510)] = 68046, - [SMALL_STATE(1511)] = 68099, - [SMALL_STATE(1512)] = 68152, - [SMALL_STATE(1513)] = 68205, - [SMALL_STATE(1514)] = 68258, - [SMALL_STATE(1515)] = 68305, - [SMALL_STATE(1516)] = 68360, - [SMALL_STATE(1517)] = 68449, - [SMALL_STATE(1518)] = 68500, - [SMALL_STATE(1519)] = 68547, - [SMALL_STATE(1520)] = 68636, - [SMALL_STATE(1521)] = 68691, - [SMALL_STATE(1522)] = 68737, - [SMALL_STATE(1523)] = 68783, - [SMALL_STATE(1524)] = 68829, - [SMALL_STATE(1525)] = 68875, - [SMALL_STATE(1526)] = 68923, - [SMALL_STATE(1527)] = 68969, - [SMALL_STATE(1528)] = 69015, - [SMALL_STATE(1529)] = 69061, - [SMALL_STATE(1530)] = 69109, - [SMALL_STATE(1531)] = 69157, - [SMALL_STATE(1532)] = 69203, - [SMALL_STATE(1533)] = 69249, - [SMALL_STATE(1534)] = 69295, - [SMALL_STATE(1535)] = 69341, - [SMALL_STATE(1536)] = 69387, - [SMALL_STATE(1537)] = 69433, - [SMALL_STATE(1538)] = 69479, - [SMALL_STATE(1539)] = 69525, - [SMALL_STATE(1540)] = 69571, - [SMALL_STATE(1541)] = 69617, - [SMALL_STATE(1542)] = 69663, - [SMALL_STATE(1543)] = 69709, - [SMALL_STATE(1544)] = 69755, - [SMALL_STATE(1545)] = 69801, - [SMALL_STATE(1546)] = 69847, - [SMALL_STATE(1547)] = 69893, - [SMALL_STATE(1548)] = 69939, - [SMALL_STATE(1549)] = 69989, - [SMALL_STATE(1550)] = 70035, - [SMALL_STATE(1551)] = 70081, - [SMALL_STATE(1552)] = 70129, - [SMALL_STATE(1553)] = 70175, - [SMALL_STATE(1554)] = 70227, - [SMALL_STATE(1555)] = 70277, - [SMALL_STATE(1556)] = 70329, - [SMALL_STATE(1557)] = 70375, - [SMALL_STATE(1558)] = 70421, - [SMALL_STATE(1559)] = 70471, - [SMALL_STATE(1560)] = 70517, - [SMALL_STATE(1561)] = 70569, - [SMALL_STATE(1562)] = 70615, - [SMALL_STATE(1563)] = 70665, - [SMALL_STATE(1564)] = 70717, - [SMALL_STATE(1565)] = 70763, - [SMALL_STATE(1566)] = 70809, - [SMALL_STATE(1567)] = 70859, - [SMALL_STATE(1568)] = 70905, - [SMALL_STATE(1569)] = 70951, - [SMALL_STATE(1570)] = 70997, - [SMALL_STATE(1571)] = 71043, - [SMALL_STATE(1572)] = 71089, - [SMALL_STATE(1573)] = 71135, - [SMALL_STATE(1574)] = 71181, - [SMALL_STATE(1575)] = 71229, - [SMALL_STATE(1576)] = 71279, - [SMALL_STATE(1577)] = 71329, - [SMALL_STATE(1578)] = 71379, - [SMALL_STATE(1579)] = 71429, - [SMALL_STATE(1580)] = 71475, - [SMALL_STATE(1581)] = 71525, - [SMALL_STATE(1582)] = 71571, - [SMALL_STATE(1583)] = 71617, - [SMALL_STATE(1584)] = 71663, - [SMALL_STATE(1585)] = 71713, - [SMALL_STATE(1586)] = 71763, - [SMALL_STATE(1587)] = 71813, - [SMALL_STATE(1588)] = 71863, - [SMALL_STATE(1589)] = 71909, - [SMALL_STATE(1590)] = 71955, - [SMALL_STATE(1591)] = 72005, - [SMALL_STATE(1592)] = 72055, - [SMALL_STATE(1593)] = 72105, - [SMALL_STATE(1594)] = 72155, - [SMALL_STATE(1595)] = 72201, - [SMALL_STATE(1596)] = 72247, - [SMALL_STATE(1597)] = 72297, - [SMALL_STATE(1598)] = 72343, - [SMALL_STATE(1599)] = 72395, - [SMALL_STATE(1600)] = 72441, - [SMALL_STATE(1601)] = 72493, - [SMALL_STATE(1602)] = 72539, - [SMALL_STATE(1603)] = 72589, - [SMALL_STATE(1604)] = 72635, - [SMALL_STATE(1605)] = 72681, - [SMALL_STATE(1606)] = 72727, - [SMALL_STATE(1607)] = 72773, - [SMALL_STATE(1608)] = 72819, - [SMALL_STATE(1609)] = 72865, - [SMALL_STATE(1610)] = 72911, - [SMALL_STATE(1611)] = 72957, - [SMALL_STATE(1612)] = 73003, - [SMALL_STATE(1613)] = 73053, - [SMALL_STATE(1614)] = 73108, - [SMALL_STATE(1615)] = 73163, - [SMALL_STATE(1616)] = 73208, - [SMALL_STATE(1617)] = 73253, - [SMALL_STATE(1618)] = 73298, - [SMALL_STATE(1619)] = 73343, - [SMALL_STATE(1620)] = 73388, - [SMALL_STATE(1621)] = 73443, - [SMALL_STATE(1622)] = 73488, - [SMALL_STATE(1623)] = 73543, - [SMALL_STATE(1624)] = 73588, - [SMALL_STATE(1625)] = 73643, - [SMALL_STATE(1626)] = 73688, - [SMALL_STATE(1627)] = 73733, - [SMALL_STATE(1628)] = 73778, - [SMALL_STATE(1629)] = 73823, - [SMALL_STATE(1630)] = 73868, - [SMALL_STATE(1631)] = 73913, - [SMALL_STATE(1632)] = 73958, - [SMALL_STATE(1633)] = 74005, - [SMALL_STATE(1634)] = 74050, - [SMALL_STATE(1635)] = 74095, - [SMALL_STATE(1636)] = 74140, - [SMALL_STATE(1637)] = 74195, - [SMALL_STATE(1638)] = 74246, - [SMALL_STATE(1639)] = 74301, - [SMALL_STATE(1640)] = 74346, - [SMALL_STATE(1641)] = 74391, - [SMALL_STATE(1642)] = 74442, - [SMALL_STATE(1643)] = 74497, - [SMALL_STATE(1644)] = 74552, - [SMALL_STATE(1645)] = 74607, - [SMALL_STATE(1646)] = 74652, - [SMALL_STATE(1647)] = 74697, - [SMALL_STATE(1648)] = 74742, - [SMALL_STATE(1649)] = 74791, - [SMALL_STATE(1650)] = 74840, - [SMALL_STATE(1651)] = 74889, - [SMALL_STATE(1652)] = 74934, - [SMALL_STATE(1653)] = 74979, - [SMALL_STATE(1654)] = 75034, - [SMALL_STATE(1655)] = 75089, - [SMALL_STATE(1656)] = 75138, - [SMALL_STATE(1657)] = 75187, - [SMALL_STATE(1658)] = 75242, - [SMALL_STATE(1659)] = 75295, - [SMALL_STATE(1660)] = 75350, - [SMALL_STATE(1661)] = 75395, - [SMALL_STATE(1662)] = 75440, - [SMALL_STATE(1663)] = 75485, - [SMALL_STATE(1664)] = 75538, - [SMALL_STATE(1665)] = 75583, - [SMALL_STATE(1666)] = 75628, - [SMALL_STATE(1667)] = 75677, - [SMALL_STATE(1668)] = 75722, - [SMALL_STATE(1669)] = 75767, - [SMALL_STATE(1670)] = 75822, - [SMALL_STATE(1671)] = 75867, - [SMALL_STATE(1672)] = 75912, - [SMALL_STATE(1673)] = 75957, - [SMALL_STATE(1674)] = 76012, - [SMALL_STATE(1675)] = 76057, - [SMALL_STATE(1676)] = 76102, - [SMALL_STATE(1677)] = 76157, - [SMALL_STATE(1678)] = 76202, - [SMALL_STATE(1679)] = 76247, - [SMALL_STATE(1680)] = 76292, - [SMALL_STATE(1681)] = 76337, - [SMALL_STATE(1682)] = 76382, - [SMALL_STATE(1683)] = 76437, - [SMALL_STATE(1684)] = 76482, - [SMALL_STATE(1685)] = 76527, - [SMALL_STATE(1686)] = 76572, - [SMALL_STATE(1687)] = 76617, - [SMALL_STATE(1688)] = 76672, - [SMALL_STATE(1689)] = 76717, - [SMALL_STATE(1690)] = 76768, - [SMALL_STATE(1691)] = 76813, - [SMALL_STATE(1692)] = 76868, - [SMALL_STATE(1693)] = 76913, - [SMALL_STATE(1694)] = 76958, - [SMALL_STATE(1695)] = 77013, - [SMALL_STATE(1696)] = 77058, - [SMALL_STATE(1697)] = 77107, - [SMALL_STATE(1698)] = 77152, - [SMALL_STATE(1699)] = 77201, - [SMALL_STATE(1700)] = 77250, - [SMALL_STATE(1701)] = 77295, - [SMALL_STATE(1702)] = 77350, - [SMALL_STATE(1703)] = 77405, - [SMALL_STATE(1704)] = 77450, - [SMALL_STATE(1705)] = 77505, - [SMALL_STATE(1706)] = 77550, - [SMALL_STATE(1707)] = 77595, - [SMALL_STATE(1708)] = 77650, - [SMALL_STATE(1709)] = 77705, - [SMALL_STATE(1710)] = 77760, - [SMALL_STATE(1711)] = 77805, - [SMALL_STATE(1712)] = 77860, - [SMALL_STATE(1713)] = 77915, - [SMALL_STATE(1714)] = 77960, - [SMALL_STATE(1715)] = 78009, - [SMALL_STATE(1716)] = 78058, - [SMALL_STATE(1717)] = 78103, - [SMALL_STATE(1718)] = 78148, - [SMALL_STATE(1719)] = 78193, - [SMALL_STATE(1720)] = 78248, - [SMALL_STATE(1721)] = 78293, - [SMALL_STATE(1722)] = 78338, - [SMALL_STATE(1723)] = 78383, - [SMALL_STATE(1724)] = 78438, - [SMALL_STATE(1725)] = 78483, - [SMALL_STATE(1726)] = 78538, - [SMALL_STATE(1727)] = 78593, - [SMALL_STATE(1728)] = 78648, - [SMALL_STATE(1729)] = 78703, - [SMALL_STATE(1730)] = 78748, - [SMALL_STATE(1731)] = 78797, - [SMALL_STATE(1732)] = 78852, - [SMALL_STATE(1733)] = 78907, - [SMALL_STATE(1734)] = 78956, - [SMALL_STATE(1735)] = 79011, - [SMALL_STATE(1736)] = 79066, - [SMALL_STATE(1737)] = 79121, - [SMALL_STATE(1738)] = 79176, - [SMALL_STATE(1739)] = 79231, - [SMALL_STATE(1740)] = 79286, - [SMALL_STATE(1741)] = 79341, - [SMALL_STATE(1742)] = 79390, - [SMALL_STATE(1743)] = 79435, - [SMALL_STATE(1744)] = 79480, - [SMALL_STATE(1745)] = 79535, - [SMALL_STATE(1746)] = 79590, - [SMALL_STATE(1747)] = 79642, - [SMALL_STATE(1748)] = 79688, - [SMALL_STATE(1749)] = 79734, - [SMALL_STATE(1750)] = 79786, - [SMALL_STATE(1751)] = 79834, - [SMALL_STATE(1752)] = 79878, - [SMALL_STATE(1753)] = 79930, - [SMALL_STATE(1754)] = 79974, - [SMALL_STATE(1755)] = 80018, - [SMALL_STATE(1756)] = 80062, - [SMALL_STATE(1757)] = 80110, - [SMALL_STATE(1758)] = 80162, - [SMALL_STATE(1759)] = 80206, - [SMALL_STATE(1760)] = 80258, - [SMALL_STATE(1761)] = 80306, - [SMALL_STATE(1762)] = 80358, - [SMALL_STATE(1763)] = 80406, - [SMALL_STATE(1764)] = 80458, - [SMALL_STATE(1765)] = 80510, - [SMALL_STATE(1766)] = 80558, - [SMALL_STATE(1767)] = 80610, - [SMALL_STATE(1768)] = 80658, - [SMALL_STATE(1769)] = 80706, - [SMALL_STATE(1770)] = 80758, - [SMALL_STATE(1771)] = 80810, - [SMALL_STATE(1772)] = 80854, - [SMALL_STATE(1773)] = 80906, - [SMALL_STATE(1774)] = 80950, - [SMALL_STATE(1775)] = 80998, - [SMALL_STATE(1776)] = 81050, - [SMALL_STATE(1777)] = 81098, - [SMALL_STATE(1778)] = 81146, - [SMALL_STATE(1779)] = 81198, - [SMALL_STATE(1780)] = 81242, - [SMALL_STATE(1781)] = 81290, - [SMALL_STATE(1782)] = 81334, - [SMALL_STATE(1783)] = 81382, - [SMALL_STATE(1784)] = 81434, - [SMALL_STATE(1785)] = 81482, - [SMALL_STATE(1786)] = 81528, - [SMALL_STATE(1787)] = 81574, - [SMALL_STATE(1788)] = 81618, - [SMALL_STATE(1789)] = 81666, - [SMALL_STATE(1790)] = 81714, - [SMALL_STATE(1791)] = 81762, - [SMALL_STATE(1792)] = 81814, - [SMALL_STATE(1793)] = 81866, - [SMALL_STATE(1794)] = 81918, - [SMALL_STATE(1795)] = 81966, - [SMALL_STATE(1796)] = 82010, - [SMALL_STATE(1797)] = 82062, - [SMALL_STATE(1798)] = 82106, - [SMALL_STATE(1799)] = 82158, - [SMALL_STATE(1800)] = 82206, - [SMALL_STATE(1801)] = 82250, - [SMALL_STATE(1802)] = 82298, - [SMALL_STATE(1803)] = 82346, - [SMALL_STATE(1804)] = 82390, - [SMALL_STATE(1805)] = 82442, - [SMALL_STATE(1806)] = 82494, - [SMALL_STATE(1807)] = 82538, - [SMALL_STATE(1808)] = 82590, - [SMALL_STATE(1809)] = 82638, - [SMALL_STATE(1810)] = 82684, - [SMALL_STATE(1811)] = 82736, - [SMALL_STATE(1812)] = 82780, - [SMALL_STATE(1813)] = 82832, - [SMALL_STATE(1814)] = 82884, - [SMALL_STATE(1815)] = 82936, - [SMALL_STATE(1816)] = 82986, - [SMALL_STATE(1817)] = 83030, - [SMALL_STATE(1818)] = 83073, - [SMALL_STATE(1819)] = 83124, - [SMALL_STATE(1820)] = 83169, - [SMALL_STATE(1821)] = 83212, - [SMALL_STATE(1822)] = 83263, - [SMALL_STATE(1823)] = 83312, - [SMALL_STATE(1824)] = 83355, - [SMALL_STATE(1825)] = 83404, - [SMALL_STATE(1826)] = 83447, - [SMALL_STATE(1827)] = 83490, - [SMALL_STATE(1828)] = 83533, - [SMALL_STATE(1829)] = 83584, - [SMALL_STATE(1830)] = 83669, - [SMALL_STATE(1831)] = 83754, - [SMALL_STATE(1832)] = 83805, - [SMALL_STATE(1833)] = 83890, - [SMALL_STATE(1834)] = 83975, - [SMALL_STATE(1835)] = 84060, - [SMALL_STATE(1836)] = 84145, - [SMALL_STATE(1837)] = 84188, - [SMALL_STATE(1838)] = 84231, - [SMALL_STATE(1839)] = 84316, - [SMALL_STATE(1840)] = 84359, - [SMALL_STATE(1841)] = 84444, - [SMALL_STATE(1842)] = 84529, - [SMALL_STATE(1843)] = 84614, - [SMALL_STATE(1844)] = 84657, - [SMALL_STATE(1845)] = 84704, - [SMALL_STATE(1846)] = 84789, - [SMALL_STATE(1847)] = 84832, - [SMALL_STATE(1848)] = 84875, - [SMALL_STATE(1849)] = 84924, - [SMALL_STATE(1850)] = 85009, - [SMALL_STATE(1851)] = 85052, - [SMALL_STATE(1852)] = 85103, - [SMALL_STATE(1853)] = 85146, - [SMALL_STATE(1854)] = 85197, - [SMALL_STATE(1855)] = 85248, - [SMALL_STATE(1856)] = 85295, - [SMALL_STATE(1857)] = 85344, - [SMALL_STATE(1858)] = 85387, - [SMALL_STATE(1859)] = 85430, - [SMALL_STATE(1860)] = 85473, - [SMALL_STATE(1861)] = 85516, - [SMALL_STATE(1862)] = 85563, - [SMALL_STATE(1863)] = 85606, - [SMALL_STATE(1864)] = 85653, - [SMALL_STATE(1865)] = 85696, - [SMALL_STATE(1866)] = 85739, - [SMALL_STATE(1867)] = 85788, - [SMALL_STATE(1868)] = 85839, - [SMALL_STATE(1869)] = 85882, - [SMALL_STATE(1870)] = 85933, - [SMALL_STATE(1871)] = 85976, - [SMALL_STATE(1872)] = 86019, - [SMALL_STATE(1873)] = 86062, - [SMALL_STATE(1874)] = 86105, - [SMALL_STATE(1875)] = 86187, - [SMALL_STATE(1876)] = 86269, - [SMALL_STATE(1877)] = 86351, - [SMALL_STATE(1878)] = 86425, - [SMALL_STATE(1879)] = 86507, - [SMALL_STATE(1880)] = 86581, - [SMALL_STATE(1881)] = 86655, - [SMALL_STATE(1882)] = 86729, - [SMALL_STATE(1883)] = 86811, - [SMALL_STATE(1884)] = 86893, - [SMALL_STATE(1885)] = 86969, - [SMALL_STATE(1886)] = 87019, - [SMALL_STATE(1887)] = 87069, - [SMALL_STATE(1888)] = 87119, - [SMALL_STATE(1889)] = 87169, - [SMALL_STATE(1890)] = 87219, - [SMALL_STATE(1891)] = 87301, - [SMALL_STATE(1892)] = 87351, - [SMALL_STATE(1893)] = 87433, - [SMALL_STATE(1894)] = 87515, - [SMALL_STATE(1895)] = 87565, - [SMALL_STATE(1896)] = 87615, - [SMALL_STATE(1897)] = 87697, - [SMALL_STATE(1898)] = 87779, - [SMALL_STATE(1899)] = 87861, - [SMALL_STATE(1900)] = 87943, - [SMALL_STATE(1901)] = 88025, - [SMALL_STATE(1902)] = 88107, - [SMALL_STATE(1903)] = 88151, - [SMALL_STATE(1904)] = 88233, - [SMALL_STATE(1905)] = 88315, - [SMALL_STATE(1906)] = 88397, - [SMALL_STATE(1907)] = 88438, - [SMALL_STATE(1908)] = 88483, - [SMALL_STATE(1909)] = 88524, - [SMALL_STATE(1910)] = 88603, - [SMALL_STATE(1911)] = 88676, - [SMALL_STATE(1912)] = 88717, - [SMALL_STATE(1913)] = 88796, - [SMALL_STATE(1914)] = 88875, - [SMALL_STATE(1915)] = 88948, - [SMALL_STATE(1916)] = 88989, - [SMALL_STATE(1917)] = 89068, - [SMALL_STATE(1918)] = 89109, - [SMALL_STATE(1919)] = 89150, - [SMALL_STATE(1920)] = 89229, - [SMALL_STATE(1921)] = 89270, - [SMALL_STATE(1922)] = 89349, - [SMALL_STATE(1923)] = 89428, - [SMALL_STATE(1924)] = 89469, - [SMALL_STATE(1925)] = 89510, - [SMALL_STATE(1926)] = 89589, - [SMALL_STATE(1927)] = 89638, - [SMALL_STATE(1928)] = 89717, - [SMALL_STATE(1929)] = 89766, - [SMALL_STATE(1930)] = 89807, - [SMALL_STATE(1931)] = 89856, - [SMALL_STATE(1932)] = 89929, - [SMALL_STATE(1933)] = 89974, - [SMALL_STATE(1934)] = 90053, - [SMALL_STATE(1935)] = 90102, - [SMALL_STATE(1936)] = 90143, - [SMALL_STATE(1937)] = 90222, - [SMALL_STATE(1938)] = 90263, - [SMALL_STATE(1939)] = 90342, - [SMALL_STATE(1940)] = 90421, - [SMALL_STATE(1941)] = 90500, - [SMALL_STATE(1942)] = 90541, - [SMALL_STATE(1943)] = 90582, - [SMALL_STATE(1944)] = 90661, - [SMALL_STATE(1945)] = 90740, - [SMALL_STATE(1946)] = 90819, - [SMALL_STATE(1947)] = 90898, - [SMALL_STATE(1948)] = 90939, - [SMALL_STATE(1949)] = 90980, - [SMALL_STATE(1950)] = 91053, - [SMALL_STATE(1951)] = 91132, - [SMALL_STATE(1952)] = 91211, - [SMALL_STATE(1953)] = 91290, - [SMALL_STATE(1954)] = 91369, - [SMALL_STATE(1955)] = 91448, - [SMALL_STATE(1956)] = 91489, - [SMALL_STATE(1957)] = 91530, - [SMALL_STATE(1958)] = 91609, - [SMALL_STATE(1959)] = 91650, - [SMALL_STATE(1960)] = 91704, - [SMALL_STATE(1961)] = 91746, - [SMALL_STATE(1962)] = 91788, - [SMALL_STATE(1963)] = 91827, - [SMALL_STATE(1964)] = 91900, - [SMALL_STATE(1965)] = 91943, - [SMALL_STATE(1966)] = 91982, - [SMALL_STATE(1967)] = 92055, - [SMALL_STATE(1968)] = 92128, - [SMALL_STATE(1969)] = 92167, - [SMALL_STATE(1970)] = 92240, - [SMALL_STATE(1971)] = 92279, - [SMALL_STATE(1972)] = 92352, - [SMALL_STATE(1973)] = 92425, - [SMALL_STATE(1974)] = 92464, - [SMALL_STATE(1975)] = 92537, - [SMALL_STATE(1976)] = 92576, - [SMALL_STATE(1977)] = 92615, - [SMALL_STATE(1978)] = 92654, - [SMALL_STATE(1979)] = 92693, - [SMALL_STATE(1980)] = 92766, - [SMALL_STATE(1981)] = 92839, - [SMALL_STATE(1982)] = 92878, - [SMALL_STATE(1983)] = 92917, - [SMALL_STATE(1984)] = 92990, - [SMALL_STATE(1985)] = 93029, - [SMALL_STATE(1986)] = 93068, - [SMALL_STATE(1987)] = 93107, - [SMALL_STATE(1988)] = 93154, - [SMALL_STATE(1989)] = 93201, - [SMALL_STATE(1990)] = 93240, - [SMALL_STATE(1991)] = 93279, - [SMALL_STATE(1992)] = 93352, - [SMALL_STATE(1993)] = 93425, - [SMALL_STATE(1994)] = 93498, - [SMALL_STATE(1995)] = 93571, - [SMALL_STATE(1996)] = 93610, - [SMALL_STATE(1997)] = 93683, - [SMALL_STATE(1998)] = 93756, - [SMALL_STATE(1999)] = 93799, - [SMALL_STATE(2000)] = 93838, - [SMALL_STATE(2001)] = 93877, - [SMALL_STATE(2002)] = 93950, - [SMALL_STATE(2003)] = 93989, - [SMALL_STATE(2004)] = 94062, - [SMALL_STATE(2005)] = 94101, - [SMALL_STATE(2006)] = 94140, - [SMALL_STATE(2007)] = 94179, - [SMALL_STATE(2008)] = 94218, - [SMALL_STATE(2009)] = 94291, - [SMALL_STATE(2010)] = 94330, - [SMALL_STATE(2011)] = 94369, - [SMALL_STATE(2012)] = 94442, - [SMALL_STATE(2013)] = 94485, - [SMALL_STATE(2014)] = 94558, - [SMALL_STATE(2015)] = 94597, - [SMALL_STATE(2016)] = 94636, - [SMALL_STATE(2017)] = 94679, - [SMALL_STATE(2018)] = 94722, - [SMALL_STATE(2019)] = 94765, - [SMALL_STATE(2020)] = 94808, - [SMALL_STATE(2021)] = 94847, - [SMALL_STATE(2022)] = 94890, - [SMALL_STATE(2023)] = 94933, - [SMALL_STATE(2024)] = 94976, - [SMALL_STATE(2025)] = 95021, - [SMALL_STATE(2026)] = 95060, - [SMALL_STATE(2027)] = 95099, - [SMALL_STATE(2028)] = 95138, - [SMALL_STATE(2029)] = 95211, - [SMALL_STATE(2030)] = 95254, - [SMALL_STATE(2031)] = 95299, - [SMALL_STATE(2032)] = 95338, - [SMALL_STATE(2033)] = 95377, - [SMALL_STATE(2034)] = 95416, - [SMALL_STATE(2035)] = 95489, - [SMALL_STATE(2036)] = 95562, - [SMALL_STATE(2037)] = 95635, - [SMALL_STATE(2038)] = 95674, - [SMALL_STATE(2039)] = 95747, - [SMALL_STATE(2040)] = 95790, - [SMALL_STATE(2041)] = 95863, - [SMALL_STATE(2042)] = 95936, - [SMALL_STATE(2043)] = 95975, - [SMALL_STATE(2044)] = 96048, - [SMALL_STATE(2045)] = 96121, - [SMALL_STATE(2046)] = 96160, - [SMALL_STATE(2047)] = 96231, - [SMALL_STATE(2048)] = 96304, - [SMALL_STATE(2049)] = 96376, - [SMALL_STATE(2050)] = 96414, - [SMALL_STATE(2051)] = 96452, - [SMALL_STATE(2052)] = 96524, - [SMALL_STATE(2053)] = 96596, - [SMALL_STATE(2054)] = 96668, - [SMALL_STATE(2055)] = 96706, - [SMALL_STATE(2056)] = 96744, - [SMALL_STATE(2057)] = 96790, - [SMALL_STATE(2058)] = 96828, - [SMALL_STATE(2059)] = 96874, - [SMALL_STATE(2060)] = 96912, - [SMALL_STATE(2061)] = 96950, - [SMALL_STATE(2062)] = 96988, - [SMALL_STATE(2063)] = 97060, - [SMALL_STATE(2064)] = 97106, - [SMALL_STATE(2065)] = 97152, - [SMALL_STATE(2066)] = 97190, - [SMALL_STATE(2067)] = 97260, - [SMALL_STATE(2068)] = 97298, - [SMALL_STATE(2069)] = 97336, - [SMALL_STATE(2070)] = 97408, - [SMALL_STATE(2071)] = 97480, - [SMALL_STATE(2072)] = 97526, - [SMALL_STATE(2073)] = 97572, - [SMALL_STATE(2074)] = 97644, - [SMALL_STATE(2075)] = 97682, - [SMALL_STATE(2076)] = 97752, - [SMALL_STATE(2077)] = 97790, - [SMALL_STATE(2078)] = 97862, - [SMALL_STATE(2079)] = 97934, - [SMALL_STATE(2080)] = 97972, - [SMALL_STATE(2081)] = 98018, - [SMALL_STATE(2082)] = 98088, - [SMALL_STATE(2083)] = 98126, - [SMALL_STATE(2084)] = 98164, - [SMALL_STATE(2085)] = 98202, - [SMALL_STATE(2086)] = 98240, - [SMALL_STATE(2087)] = 98286, - [SMALL_STATE(2088)] = 98358, - [SMALL_STATE(2089)] = 98396, - [SMALL_STATE(2090)] = 98465, - [SMALL_STATE(2091)] = 98534, - [SMALL_STATE(2092)] = 98603, - [SMALL_STATE(2093)] = 98672, - [SMALL_STATE(2094)] = 98741, - [SMALL_STATE(2095)] = 98810, - [SMALL_STATE(2096)] = 98879, - [SMALL_STATE(2097)] = 98946, - [SMALL_STATE(2098)] = 99013, - [SMALL_STATE(2099)] = 99082, - [SMALL_STATE(2100)] = 99151, - [SMALL_STATE(2101)] = 99220, - [SMALL_STATE(2102)] = 99289, - [SMALL_STATE(2103)] = 99358, - [SMALL_STATE(2104)] = 99427, - [SMALL_STATE(2105)] = 99496, - [SMALL_STATE(2106)] = 99565, - [SMALL_STATE(2107)] = 99634, - [SMALL_STATE(2108)] = 99701, - [SMALL_STATE(2109)] = 99746, - [SMALL_STATE(2110)] = 99815, - [SMALL_STATE(2111)] = 99884, - [SMALL_STATE(2112)] = 99953, - [SMALL_STATE(2113)] = 100022, - [SMALL_STATE(2114)] = 100091, - [SMALL_STATE(2115)] = 100166, - [SMALL_STATE(2116)] = 100235, - [SMALL_STATE(2117)] = 100304, - [SMALL_STATE(2118)] = 100349, - [SMALL_STATE(2119)] = 100418, - [SMALL_STATE(2120)] = 100487, - [SMALL_STATE(2121)] = 100554, - [SMALL_STATE(2122)] = 100621, - [SMALL_STATE(2123)] = 100696, - [SMALL_STATE(2124)] = 100765, - [SMALL_STATE(2125)] = 100834, - [SMALL_STATE(2126)] = 100903, - [SMALL_STATE(2127)] = 100970, - [SMALL_STATE(2128)] = 101039, - [SMALL_STATE(2129)] = 101108, - [SMALL_STATE(2130)] = 101177, - [SMALL_STATE(2131)] = 101218, - [SMALL_STATE(2132)] = 101287, - [SMALL_STATE(2133)] = 101356, - [SMALL_STATE(2134)] = 101425, - [SMALL_STATE(2135)] = 101466, - [SMALL_STATE(2136)] = 101535, - [SMALL_STATE(2137)] = 101604, - [SMALL_STATE(2138)] = 101673, - [SMALL_STATE(2139)] = 101742, - [SMALL_STATE(2140)] = 101817, - [SMALL_STATE(2141)] = 101858, - [SMALL_STATE(2142)] = 101927, - [SMALL_STATE(2143)] = 101996, - [SMALL_STATE(2144)] = 102037, - [SMALL_STATE(2145)] = 102104, - [SMALL_STATE(2146)] = 102173, - [SMALL_STATE(2147)] = 102242, - [SMALL_STATE(2148)] = 102309, - [SMALL_STATE(2149)] = 102378, - [SMALL_STATE(2150)] = 102447, - [SMALL_STATE(2151)] = 102514, - [SMALL_STATE(2152)] = 102583, - [SMALL_STATE(2153)] = 102648, - [SMALL_STATE(2154)] = 102717, - [SMALL_STATE(2155)] = 102786, - [SMALL_STATE(2156)] = 102855, - [SMALL_STATE(2157)] = 102924, - [SMALL_STATE(2158)] = 102993, - [SMALL_STATE(2159)] = 103062, - [SMALL_STATE(2160)] = 103131, - [SMALL_STATE(2161)] = 103200, - [SMALL_STATE(2162)] = 103269, - [SMALL_STATE(2163)] = 103338, - [SMALL_STATE(2164)] = 103407, - [SMALL_STATE(2165)] = 103476, - [SMALL_STATE(2166)] = 103545, - [SMALL_STATE(2167)] = 103614, - [SMALL_STATE(2168)] = 103681, - [SMALL_STATE(2169)] = 103745, - [SMALL_STATE(2170)] = 103809, - [SMALL_STATE(2171)] = 103873, - [SMALL_STATE(2172)] = 103937, - [SMALL_STATE(2173)] = 104001, - [SMALL_STATE(2174)] = 104065, - [SMALL_STATE(2175)] = 104129, - [SMALL_STATE(2176)] = 104193, - [SMALL_STATE(2177)] = 104257, - [SMALL_STATE(2178)] = 104321, - [SMALL_STATE(2179)] = 104385, - [SMALL_STATE(2180)] = 104449, - [SMALL_STATE(2181)] = 104513, - [SMALL_STATE(2182)] = 104555, - [SMALL_STATE(2183)] = 104619, - [SMALL_STATE(2184)] = 104683, - [SMALL_STATE(2185)] = 104747, - [SMALL_STATE(2186)] = 104811, - [SMALL_STATE(2187)] = 104875, - [SMALL_STATE(2188)] = 104939, - [SMALL_STATE(2189)] = 105003, - [SMALL_STATE(2190)] = 105067, - [SMALL_STATE(2191)] = 105131, - [SMALL_STATE(2192)] = 105195, - [SMALL_STATE(2193)] = 105259, - [SMALL_STATE(2194)] = 105323, - [SMALL_STATE(2195)] = 105387, - [SMALL_STATE(2196)] = 105451, - [SMALL_STATE(2197)] = 105515, - [SMALL_STATE(2198)] = 105579, - [SMALL_STATE(2199)] = 105643, - [SMALL_STATE(2200)] = 105707, - [SMALL_STATE(2201)] = 105771, - [SMALL_STATE(2202)] = 105835, - [SMALL_STATE(2203)] = 105899, - [SMALL_STATE(2204)] = 105963, - [SMALL_STATE(2205)] = 106035, - [SMALL_STATE(2206)] = 106099, - [SMALL_STATE(2207)] = 106163, - [SMALL_STATE(2208)] = 106227, - [SMALL_STATE(2209)] = 106291, - [SMALL_STATE(2210)] = 106355, - [SMALL_STATE(2211)] = 106419, - [SMALL_STATE(2212)] = 106483, - [SMALL_STATE(2213)] = 106547, - [SMALL_STATE(2214)] = 106611, - [SMALL_STATE(2215)] = 106675, - [SMALL_STATE(2216)] = 106739, - [SMALL_STATE(2217)] = 106803, - [SMALL_STATE(2218)] = 106867, - [SMALL_STATE(2219)] = 106931, - [SMALL_STATE(2220)] = 106995, - [SMALL_STATE(2221)] = 107059, - [SMALL_STATE(2222)] = 107123, - [SMALL_STATE(2223)] = 107187, - [SMALL_STATE(2224)] = 107251, - [SMALL_STATE(2225)] = 107315, - [SMALL_STATE(2226)] = 107379, - [SMALL_STATE(2227)] = 107443, - [SMALL_STATE(2228)] = 107507, - [SMALL_STATE(2229)] = 107571, - [SMALL_STATE(2230)] = 107635, - [SMALL_STATE(2231)] = 107699, - [SMALL_STATE(2232)] = 107763, - [SMALL_STATE(2233)] = 107827, - [SMALL_STATE(2234)] = 107891, - [SMALL_STATE(2235)] = 107955, - [SMALL_STATE(2236)] = 108019, - [SMALL_STATE(2237)] = 108083, - [SMALL_STATE(2238)] = 108147, - [SMALL_STATE(2239)] = 108211, - [SMALL_STATE(2240)] = 108275, - [SMALL_STATE(2241)] = 108339, - [SMALL_STATE(2242)] = 108403, - [SMALL_STATE(2243)] = 108467, - [SMALL_STATE(2244)] = 108531, - [SMALL_STATE(2245)] = 108595, - [SMALL_STATE(2246)] = 108659, - [SMALL_STATE(2247)] = 108723, - [SMALL_STATE(2248)] = 108787, - [SMALL_STATE(2249)] = 108851, - [SMALL_STATE(2250)] = 108915, - [SMALL_STATE(2251)] = 108979, - [SMALL_STATE(2252)] = 109043, - [SMALL_STATE(2253)] = 109107, - [SMALL_STATE(2254)] = 109171, - [SMALL_STATE(2255)] = 109235, - [SMALL_STATE(2256)] = 109299, - [SMALL_STATE(2257)] = 109335, - [SMALL_STATE(2258)] = 109399, - [SMALL_STATE(2259)] = 109463, - [SMALL_STATE(2260)] = 109527, - [SMALL_STATE(2261)] = 109591, - [SMALL_STATE(2262)] = 109655, - [SMALL_STATE(2263)] = 109719, - [SMALL_STATE(2264)] = 109783, - [SMALL_STATE(2265)] = 109847, - [SMALL_STATE(2266)] = 109911, - [SMALL_STATE(2267)] = 109975, - [SMALL_STATE(2268)] = 110039, - [SMALL_STATE(2269)] = 110103, - [SMALL_STATE(2270)] = 110167, - [SMALL_STATE(2271)] = 110231, - [SMALL_STATE(2272)] = 110295, - [SMALL_STATE(2273)] = 110359, - [SMALL_STATE(2274)] = 110423, - [SMALL_STATE(2275)] = 110487, - [SMALL_STATE(2276)] = 110551, - [SMALL_STATE(2277)] = 110615, - [SMALL_STATE(2278)] = 110679, - [SMALL_STATE(2279)] = 110743, - [SMALL_STATE(2280)] = 110807, - [SMALL_STATE(2281)] = 110871, - [SMALL_STATE(2282)] = 110935, - [SMALL_STATE(2283)] = 110999, - [SMALL_STATE(2284)] = 111063, - [SMALL_STATE(2285)] = 111127, - [SMALL_STATE(2286)] = 111191, - [SMALL_STATE(2287)] = 111255, - [SMALL_STATE(2288)] = 111319, - [SMALL_STATE(2289)] = 111383, - [SMALL_STATE(2290)] = 111447, - [SMALL_STATE(2291)] = 111511, - [SMALL_STATE(2292)] = 111575, - [SMALL_STATE(2293)] = 111639, - [SMALL_STATE(2294)] = 111703, - [SMALL_STATE(2295)] = 111767, - [SMALL_STATE(2296)] = 111831, - [SMALL_STATE(2297)] = 111867, - [SMALL_STATE(2298)] = 111931, - [SMALL_STATE(2299)] = 111995, - [SMALL_STATE(2300)] = 112059, - [SMALL_STATE(2301)] = 112123, - [SMALL_STATE(2302)] = 112187, - [SMALL_STATE(2303)] = 112251, - [SMALL_STATE(2304)] = 112287, - [SMALL_STATE(2305)] = 112323, - [SMALL_STATE(2306)] = 112387, - [SMALL_STATE(2307)] = 112451, - [SMALL_STATE(2308)] = 112515, - [SMALL_STATE(2309)] = 112579, - [SMALL_STATE(2310)] = 112643, - [SMALL_STATE(2311)] = 112707, - [SMALL_STATE(2312)] = 112771, - [SMALL_STATE(2313)] = 112835, - [SMALL_STATE(2314)] = 112899, - [SMALL_STATE(2315)] = 112963, - [SMALL_STATE(2316)] = 113027, - [SMALL_STATE(2317)] = 113099, - [SMALL_STATE(2318)] = 113163, - [SMALL_STATE(2319)] = 113227, - [SMALL_STATE(2320)] = 113291, - [SMALL_STATE(2321)] = 113355, - [SMALL_STATE(2322)] = 113419, - [SMALL_STATE(2323)] = 113483, - [SMALL_STATE(2324)] = 113547, - [SMALL_STATE(2325)] = 113611, - [SMALL_STATE(2326)] = 113675, - [SMALL_STATE(2327)] = 113747, - [SMALL_STATE(2328)] = 113811, - [SMALL_STATE(2329)] = 113875, - [SMALL_STATE(2330)] = 113939, - [SMALL_STATE(2331)] = 114003, - [SMALL_STATE(2332)] = 114067, - [SMALL_STATE(2333)] = 114131, - [SMALL_STATE(2334)] = 114195, - [SMALL_STATE(2335)] = 114259, - [SMALL_STATE(2336)] = 114323, - [SMALL_STATE(2337)] = 114387, - [SMALL_STATE(2338)] = 114451, - [SMALL_STATE(2339)] = 114487, - [SMALL_STATE(2340)] = 114523, - [SMALL_STATE(2341)] = 114587, - [SMALL_STATE(2342)] = 114651, - [SMALL_STATE(2343)] = 114715, - [SMALL_STATE(2344)] = 114751, - [SMALL_STATE(2345)] = 114815, - [SMALL_STATE(2346)] = 114879, - [SMALL_STATE(2347)] = 114943, - [SMALL_STATE(2348)] = 115007, - [SMALL_STATE(2349)] = 115048, - [SMALL_STATE(2350)] = 115089, - [SMALL_STATE(2351)] = 115126, - [SMALL_STATE(2352)] = 115163, - [SMALL_STATE(2353)] = 115214, - [SMALL_STATE(2354)] = 115251, - [SMALL_STATE(2355)] = 115288, - [SMALL_STATE(2356)] = 115329, - [SMALL_STATE(2357)] = 115370, - [SMALL_STATE(2358)] = 115407, - [SMALL_STATE(2359)] = 115448, - [SMALL_STATE(2360)] = 115493, - [SMALL_STATE(2361)] = 115534, - [SMALL_STATE(2362)] = 115585, - [SMALL_STATE(2363)] = 115630, - [SMALL_STATE(2364)] = 115669, - [SMALL_STATE(2365)] = 115710, - [SMALL_STATE(2366)] = 115751, - [SMALL_STATE(2367)] = 115792, - [SMALL_STATE(2368)] = 115833, - [SMALL_STATE(2369)] = 115867, - [SMALL_STATE(2370)] = 115901, - [SMALL_STATE(2371)] = 115951, - [SMALL_STATE(2372)] = 115991, - [SMALL_STATE(2373)] = 116031, - [SMALL_STATE(2374)] = 116075, - [SMALL_STATE(2375)] = 116115, - [SMALL_STATE(2376)] = 116155, - [SMALL_STATE(2377)] = 116189, - [SMALL_STATE(2378)] = 116223, - [SMALL_STATE(2379)] = 116263, - [SMALL_STATE(2380)] = 116297, - [SMALL_STATE(2381)] = 116331, - [SMALL_STATE(2382)] = 116365, - [SMALL_STATE(2383)] = 116399, - [SMALL_STATE(2384)] = 116433, - [SMALL_STATE(2385)] = 116467, - [SMALL_STATE(2386)] = 116501, - [SMALL_STATE(2387)] = 116539, - [SMALL_STATE(2388)] = 116573, - [SMALL_STATE(2389)] = 116607, - [SMALL_STATE(2390)] = 116641, - [SMALL_STATE(2391)] = 116679, - [SMALL_STATE(2392)] = 116719, - [SMALL_STATE(2393)] = 116755, - [SMALL_STATE(2394)] = 116795, - [SMALL_STATE(2395)] = 116835, - [SMALL_STATE(2396)] = 116869, - [SMALL_STATE(2397)] = 116903, - [SMALL_STATE(2398)] = 116943, - [SMALL_STATE(2399)] = 116977, - [SMALL_STATE(2400)] = 117021, - [SMALL_STATE(2401)] = 117059, - [SMALL_STATE(2402)] = 117093, - [SMALL_STATE(2403)] = 117127, - [SMALL_STATE(2404)] = 117161, - [SMALL_STATE(2405)] = 117199, - [SMALL_STATE(2406)] = 117233, - [SMALL_STATE(2407)] = 117267, - [SMALL_STATE(2408)] = 117301, - [SMALL_STATE(2409)] = 117341, - [SMALL_STATE(2410)] = 117381, - [SMALL_STATE(2411)] = 117415, - [SMALL_STATE(2412)] = 117449, - [SMALL_STATE(2413)] = 117483, - [SMALL_STATE(2414)] = 117533, - [SMALL_STATE(2415)] = 117573, - [SMALL_STATE(2416)] = 117613, - [SMALL_STATE(2417)] = 117647, - [SMALL_STATE(2418)] = 117681, - [SMALL_STATE(2419)] = 117715, - [SMALL_STATE(2420)] = 117749, - [SMALL_STATE(2421)] = 117783, - [SMALL_STATE(2422)] = 117817, - [SMALL_STATE(2423)] = 117857, - [SMALL_STATE(2424)] = 117897, - [SMALL_STATE(2425)] = 117931, - [SMALL_STATE(2426)] = 117971, - [SMALL_STATE(2427)] = 118005, - [SMALL_STATE(2428)] = 118039, - [SMALL_STATE(2429)] = 118073, - [SMALL_STATE(2430)] = 118107, - [SMALL_STATE(2431)] = 118141, - [SMALL_STATE(2432)] = 118181, - [SMALL_STATE(2433)] = 118215, - [SMALL_STATE(2434)] = 118255, - [SMALL_STATE(2435)] = 118289, - [SMALL_STATE(2436)] = 118323, - [SMALL_STATE(2437)] = 118363, - [SMALL_STATE(2438)] = 118403, - [SMALL_STATE(2439)] = 118437, - [SMALL_STATE(2440)] = 118475, - [SMALL_STATE(2441)] = 118515, - [SMALL_STATE(2442)] = 118555, - [SMALL_STATE(2443)] = 118614, - [SMALL_STATE(2444)] = 118673, - [SMALL_STATE(2445)] = 118712, - [SMALL_STATE(2446)] = 118745, - [SMALL_STATE(2447)] = 118804, - [SMALL_STATE(2448)] = 118841, - [SMALL_STATE(2449)] = 118906, - [SMALL_STATE(2450)] = 118965, - [SMALL_STATE(2451)] = 118998, - [SMALL_STATE(2452)] = 119063, - [SMALL_STATE(2453)] = 119122, - [SMALL_STATE(2454)] = 119181, - [SMALL_STATE(2455)] = 119220, - [SMALL_STATE(2456)] = 119279, - [SMALL_STATE(2457)] = 119328, - [SMALL_STATE(2458)] = 119387, - [SMALL_STATE(2459)] = 119420, - [SMALL_STATE(2460)] = 119479, - [SMALL_STATE(2461)] = 119512, - [SMALL_STATE(2462)] = 119571, - [SMALL_STATE(2463)] = 119610, - [SMALL_STATE(2464)] = 119643, - [SMALL_STATE(2465)] = 119682, - [SMALL_STATE(2466)] = 119715, - [SMALL_STATE(2467)] = 119754, - [SMALL_STATE(2468)] = 119813, - [SMALL_STATE(2469)] = 119852, - [SMALL_STATE(2470)] = 119891, - [SMALL_STATE(2471)] = 119930, - [SMALL_STATE(2472)] = 119969, - [SMALL_STATE(2473)] = 120028, - [SMALL_STATE(2474)] = 120087, - [SMALL_STATE(2475)] = 120126, - [SMALL_STATE(2476)] = 120191, - [SMALL_STATE(2477)] = 120256, - [SMALL_STATE(2478)] = 120289, - [SMALL_STATE(2479)] = 120348, - [SMALL_STATE(2480)] = 120381, - [SMALL_STATE(2481)] = 120446, - [SMALL_STATE(2482)] = 120479, - [SMALL_STATE(2483)] = 120544, - [SMALL_STATE(2484)] = 120577, - [SMALL_STATE(2485)] = 120610, - [SMALL_STATE(2486)] = 120669, - [SMALL_STATE(2487)] = 120728, - [SMALL_STATE(2488)] = 120761, - [SMALL_STATE(2489)] = 120794, - [SMALL_STATE(2490)] = 120853, - [SMALL_STATE(2491)] = 120892, - [SMALL_STATE(2492)] = 120951, - [SMALL_STATE(2493)] = 121010, - [SMALL_STATE(2494)] = 121069, - [SMALL_STATE(2495)] = 121108, - [SMALL_STATE(2496)] = 121173, - [SMALL_STATE(2497)] = 121232, - [SMALL_STATE(2498)] = 121297, - [SMALL_STATE(2499)] = 121334, - [SMALL_STATE(2500)] = 121371, - [SMALL_STATE(2501)] = 121408, - [SMALL_STATE(2502)] = 121467, - [SMALL_STATE(2503)] = 121504, - [SMALL_STATE(2504)] = 121563, - [SMALL_STATE(2505)] = 121600, - [SMALL_STATE(2506)] = 121639, - [SMALL_STATE(2507)] = 121698, - [SMALL_STATE(2508)] = 121735, - [SMALL_STATE(2509)] = 121772, - [SMALL_STATE(2510)] = 121805, - [SMALL_STATE(2511)] = 121838, - [SMALL_STATE(2512)] = 121877, - [SMALL_STATE(2513)] = 121916, - [SMALL_STATE(2514)] = 121975, - [SMALL_STATE(2515)] = 122034, - [SMALL_STATE(2516)] = 122099, - [SMALL_STATE(2517)] = 122138, - [SMALL_STATE(2518)] = 122181, - [SMALL_STATE(2519)] = 122218, - [SMALL_STATE(2520)] = 122251, - [SMALL_STATE(2521)] = 122284, - [SMALL_STATE(2522)] = 122317, - [SMALL_STATE(2523)] = 122352, - [SMALL_STATE(2524)] = 122389, - [SMALL_STATE(2525)] = 122432, - [SMALL_STATE(2526)] = 122471, - [SMALL_STATE(2527)] = 122506, - [SMALL_STATE(2528)] = 122549, - [SMALL_STATE(2529)] = 122588, - [SMALL_STATE(2530)] = 122647, - [SMALL_STATE(2531)] = 122706, - [SMALL_STATE(2532)] = 122765, - [SMALL_STATE(2533)] = 122798, - [SMALL_STATE(2534)] = 122857, - [SMALL_STATE(2535)] = 122916, - [SMALL_STATE(2536)] = 122955, - [SMALL_STATE(2537)] = 122994, - [SMALL_STATE(2538)] = 123027, - [SMALL_STATE(2539)] = 123076, - [SMALL_STATE(2540)] = 123135, - [SMALL_STATE(2541)] = 123194, - [SMALL_STATE(2542)] = 123253, - [SMALL_STATE(2543)] = 123312, - [SMALL_STATE(2544)] = 123371, - [SMALL_STATE(2545)] = 123430, - [SMALL_STATE(2546)] = 123467, - [SMALL_STATE(2547)] = 123526, - [SMALL_STATE(2548)] = 123585, - [SMALL_STATE(2549)] = 123622, - [SMALL_STATE(2550)] = 123671, - [SMALL_STATE(2551)] = 123730, - [SMALL_STATE(2552)] = 123769, - [SMALL_STATE(2553)] = 123802, - [SMALL_STATE(2554)] = 123835, - [SMALL_STATE(2555)] = 123868, - [SMALL_STATE(2556)] = 123927, - [SMALL_STATE(2557)] = 123960, - [SMALL_STATE(2558)] = 123993, - [SMALL_STATE(2559)] = 124026, - [SMALL_STATE(2560)] = 124059, - [SMALL_STATE(2561)] = 124092, - [SMALL_STATE(2562)] = 124125, - [SMALL_STATE(2563)] = 124158, - [SMALL_STATE(2564)] = 124197, - [SMALL_STATE(2565)] = 124236, - [SMALL_STATE(2566)] = 124275, - [SMALL_STATE(2567)] = 124314, - [SMALL_STATE(2568)] = 124351, - [SMALL_STATE(2569)] = 124390, - [SMALL_STATE(2570)] = 124423, - [SMALL_STATE(2571)] = 124462, - [SMALL_STATE(2572)] = 124501, - [SMALL_STATE(2573)] = 124540, - [SMALL_STATE(2574)] = 124579, - [SMALL_STATE(2575)] = 124622, - [SMALL_STATE(2576)] = 124661, - [SMALL_STATE(2577)] = 124694, - [SMALL_STATE(2578)] = 124733, - [SMALL_STATE(2579)] = 124772, - [SMALL_STATE(2580)] = 124811, - [SMALL_STATE(2581)] = 124850, - [SMALL_STATE(2582)] = 124899, - [SMALL_STATE(2583)] = 124938, - [SMALL_STATE(2584)] = 124973, - [SMALL_STATE(2585)] = 125032, - [SMALL_STATE(2586)] = 125091, - [SMALL_STATE(2587)] = 125150, - [SMALL_STATE(2588)] = 125183, - [SMALL_STATE(2589)] = 125226, - [SMALL_STATE(2590)] = 125259, - [SMALL_STATE(2591)] = 125292, - [SMALL_STATE(2592)] = 125325, - [SMALL_STATE(2593)] = 125374, - [SMALL_STATE(2594)] = 125413, - [SMALL_STATE(2595)] = 125446, - [SMALL_STATE(2596)] = 125485, - [SMALL_STATE(2597)] = 125528, - [SMALL_STATE(2598)] = 125561, - [SMALL_STATE(2599)] = 125594, - [SMALL_STATE(2600)] = 125653, - [SMALL_STATE(2601)] = 125712, - [SMALL_STATE(2602)] = 125745, - [SMALL_STATE(2603)] = 125784, - [SMALL_STATE(2604)] = 125823, - [SMALL_STATE(2605)] = 125872, - [SMALL_STATE(2606)] = 125931, - [SMALL_STATE(2607)] = 125990, - [SMALL_STATE(2608)] = 126049, - [SMALL_STATE(2609)] = 126087, - [SMALL_STATE(2610)] = 126125, - [SMALL_STATE(2611)] = 126183, - [SMALL_STATE(2612)] = 126241, - [SMALL_STATE(2613)] = 126273, - [SMALL_STATE(2614)] = 126305, - [SMALL_STATE(2615)] = 126367, - [SMALL_STATE(2616)] = 126425, - [SMALL_STATE(2617)] = 126483, - [SMALL_STATE(2618)] = 126541, - [SMALL_STATE(2619)] = 126573, - [SMALL_STATE(2620)] = 126631, - [SMALL_STATE(2621)] = 126669, - [SMALL_STATE(2622)] = 126707, - [SMALL_STATE(2623)] = 126739, - [SMALL_STATE(2624)] = 126771, - [SMALL_STATE(2625)] = 126803, - [SMALL_STATE(2626)] = 126849, - [SMALL_STATE(2627)] = 126907, - [SMALL_STATE(2628)] = 126939, - [SMALL_STATE(2629)] = 126971, - [SMALL_STATE(2630)] = 127003, - [SMALL_STATE(2631)] = 127061, - [SMALL_STATE(2632)] = 127099, - [SMALL_STATE(2633)] = 127131, - [SMALL_STATE(2634)] = 127163, - [SMALL_STATE(2635)] = 127221, - [SMALL_STATE(2636)] = 127283, - [SMALL_STATE(2637)] = 127345, - [SMALL_STATE(2638)] = 127403, - [SMALL_STATE(2639)] = 127461, - [SMALL_STATE(2640)] = 127519, - [SMALL_STATE(2641)] = 127577, - [SMALL_STATE(2642)] = 127635, - [SMALL_STATE(2643)] = 127681, - [SMALL_STATE(2644)] = 127743, - [SMALL_STATE(2645)] = 127781, - [SMALL_STATE(2646)] = 127819, - [SMALL_STATE(2647)] = 127865, - [SMALL_STATE(2648)] = 127903, - [SMALL_STATE(2649)] = 127941, - [SMALL_STATE(2650)] = 127979, - [SMALL_STATE(2651)] = 128037, - [SMALL_STATE(2652)] = 128095, - [SMALL_STATE(2653)] = 128133, - [SMALL_STATE(2654)] = 128171, - [SMALL_STATE(2655)] = 128229, - [SMALL_STATE(2656)] = 128287, - [SMALL_STATE(2657)] = 128319, - [SMALL_STATE(2658)] = 128377, - [SMALL_STATE(2659)] = 128435, - [SMALL_STATE(2660)] = 128493, - [SMALL_STATE(2661)] = 128551, - [SMALL_STATE(2662)] = 128583, - [SMALL_STATE(2663)] = 128641, - [SMALL_STATE(2664)] = 128679, - [SMALL_STATE(2665)] = 128717, - [SMALL_STATE(2666)] = 128755, - [SMALL_STATE(2667)] = 128793, - [SMALL_STATE(2668)] = 128831, - [SMALL_STATE(2669)] = 128893, - [SMALL_STATE(2670)] = 128955, - [SMALL_STATE(2671)] = 128987, - [SMALL_STATE(2672)] = 129045, - [SMALL_STATE(2673)] = 129103, - [SMALL_STATE(2674)] = 129161, - [SMALL_STATE(2675)] = 129219, - [SMALL_STATE(2676)] = 129257, - [SMALL_STATE(2677)] = 129295, - [SMALL_STATE(2678)] = 129353, - [SMALL_STATE(2679)] = 129411, - [SMALL_STATE(2680)] = 129443, - [SMALL_STATE(2681)] = 129481, - [SMALL_STATE(2682)] = 129517, - [SMALL_STATE(2683)] = 129575, - [SMALL_STATE(2684)] = 129633, - [SMALL_STATE(2685)] = 129671, - [SMALL_STATE(2686)] = 129729, - [SMALL_STATE(2687)] = 129767, - [SMALL_STATE(2688)] = 129799, - [SMALL_STATE(2689)] = 129857, - [SMALL_STATE(2690)] = 129895, - [SMALL_STATE(2691)] = 129933, - [SMALL_STATE(2692)] = 129971, - [SMALL_STATE(2693)] = 130009, - [SMALL_STATE(2694)] = 130051, - [SMALL_STATE(2695)] = 130109, - [SMALL_STATE(2696)] = 130147, - [SMALL_STATE(2697)] = 130205, - [SMALL_STATE(2698)] = 130263, - [SMALL_STATE(2699)] = 130297, - [SMALL_STATE(2700)] = 130335, - [SMALL_STATE(2701)] = 130393, - [SMALL_STATE(2702)] = 130451, - [SMALL_STATE(2703)] = 130489, - [SMALL_STATE(2704)] = 130521, - [SMALL_STATE(2705)] = 130579, - [SMALL_STATE(2706)] = 130621, - [SMALL_STATE(2707)] = 130679, - [SMALL_STATE(2708)] = 130711, - [SMALL_STATE(2709)] = 130769, - [SMALL_STATE(2710)] = 130827, - [SMALL_STATE(2711)] = 130885, - [SMALL_STATE(2712)] = 130943, - [SMALL_STATE(2713)] = 131001, - [SMALL_STATE(2714)] = 131039, - [SMALL_STATE(2715)] = 131097, - [SMALL_STATE(2716)] = 131159, - [SMALL_STATE(2717)] = 131217, - [SMALL_STATE(2718)] = 131255, - [SMALL_STATE(2719)] = 131313, - [SMALL_STATE(2720)] = 131371, - [SMALL_STATE(2721)] = 131409, - [SMALL_STATE(2722)] = 131467, - [SMALL_STATE(2723)] = 131525, - [SMALL_STATE(2724)] = 131571, - [SMALL_STATE(2725)] = 131609, - [SMALL_STATE(2726)] = 131647, - [SMALL_STATE(2727)] = 131685, - [SMALL_STATE(2728)] = 131723, - [SMALL_STATE(2729)] = 131761, - [SMALL_STATE(2730)] = 131793, - [SMALL_STATE(2731)] = 131831, - [SMALL_STATE(2732)] = 131869, - [SMALL_STATE(2733)] = 131907, - [SMALL_STATE(2734)] = 131939, - [SMALL_STATE(2735)] = 131971, - [SMALL_STATE(2736)] = 132029, - [SMALL_STATE(2737)] = 132061, - [SMALL_STATE(2738)] = 132093, - [SMALL_STATE(2739)] = 132151, - [SMALL_STATE(2740)] = 132189, - [SMALL_STATE(2741)] = 132221, - [SMALL_STATE(2742)] = 132253, - [SMALL_STATE(2743)] = 132291, - [SMALL_STATE(2744)] = 132349, - [SMALL_STATE(2745)] = 132381, - [SMALL_STATE(2746)] = 132439, - [SMALL_STATE(2747)] = 132501, - [SMALL_STATE(2748)] = 132563, - [SMALL_STATE(2749)] = 132595, - [SMALL_STATE(2750)] = 132653, - [SMALL_STATE(2751)] = 132684, - [SMALL_STATE(2752)] = 132715, - [SMALL_STATE(2753)] = 132746, - [SMALL_STATE(2754)] = 132777, - [SMALL_STATE(2755)] = 132808, - [SMALL_STATE(2756)] = 132839, - [SMALL_STATE(2757)] = 132870, - [SMALL_STATE(2758)] = 132905, - [SMALL_STATE(2759)] = 132936, - [SMALL_STATE(2760)] = 132967, - [SMALL_STATE(2761)] = 132998, - [SMALL_STATE(2762)] = 133037, - [SMALL_STATE(2763)] = 133068, - [SMALL_STATE(2764)] = 133099, - [SMALL_STATE(2765)] = 133130, - [SMALL_STATE(2766)] = 133161, - [SMALL_STATE(2767)] = 133192, - [SMALL_STATE(2768)] = 133223, - [SMALL_STATE(2769)] = 133254, - [SMALL_STATE(2770)] = 133285, - [SMALL_STATE(2771)] = 133316, - [SMALL_STATE(2772)] = 133347, - [SMALL_STATE(2773)] = 133378, - [SMALL_STATE(2774)] = 133409, - [SMALL_STATE(2775)] = 133440, - [SMALL_STATE(2776)] = 133471, - [SMALL_STATE(2777)] = 133502, - [SMALL_STATE(2778)] = 133533, - [SMALL_STATE(2779)] = 133572, - [SMALL_STATE(2780)] = 133603, - [SMALL_STATE(2781)] = 133634, - [SMALL_STATE(2782)] = 133665, - [SMALL_STATE(2783)] = 133696, - [SMALL_STATE(2784)] = 133727, - [SMALL_STATE(2785)] = 133758, - [SMALL_STATE(2786)] = 133789, - [SMALL_STATE(2787)] = 133820, - [SMALL_STATE(2788)] = 133851, - [SMALL_STATE(2789)] = 133882, - [SMALL_STATE(2790)] = 133913, - [SMALL_STATE(2791)] = 133950, - [SMALL_STATE(2792)] = 133987, - [SMALL_STATE(2793)] = 134018, - [SMALL_STATE(2794)] = 134049, - [SMALL_STATE(2795)] = 134080, - [SMALL_STATE(2796)] = 134117, - [SMALL_STATE(2797)] = 134154, - [SMALL_STATE(2798)] = 134185, - [SMALL_STATE(2799)] = 134216, - [SMALL_STATE(2800)] = 134247, - [SMALL_STATE(2801)] = 134278, - [SMALL_STATE(2802)] = 134315, - [SMALL_STATE(2803)] = 134346, - [SMALL_STATE(2804)] = 134377, - [SMALL_STATE(2805)] = 134408, - [SMALL_STATE(2806)] = 134439, - [SMALL_STATE(2807)] = 134470, - [SMALL_STATE(2808)] = 134501, - [SMALL_STATE(2809)] = 134532, - [SMALL_STATE(2810)] = 134563, - [SMALL_STATE(2811)] = 134600, - [SMALL_STATE(2812)] = 134637, - [SMALL_STATE(2813)] = 134668, - [SMALL_STATE(2814)] = 134705, - [SMALL_STATE(2815)] = 134736, - [SMALL_STATE(2816)] = 134773, - [SMALL_STATE(2817)] = 134804, - [SMALL_STATE(2818)] = 134841, - [SMALL_STATE(2819)] = 134872, - [SMALL_STATE(2820)] = 134909, - [SMALL_STATE(2821)] = 134940, - [SMALL_STATE(2822)] = 134971, - [SMALL_STATE(2823)] = 135002, - [SMALL_STATE(2824)] = 135033, - [SMALL_STATE(2825)] = 135064, - [SMALL_STATE(2826)] = 135101, - [SMALL_STATE(2827)] = 135132, - [SMALL_STATE(2828)] = 135163, - [SMALL_STATE(2829)] = 135194, - [SMALL_STATE(2830)] = 135225, - [SMALL_STATE(2831)] = 135256, - [SMALL_STATE(2832)] = 135287, - [SMALL_STATE(2833)] = 135318, - [SMALL_STATE(2834)] = 135355, - [SMALL_STATE(2835)] = 135390, - [SMALL_STATE(2836)] = 135421, - [SMALL_STATE(2837)] = 135458, - [SMALL_STATE(2838)] = 135489, - [SMALL_STATE(2839)] = 135520, - [SMALL_STATE(2840)] = 135551, - [SMALL_STATE(2841)] = 135582, - [SMALL_STATE(2842)] = 135619, - [SMALL_STATE(2843)] = 135650, - [SMALL_STATE(2844)] = 135681, - [SMALL_STATE(2845)] = 135712, - [SMALL_STATE(2846)] = 135743, - [SMALL_STATE(2847)] = 135774, - [SMALL_STATE(2848)] = 135811, - [SMALL_STATE(2849)] = 135842, - [SMALL_STATE(2850)] = 135873, - [SMALL_STATE(2851)] = 135904, - [SMALL_STATE(2852)] = 135935, - [SMALL_STATE(2853)] = 135966, - [SMALL_STATE(2854)] = 135997, - [SMALL_STATE(2855)] = 136034, - [SMALL_STATE(2856)] = 136065, - [SMALL_STATE(2857)] = 136096, - [SMALL_STATE(2858)] = 136127, - [SMALL_STATE(2859)] = 136158, - [SMALL_STATE(2860)] = 136189, - [SMALL_STATE(2861)] = 136220, - [SMALL_STATE(2862)] = 136251, - [SMALL_STATE(2863)] = 136288, - [SMALL_STATE(2864)] = 136319, - [SMALL_STATE(2865)] = 136356, - [SMALL_STATE(2866)] = 136392, - [SMALL_STATE(2867)] = 136448, - [SMALL_STATE(2868)] = 136504, - [SMALL_STATE(2869)] = 136560, - [SMALL_STATE(2870)] = 136594, - [SMALL_STATE(2871)] = 136630, - [SMALL_STATE(2872)] = 136660, - [SMALL_STATE(2873)] = 136696, - [SMALL_STATE(2874)] = 136732, - [SMALL_STATE(2875)] = 136768, - [SMALL_STATE(2876)] = 136804, - [SMALL_STATE(2877)] = 136838, - [SMALL_STATE(2878)] = 136874, - [SMALL_STATE(2879)] = 136910, - [SMALL_STATE(2880)] = 136966, - [SMALL_STATE(2881)] = 137002, - [SMALL_STATE(2882)] = 137058, - [SMALL_STATE(2883)] = 137094, - [SMALL_STATE(2884)] = 137130, - [SMALL_STATE(2885)] = 137164, - [SMALL_STATE(2886)] = 137200, - [SMALL_STATE(2887)] = 137236, - [SMALL_STATE(2888)] = 137272, - [SMALL_STATE(2889)] = 137306, - [SMALL_STATE(2890)] = 137362, - [SMALL_STATE(2891)] = 137391, - [SMALL_STATE(2892)] = 137420, - [SMALL_STATE(2893)] = 137455, - [SMALL_STATE(2894)] = 137490, - [SMALL_STATE(2895)] = 137521, - [SMALL_STATE(2896)] = 137556, - [SMALL_STATE(2897)] = 137591, - [SMALL_STATE(2898)] = 137622, - [SMALL_STATE(2899)] = 137653, - [SMALL_STATE(2900)] = 137688, - [SMALL_STATE(2901)] = 137717, - [SMALL_STATE(2902)] = 137750, - [SMALL_STATE(2903)] = 137779, - [SMALL_STATE(2904)] = 137810, - [SMALL_STATE(2905)] = 137841, - [SMALL_STATE(2906)] = 137880, - [SMALL_STATE(2907)] = 137909, - [SMALL_STATE(2908)] = 137938, - [SMALL_STATE(2909)] = 137967, - [SMALL_STATE(2910)] = 137998, - [SMALL_STATE(2911)] = 138029, - [SMALL_STATE(2912)] = 138060, - [SMALL_STATE(2913)] = 138089, - [SMALL_STATE(2914)] = 138120, - [SMALL_STATE(2915)] = 138149, - [SMALL_STATE(2916)] = 138178, - [SMALL_STATE(2917)] = 138207, - [SMALL_STATE(2918)] = 138238, - [SMALL_STATE(2919)] = 138271, - [SMALL_STATE(2920)] = 138302, - [SMALL_STATE(2921)] = 138331, - [SMALL_STATE(2922)] = 138362, - [SMALL_STATE(2923)] = 138391, - [SMALL_STATE(2924)] = 138422, - [SMALL_STATE(2925)] = 138463, - [SMALL_STATE(2926)] = 138494, - [SMALL_STATE(2927)] = 138523, - [SMALL_STATE(2928)] = 138552, - [SMALL_STATE(2929)] = 138587, - [SMALL_STATE(2930)] = 138616, - [SMALL_STATE(2931)] = 138655, - [SMALL_STATE(2932)] = 138686, - [SMALL_STATE(2933)] = 138717, - [SMALL_STATE(2934)] = 138748, - [SMALL_STATE(2935)] = 138779, - [SMALL_STATE(2936)] = 138822, - [SMALL_STATE(2937)] = 138865, - [SMALL_STATE(2938)] = 138898, - [SMALL_STATE(2939)] = 138927, - [SMALL_STATE(2940)] = 138974, - [SMALL_STATE(2941)] = 139021, - [SMALL_STATE(2942)] = 139050, - [SMALL_STATE(2943)] = 139085, - [SMALL_STATE(2944)] = 139116, - [SMALL_STATE(2945)] = 139163, - [SMALL_STATE(2946)] = 139198, - [SMALL_STATE(2947)] = 139229, - [SMALL_STATE(2948)] = 139260, - [SMALL_STATE(2949)] = 139291, - [SMALL_STATE(2950)] = 139326, - [SMALL_STATE(2951)] = 139357, - [SMALL_STATE(2952)] = 139386, - [SMALL_STATE(2953)] = 139417, - [SMALL_STATE(2954)] = 139452, - [SMALL_STATE(2955)] = 139483, - [SMALL_STATE(2956)] = 139517, - [SMALL_STATE(2957)] = 139545, - [SMALL_STATE(2958)] = 139573, - [SMALL_STATE(2959)] = 139601, - [SMALL_STATE(2960)] = 139643, - [SMALL_STATE(2961)] = 139677, - [SMALL_STATE(2962)] = 139705, - [SMALL_STATE(2963)] = 139733, - [SMALL_STATE(2964)] = 139761, - [SMALL_STATE(2965)] = 139793, - [SMALL_STATE(2966)] = 139825, - [SMALL_STATE(2967)] = 139853, - [SMALL_STATE(2968)] = 139881, - [SMALL_STATE(2969)] = 139909, - [SMALL_STATE(2970)] = 139937, - [SMALL_STATE(2971)] = 139965, - [SMALL_STATE(2972)] = 139993, - [SMALL_STATE(2973)] = 140021, - [SMALL_STATE(2974)] = 140049, - [SMALL_STATE(2975)] = 140077, - [SMALL_STATE(2976)] = 140105, - [SMALL_STATE(2977)] = 140133, - [SMALL_STATE(2978)] = 140167, - [SMALL_STATE(2979)] = 140201, - [SMALL_STATE(2980)] = 140235, - [SMALL_STATE(2981)] = 140263, - [SMALL_STATE(2982)] = 140295, - [SMALL_STATE(2983)] = 140329, - [SMALL_STATE(2984)] = 140363, - [SMALL_STATE(2985)] = 140407, - [SMALL_STATE(2986)] = 140435, - [SMALL_STATE(2987)] = 140463, - [SMALL_STATE(2988)] = 140491, - [SMALL_STATE(2989)] = 140519, - [SMALL_STATE(2990)] = 140547, - [SMALL_STATE(2991)] = 140575, - [SMALL_STATE(2992)] = 140603, - [SMALL_STATE(2993)] = 140631, - [SMALL_STATE(2994)] = 140659, - [SMALL_STATE(2995)] = 140687, - [SMALL_STATE(2996)] = 140715, - [SMALL_STATE(2997)] = 140743, - [SMALL_STATE(2998)] = 140771, - [SMALL_STATE(2999)] = 140799, - [SMALL_STATE(3000)] = 140827, - [SMALL_STATE(3001)] = 140855, - [SMALL_STATE(3002)] = 140883, - [SMALL_STATE(3003)] = 140911, - [SMALL_STATE(3004)] = 140943, - [SMALL_STATE(3005)] = 140977, - [SMALL_STATE(3006)] = 141005, - [SMALL_STATE(3007)] = 141039, - [SMALL_STATE(3008)] = 141067, - [SMALL_STATE(3009)] = 141095, - [SMALL_STATE(3010)] = 141123, - [SMALL_STATE(3011)] = 141155, - [SMALL_STATE(3012)] = 141189, - [SMALL_STATE(3013)] = 141217, - [SMALL_STATE(3014)] = 141259, - [SMALL_STATE(3015)] = 141287, - [SMALL_STATE(3016)] = 141315, - [SMALL_STATE(3017)] = 141349, - [SMALL_STATE(3018)] = 141377, - [SMALL_STATE(3019)] = 141407, - [SMALL_STATE(3020)] = 141441, - [SMALL_STATE(3021)] = 141469, - [SMALL_STATE(3022)] = 141497, - [SMALL_STATE(3023)] = 141525, - [SMALL_STATE(3024)] = 141559, - [SMALL_STATE(3025)] = 141587, - [SMALL_STATE(3026)] = 141619, - [SMALL_STATE(3027)] = 141651, - [SMALL_STATE(3028)] = 141679, - [SMALL_STATE(3029)] = 141707, - [SMALL_STATE(3030)] = 141739, - [SMALL_STATE(3031)] = 141771, - [SMALL_STATE(3032)] = 141799, - [SMALL_STATE(3033)] = 141831, - [SMALL_STATE(3034)] = 141865, - [SMALL_STATE(3035)] = 141897, - [SMALL_STATE(3036)] = 141931, - [SMALL_STATE(3037)] = 141959, - [SMALL_STATE(3038)] = 141993, - [SMALL_STATE(3039)] = 142027, - [SMALL_STATE(3040)] = 142055, - [SMALL_STATE(3041)] = 142083, - [SMALL_STATE(3042)] = 142111, - [SMALL_STATE(3043)] = 142143, - [SMALL_STATE(3044)] = 142171, - [SMALL_STATE(3045)] = 142203, - [SMALL_STATE(3046)] = 142231, - [SMALL_STATE(3047)] = 142259, - [SMALL_STATE(3048)] = 142287, - [SMALL_STATE(3049)] = 142315, - [SMALL_STATE(3050)] = 142347, - [SMALL_STATE(3051)] = 142375, - [SMALL_STATE(3052)] = 142403, - [SMALL_STATE(3053)] = 142431, - [SMALL_STATE(3054)] = 142463, - [SMALL_STATE(3055)] = 142491, - [SMALL_STATE(3056)] = 142518, - [SMALL_STATE(3057)] = 142549, - [SMALL_STATE(3058)] = 142580, - [SMALL_STATE(3059)] = 142611, - [SMALL_STATE(3060)] = 142642, - [SMALL_STATE(3061)] = 142669, - [SMALL_STATE(3062)] = 142696, - [SMALL_STATE(3063)] = 142723, - [SMALL_STATE(3064)] = 142750, - [SMALL_STATE(3065)] = 142777, - [SMALL_STATE(3066)] = 142804, - [SMALL_STATE(3067)] = 142835, - [SMALL_STATE(3068)] = 142862, - [SMALL_STATE(3069)] = 142889, - [SMALL_STATE(3070)] = 142916, - [SMALL_STATE(3071)] = 142943, - [SMALL_STATE(3072)] = 142970, - [SMALL_STATE(3073)] = 142997, - [SMALL_STATE(3074)] = 143024, - [SMALL_STATE(3075)] = 143051, - [SMALL_STATE(3076)] = 143078, - [SMALL_STATE(3077)] = 143105, - [SMALL_STATE(3078)] = 143132, - [SMALL_STATE(3079)] = 143159, - [SMALL_STATE(3080)] = 143186, - [SMALL_STATE(3081)] = 143213, - [SMALL_STATE(3082)] = 143240, - [SMALL_STATE(3083)] = 143267, - [SMALL_STATE(3084)] = 143294, - [SMALL_STATE(3085)] = 143321, - [SMALL_STATE(3086)] = 143348, - [SMALL_STATE(3087)] = 143375, - [SMALL_STATE(3088)] = 143402, - [SMALL_STATE(3089)] = 143429, - [SMALL_STATE(3090)] = 143456, - [SMALL_STATE(3091)] = 143489, - [SMALL_STATE(3092)] = 143516, - [SMALL_STATE(3093)] = 143543, - [SMALL_STATE(3094)] = 143576, - [SMALL_STATE(3095)] = 143609, - [SMALL_STATE(3096)] = 143640, - [SMALL_STATE(3097)] = 143673, - [SMALL_STATE(3098)] = 143700, - [SMALL_STATE(3099)] = 143749, - [SMALL_STATE(3100)] = 143780, - [SMALL_STATE(3101)] = 143807, - [SMALL_STATE(3102)] = 143838, - [SMALL_STATE(3103)] = 143869, - [SMALL_STATE(3104)] = 143900, - [SMALL_STATE(3105)] = 143931, - [SMALL_STATE(3106)] = 143966, - [SMALL_STATE(3107)] = 143997, - [SMALL_STATE(3108)] = 144028, - [SMALL_STATE(3109)] = 144055, - [SMALL_STATE(3110)] = 144086, - [SMALL_STATE(3111)] = 144113, - [SMALL_STATE(3112)] = 144144, - [SMALL_STATE(3113)] = 144179, - [SMALL_STATE(3114)] = 144206, - [SMALL_STATE(3115)] = 144233, - [SMALL_STATE(3116)] = 144264, - [SMALL_STATE(3117)] = 144291, - [SMALL_STATE(3118)] = 144317, - [SMALL_STATE(3119)] = 144343, - [SMALL_STATE(3120)] = 144375, - [SMALL_STATE(3121)] = 144407, - [SMALL_STATE(3122)] = 144437, - [SMALL_STATE(3123)] = 144463, - [SMALL_STATE(3124)] = 144495, - [SMALL_STATE(3125)] = 144521, - [SMALL_STATE(3126)] = 144547, - [SMALL_STATE(3127)] = 144577, - [SMALL_STATE(3128)] = 144603, - [SMALL_STATE(3129)] = 144629, - [SMALL_STATE(3130)] = 144655, - [SMALL_STATE(3131)] = 144681, - [SMALL_STATE(3132)] = 144715, - [SMALL_STATE(3133)] = 144741, - [SMALL_STATE(3134)] = 144771, - [SMALL_STATE(3135)] = 144797, - [SMALL_STATE(3136)] = 144829, - [SMALL_STATE(3137)] = 144855, - [SMALL_STATE(3138)] = 144887, - [SMALL_STATE(3139)] = 144913, - [SMALL_STATE(3140)] = 144943, - [SMALL_STATE(3141)] = 144969, - [SMALL_STATE(3142)] = 144995, - [SMALL_STATE(3143)] = 145025, - [SMALL_STATE(3144)] = 145051, - [SMALL_STATE(3145)] = 145085, - [SMALL_STATE(3146)] = 145111, - [SMALL_STATE(3147)] = 145137, - [SMALL_STATE(3148)] = 145163, - [SMALL_STATE(3149)] = 145189, - [SMALL_STATE(3150)] = 145215, - [SMALL_STATE(3151)] = 145240, - [SMALL_STATE(3152)] = 145265, - [SMALL_STATE(3153)] = 145290, - [SMALL_STATE(3154)] = 145315, - [SMALL_STATE(3155)] = 145340, - [SMALL_STATE(3156)] = 145365, - [SMALL_STATE(3157)] = 145390, - [SMALL_STATE(3158)] = 145423, - [SMALL_STATE(3159)] = 145448, - [SMALL_STATE(3160)] = 145473, - [SMALL_STATE(3161)] = 145498, - [SMALL_STATE(3162)] = 145531, - [SMALL_STATE(3163)] = 145556, - [SMALL_STATE(3164)] = 145581, - [SMALL_STATE(3165)] = 145606, - [SMALL_STATE(3166)] = 145639, - [SMALL_STATE(3167)] = 145664, - [SMALL_STATE(3168)] = 145689, - [SMALL_STATE(3169)] = 145714, - [SMALL_STATE(3170)] = 145738, - [SMALL_STATE(3171)] = 145762, - [SMALL_STATE(3172)] = 145786, - [SMALL_STATE(3173)] = 145810, - [SMALL_STATE(3174)] = 145834, - [SMALL_STATE(3175)] = 145858, - [SMALL_STATE(3176)] = 145882, - [SMALL_STATE(3177)] = 145906, - [SMALL_STATE(3178)] = 145930, - [SMALL_STATE(3179)] = 145954, - [SMALL_STATE(3180)] = 145978, - [SMALL_STATE(3181)] = 146002, - [SMALL_STATE(3182)] = 146026, - [SMALL_STATE(3183)] = 146050, - [SMALL_STATE(3184)] = 146074, - [SMALL_STATE(3185)] = 146098, - [SMALL_STATE(3186)] = 146122, - [SMALL_STATE(3187)] = 146146, - [SMALL_STATE(3188)] = 146170, - [SMALL_STATE(3189)] = 146208, - [SMALL_STATE(3190)] = 146232, - [SMALL_STATE(3191)] = 146256, - [SMALL_STATE(3192)] = 146280, - [SMALL_STATE(3193)] = 146304, - [SMALL_STATE(3194)] = 146328, - [SMALL_STATE(3195)] = 146352, - [SMALL_STATE(3196)] = 146376, - [SMALL_STATE(3197)] = 146400, - [SMALL_STATE(3198)] = 146424, - [SMALL_STATE(3199)] = 146448, - [SMALL_STATE(3200)] = 146472, - [SMALL_STATE(3201)] = 146496, - [SMALL_STATE(3202)] = 146520, - [SMALL_STATE(3203)] = 146544, - [SMALL_STATE(3204)] = 146568, - [SMALL_STATE(3205)] = 146592, - [SMALL_STATE(3206)] = 146616, - [SMALL_STATE(3207)] = 146640, - [SMALL_STATE(3208)] = 146664, - [SMALL_STATE(3209)] = 146688, - [SMALL_STATE(3210)] = 146712, - [SMALL_STATE(3211)] = 146736, - [SMALL_STATE(3212)] = 146760, - [SMALL_STATE(3213)] = 146784, - [SMALL_STATE(3214)] = 146808, - [SMALL_STATE(3215)] = 146844, - [SMALL_STATE(3216)] = 146868, - [SMALL_STATE(3217)] = 146892, - [SMALL_STATE(3218)] = 146921, - [SMALL_STATE(3219)] = 146950, - [SMALL_STATE(3220)] = 146981, - [SMALL_STATE(3221)] = 147010, - [SMALL_STATE(3222)] = 147041, - [SMALL_STATE(3223)] = 147072, - [SMALL_STATE(3224)] = 147103, - [SMALL_STATE(3225)] = 147132, - [SMALL_STATE(3226)] = 147163, - [SMALL_STATE(3227)] = 147194, - [SMALL_STATE(3228)] = 147225, - [SMALL_STATE(3229)] = 147256, - [SMALL_STATE(3230)] = 147294, - [SMALL_STATE(3231)] = 147332, - [SMALL_STATE(3232)] = 147370, - [SMALL_STATE(3233)] = 147408, - [SMALL_STATE(3234)] = 147446, - [SMALL_STATE(3235)] = 147484, - [SMALL_STATE(3236)] = 147522, - [SMALL_STATE(3237)] = 147560, - [SMALL_STATE(3238)] = 147598, - [SMALL_STATE(3239)] = 147636, - [SMALL_STATE(3240)] = 147674, - [SMALL_STATE(3241)] = 147712, - [SMALL_STATE(3242)] = 147750, - [SMALL_STATE(3243)] = 147788, - [SMALL_STATE(3244)] = 147826, - [SMALL_STATE(3245)] = 147864, - [SMALL_STATE(3246)] = 147902, - [SMALL_STATE(3247)] = 147940, - [SMALL_STATE(3248)] = 147978, - [SMALL_STATE(3249)] = 148016, - [SMALL_STATE(3250)] = 148054, - [SMALL_STATE(3251)] = 148092, - [SMALL_STATE(3252)] = 148130, - [SMALL_STATE(3253)] = 148168, - [SMALL_STATE(3254)] = 148206, - [SMALL_STATE(3255)] = 148244, - [SMALL_STATE(3256)] = 148282, - [SMALL_STATE(3257)] = 148320, - [SMALL_STATE(3258)] = 148358, - [SMALL_STATE(3259)] = 148396, - [SMALL_STATE(3260)] = 148434, - [SMALL_STATE(3261)] = 148472, - [SMALL_STATE(3262)] = 148510, - [SMALL_STATE(3263)] = 148548, - [SMALL_STATE(3264)] = 148586, - [SMALL_STATE(3265)] = 148624, - [SMALL_STATE(3266)] = 148662, - [SMALL_STATE(3267)] = 148700, - [SMALL_STATE(3268)] = 148728, - [SMALL_STATE(3269)] = 148766, - [SMALL_STATE(3270)] = 148804, - [SMALL_STATE(3271)] = 148842, - [SMALL_STATE(3272)] = 148880, - [SMALL_STATE(3273)] = 148918, - [SMALL_STATE(3274)] = 148956, - [SMALL_STATE(3275)] = 148994, - [SMALL_STATE(3276)] = 149032, - [SMALL_STATE(3277)] = 149070, - [SMALL_STATE(3278)] = 149108, - [SMALL_STATE(3279)] = 149146, - [SMALL_STATE(3280)] = 149184, - [SMALL_STATE(3281)] = 149222, - [SMALL_STATE(3282)] = 149260, - [SMALL_STATE(3283)] = 149298, - [SMALL_STATE(3284)] = 149336, - [SMALL_STATE(3285)] = 149374, - [SMALL_STATE(3286)] = 149412, - [SMALL_STATE(3287)] = 149450, - [SMALL_STATE(3288)] = 149488, - [SMALL_STATE(3289)] = 149526, - [SMALL_STATE(3290)] = 149564, - [SMALL_STATE(3291)] = 149602, - [SMALL_STATE(3292)] = 149640, - [SMALL_STATE(3293)] = 149678, - [SMALL_STATE(3294)] = 149716, - [SMALL_STATE(3295)] = 149754, - [SMALL_STATE(3296)] = 149792, - [SMALL_STATE(3297)] = 149830, - [SMALL_STATE(3298)] = 149868, - [SMALL_STATE(3299)] = 149906, - [SMALL_STATE(3300)] = 149944, - [SMALL_STATE(3301)] = 149982, - [SMALL_STATE(3302)] = 150020, - [SMALL_STATE(3303)] = 150058, - [SMALL_STATE(3304)] = 150096, - [SMALL_STATE(3305)] = 150134, - [SMALL_STATE(3306)] = 150172, - [SMALL_STATE(3307)] = 150210, - [SMALL_STATE(3308)] = 150248, - [SMALL_STATE(3309)] = 150286, - [SMALL_STATE(3310)] = 150324, - [SMALL_STATE(3311)] = 150362, - [SMALL_STATE(3312)] = 150400, - [SMALL_STATE(3313)] = 150438, - [SMALL_STATE(3314)] = 150476, - [SMALL_STATE(3315)] = 150514, - [SMALL_STATE(3316)] = 150552, - [SMALL_STATE(3317)] = 150590, - [SMALL_STATE(3318)] = 150628, - [SMALL_STATE(3319)] = 150666, - [SMALL_STATE(3320)] = 150704, - [SMALL_STATE(3321)] = 150742, - [SMALL_STATE(3322)] = 150767, - [SMALL_STATE(3323)] = 150792, - [SMALL_STATE(3324)] = 150817, - [SMALL_STATE(3325)] = 150842, - [SMALL_STATE(3326)] = 150867, - [SMALL_STATE(3327)] = 150892, - [SMALL_STATE(3328)] = 150917, - [SMALL_STATE(3329)] = 150942, - [SMALL_STATE(3330)] = 150967, - [SMALL_STATE(3331)] = 150992, - [SMALL_STATE(3332)] = 151017, - [SMALL_STATE(3333)] = 151042, - [SMALL_STATE(3334)] = 151067, - [SMALL_STATE(3335)] = 151092, - [SMALL_STATE(3336)] = 151117, - [SMALL_STATE(3337)] = 151144, - [SMALL_STATE(3338)] = 151171, - [SMALL_STATE(3339)] = 151196, - [SMALL_STATE(3340)] = 151221, - [SMALL_STATE(3341)] = 151246, - [SMALL_STATE(3342)] = 151271, - [SMALL_STATE(3343)] = 151296, - [SMALL_STATE(3344)] = 151323, - [SMALL_STATE(3345)] = 151350, - [SMALL_STATE(3346)] = 151375, - [SMALL_STATE(3347)] = 151400, - [SMALL_STATE(3348)] = 151425, - [SMALL_STATE(3349)] = 151450, - [SMALL_STATE(3350)] = 151475, - [SMALL_STATE(3351)] = 151500, - [SMALL_STATE(3352)] = 151525, - [SMALL_STATE(3353)] = 151550, - [SMALL_STATE(3354)] = 151575, - [SMALL_STATE(3355)] = 151600, - [SMALL_STATE(3356)] = 151625, - [SMALL_STATE(3357)] = 151650, - [SMALL_STATE(3358)] = 151675, - [SMALL_STATE(3359)] = 151700, - [SMALL_STATE(3360)] = 151725, - [SMALL_STATE(3361)] = 151750, - [SMALL_STATE(3362)] = 151775, - [SMALL_STATE(3363)] = 151800, - [SMALL_STATE(3364)] = 151825, - [SMALL_STATE(3365)] = 151850, - [SMALL_STATE(3366)] = 151875, - [SMALL_STATE(3367)] = 151900, - [SMALL_STATE(3368)] = 151925, - [SMALL_STATE(3369)] = 151950, - [SMALL_STATE(3370)] = 151975, - [SMALL_STATE(3371)] = 152000, - [SMALL_STATE(3372)] = 152025, - [SMALL_STATE(3373)] = 152050, - [SMALL_STATE(3374)] = 152075, - [SMALL_STATE(3375)] = 152100, - [SMALL_STATE(3376)] = 152125, - [SMALL_STATE(3377)] = 152150, - [SMALL_STATE(3378)] = 152175, - [SMALL_STATE(3379)] = 152200, - [SMALL_STATE(3380)] = 152225, - [SMALL_STATE(3381)] = 152250, - [SMALL_STATE(3382)] = 152275, - [SMALL_STATE(3383)] = 152300, - [SMALL_STATE(3384)] = 152325, - [SMALL_STATE(3385)] = 152350, - [SMALL_STATE(3386)] = 152375, - [SMALL_STATE(3387)] = 152400, - [SMALL_STATE(3388)] = 152425, - [SMALL_STATE(3389)] = 152450, - [SMALL_STATE(3390)] = 152475, - [SMALL_STATE(3391)] = 152500, - [SMALL_STATE(3392)] = 152525, - [SMALL_STATE(3393)] = 152550, - [SMALL_STATE(3394)] = 152575, - [SMALL_STATE(3395)] = 152600, - [SMALL_STATE(3396)] = 152625, - [SMALL_STATE(3397)] = 152650, - [SMALL_STATE(3398)] = 152675, - [SMALL_STATE(3399)] = 152700, - [SMALL_STATE(3400)] = 152725, - [SMALL_STATE(3401)] = 152750, - [SMALL_STATE(3402)] = 152775, - [SMALL_STATE(3403)] = 152800, - [SMALL_STATE(3404)] = 152825, - [SMALL_STATE(3405)] = 152850, - [SMALL_STATE(3406)] = 152875, - [SMALL_STATE(3407)] = 152900, - [SMALL_STATE(3408)] = 152925, - [SMALL_STATE(3409)] = 152950, - [SMALL_STATE(3410)] = 152975, - [SMALL_STATE(3411)] = 153000, - [SMALL_STATE(3412)] = 153025, - [SMALL_STATE(3413)] = 153050, - [SMALL_STATE(3414)] = 153075, - [SMALL_STATE(3415)] = 153100, - [SMALL_STATE(3416)] = 153125, - [SMALL_STATE(3417)] = 153150, - [SMALL_STATE(3418)] = 153175, - [SMALL_STATE(3419)] = 153200, - [SMALL_STATE(3420)] = 153225, - [SMALL_STATE(3421)] = 153250, - [SMALL_STATE(3422)] = 153275, - [SMALL_STATE(3423)] = 153300, - [SMALL_STATE(3424)] = 153325, - [SMALL_STATE(3425)] = 153350, - [SMALL_STATE(3426)] = 153375, - [SMALL_STATE(3427)] = 153400, - [SMALL_STATE(3428)] = 153425, - [SMALL_STATE(3429)] = 153450, - [SMALL_STATE(3430)] = 153475, - [SMALL_STATE(3431)] = 153500, - [SMALL_STATE(3432)] = 153525, - [SMALL_STATE(3433)] = 153550, - [SMALL_STATE(3434)] = 153575, - [SMALL_STATE(3435)] = 153600, - [SMALL_STATE(3436)] = 153625, - [SMALL_STATE(3437)] = 153650, - [SMALL_STATE(3438)] = 153675, - [SMALL_STATE(3439)] = 153700, - [SMALL_STATE(3440)] = 153725, - [SMALL_STATE(3441)] = 153750, - [SMALL_STATE(3442)] = 153775, - [SMALL_STATE(3443)] = 153800, - [SMALL_STATE(3444)] = 153825, - [SMALL_STATE(3445)] = 153852, - [SMALL_STATE(3446)] = 153877, - [SMALL_STATE(3447)] = 153902, - [SMALL_STATE(3448)] = 153927, - [SMALL_STATE(3449)] = 153952, - [SMALL_STATE(3450)] = 153977, - [SMALL_STATE(3451)] = 154002, - [SMALL_STATE(3452)] = 154027, - [SMALL_STATE(3453)] = 154052, - [SMALL_STATE(3454)] = 154077, - [SMALL_STATE(3455)] = 154102, - [SMALL_STATE(3456)] = 154129, - [SMALL_STATE(3457)] = 154156, - [SMALL_STATE(3458)] = 154181, - [SMALL_STATE(3459)] = 154206, - [SMALL_STATE(3460)] = 154230, - [SMALL_STATE(3461)] = 154250, - [SMALL_STATE(3462)] = 154270, - [SMALL_STATE(3463)] = 154294, - [SMALL_STATE(3464)] = 154318, - [SMALL_STATE(3465)] = 154338, - [SMALL_STATE(3466)] = 154358, - [SMALL_STATE(3467)] = 154378, - [SMALL_STATE(3468)] = 154402, - [SMALL_STATE(3469)] = 154426, - [SMALL_STATE(3470)] = 154446, - [SMALL_STATE(3471)] = 154466, - [SMALL_STATE(3472)] = 154490, - [SMALL_STATE(3473)] = 154522, - [SMALL_STATE(3474)] = 154542, - [SMALL_STATE(3475)] = 154562, - [SMALL_STATE(3476)] = 154582, - [SMALL_STATE(3477)] = 154606, - [SMALL_STATE(3478)] = 154626, - [SMALL_STATE(3479)] = 154646, - [SMALL_STATE(3480)] = 154668, - [SMALL_STATE(3481)] = 154688, - [SMALL_STATE(3482)] = 154712, - [SMALL_STATE(3483)] = 154732, - [SMALL_STATE(3484)] = 154756, - [SMALL_STATE(3485)] = 154780, - [SMALL_STATE(3486)] = 154800, - [SMALL_STATE(3487)] = 154820, - [SMALL_STATE(3488)] = 154840, - [SMALL_STATE(3489)] = 154860, - [SMALL_STATE(3490)] = 154880, - [SMALL_STATE(3491)] = 154904, - [SMALL_STATE(3492)] = 154928, - [SMALL_STATE(3493)] = 154947, - [SMALL_STATE(3494)] = 154972, - [SMALL_STATE(3495)] = 154991, - [SMALL_STATE(3496)] = 155010, - [SMALL_STATE(3497)] = 155029, - [SMALL_STATE(3498)] = 155054, - [SMALL_STATE(3499)] = 155073, - [SMALL_STATE(3500)] = 155098, - [SMALL_STATE(3501)] = 155129, - [SMALL_STATE(3502)] = 155148, - [SMALL_STATE(3503)] = 155173, - [SMALL_STATE(3504)] = 155192, - [SMALL_STATE(3505)] = 155223, - [SMALL_STATE(3506)] = 155248, - [SMALL_STATE(3507)] = 155267, - [SMALL_STATE(3508)] = 155298, - [SMALL_STATE(3509)] = 155317, - [SMALL_STATE(3510)] = 155342, - [SMALL_STATE(3511)] = 155367, - [SMALL_STATE(3512)] = 155392, - [SMALL_STATE(3513)] = 155417, - [SMALL_STATE(3514)] = 155435, - [SMALL_STATE(3515)] = 155461, - [SMALL_STATE(3516)] = 155477, - [SMALL_STATE(3517)] = 155495, - [SMALL_STATE(3518)] = 155513, - [SMALL_STATE(3519)] = 155531, - [SMALL_STATE(3520)] = 155549, - [SMALL_STATE(3521)] = 155567, - [SMALL_STATE(3522)] = 155585, - [SMALL_STATE(3523)] = 155603, - [SMALL_STATE(3524)] = 155621, - [SMALL_STATE(3525)] = 155639, - [SMALL_STATE(3526)] = 155657, - [SMALL_STATE(3527)] = 155675, - [SMALL_STATE(3528)] = 155693, - [SMALL_STATE(3529)] = 155708, - [SMALL_STATE(3530)] = 155735, - [SMALL_STATE(3531)] = 155750, - [SMALL_STATE(3532)] = 155773, - [SMALL_STATE(3533)] = 155795, - [SMALL_STATE(3534)] = 155819, - [SMALL_STATE(3535)] = 155835, - [SMALL_STATE(3536)] = 155859, - [SMALL_STATE(3537)] = 155883, - [SMALL_STATE(3538)] = 155907, - [SMALL_STATE(3539)] = 155931, - [SMALL_STATE(3540)] = 155947, - [SMALL_STATE(3541)] = 155963, - [SMALL_STATE(3542)] = 155985, - [SMALL_STATE(3543)] = 156001, - [SMALL_STATE(3544)] = 156017, - [SMALL_STATE(3545)] = 156033, - [SMALL_STATE(3546)] = 156049, - [SMALL_STATE(3547)] = 156065, - [SMALL_STATE(3548)] = 156081, - [SMALL_STATE(3549)] = 156097, - [SMALL_STATE(3550)] = 156113, - [SMALL_STATE(3551)] = 156129, - [SMALL_STATE(3552)] = 156145, - [SMALL_STATE(3553)] = 156161, - [SMALL_STATE(3554)] = 156177, - [SMALL_STATE(3555)] = 156193, - [SMALL_STATE(3556)] = 156215, - [SMALL_STATE(3557)] = 156231, - [SMALL_STATE(3558)] = 156247, - [SMALL_STATE(3559)] = 156263, - [SMALL_STATE(3560)] = 156287, - [SMALL_STATE(3561)] = 156302, - [SMALL_STATE(3562)] = 156323, - [SMALL_STATE(3563)] = 156338, - [SMALL_STATE(3564)] = 156359, - [SMALL_STATE(3565)] = 156380, - [SMALL_STATE(3566)] = 156401, - [SMALL_STATE(3567)] = 156422, - [SMALL_STATE(3568)] = 156443, - [SMALL_STATE(3569)] = 156464, - [SMALL_STATE(3570)] = 156485, - [SMALL_STATE(3571)] = 156506, - [SMALL_STATE(3572)] = 156521, - [SMALL_STATE(3573)] = 156542, - [SMALL_STATE(3574)] = 156563, - [SMALL_STATE(3575)] = 156584, - [SMALL_STATE(3576)] = 156599, - [SMALL_STATE(3577)] = 156614, - [SMALL_STATE(3578)] = 156635, - [SMALL_STATE(3579)] = 156656, - [SMALL_STATE(3580)] = 156677, - [SMALL_STATE(3581)] = 156692, - [SMALL_STATE(3582)] = 156707, - [SMALL_STATE(3583)] = 156722, - [SMALL_STATE(3584)] = 156741, - [SMALL_STATE(3585)] = 156756, - [SMALL_STATE(3586)] = 156771, - [SMALL_STATE(3587)] = 156786, - [SMALL_STATE(3588)] = 156801, - [SMALL_STATE(3589)] = 156816, - [SMALL_STATE(3590)] = 156831, - [SMALL_STATE(3591)] = 156846, - [SMALL_STATE(3592)] = 156861, - [SMALL_STATE(3593)] = 156876, - [SMALL_STATE(3594)] = 156891, - [SMALL_STATE(3595)] = 156906, - [SMALL_STATE(3596)] = 156927, - [SMALL_STATE(3597)] = 156948, - [SMALL_STATE(3598)] = 156963, - [SMALL_STATE(3599)] = 156984, - [SMALL_STATE(3600)] = 156999, - [SMALL_STATE(3601)] = 157014, - [SMALL_STATE(3602)] = 157035, - [SMALL_STATE(3603)] = 157056, - [SMALL_STATE(3604)] = 157071, - [SMALL_STATE(3605)] = 157086, - [SMALL_STATE(3606)] = 157101, - [SMALL_STATE(3607)] = 157122, - [SMALL_STATE(3608)] = 157143, - [SMALL_STATE(3609)] = 157164, - [SMALL_STATE(3610)] = 157185, - [SMALL_STATE(3611)] = 157206, - [SMALL_STATE(3612)] = 157227, - [SMALL_STATE(3613)] = 157248, - [SMALL_STATE(3614)] = 157263, - [SMALL_STATE(3615)] = 157281, - [SMALL_STATE(3616)] = 157301, - [SMALL_STATE(3617)] = 157321, - [SMALL_STATE(3618)] = 157341, - [SMALL_STATE(3619)] = 157361, - [SMALL_STATE(3620)] = 157381, - [SMALL_STATE(3621)] = 157401, - [SMALL_STATE(3622)] = 157421, - [SMALL_STATE(3623)] = 157435, - [SMALL_STATE(3624)] = 157455, - [SMALL_STATE(3625)] = 157475, - [SMALL_STATE(3626)] = 157495, - [SMALL_STATE(3627)] = 157515, - [SMALL_STATE(3628)] = 157531, - [SMALL_STATE(3629)] = 157551, - [SMALL_STATE(3630)] = 157571, - [SMALL_STATE(3631)] = 157591, - [SMALL_STATE(3632)] = 157611, - [SMALL_STATE(3633)] = 157631, - [SMALL_STATE(3634)] = 157651, - [SMALL_STATE(3635)] = 157671, - [SMALL_STATE(3636)] = 157691, - [SMALL_STATE(3637)] = 157711, - [SMALL_STATE(3638)] = 157731, - [SMALL_STATE(3639)] = 157753, - [SMALL_STATE(3640)] = 157773, - [SMALL_STATE(3641)] = 157790, - [SMALL_STATE(3642)] = 157807, - [SMALL_STATE(3643)] = 157822, - [SMALL_STATE(3644)] = 157839, - [SMALL_STATE(3645)] = 157856, - [SMALL_STATE(3646)] = 157871, - [SMALL_STATE(3647)] = 157886, - [SMALL_STATE(3648)] = 157903, - [SMALL_STATE(3649)] = 157918, - [SMALL_STATE(3650)] = 157933, - [SMALL_STATE(3651)] = 157948, - [SMALL_STATE(3652)] = 157965, - [SMALL_STATE(3653)] = 157982, - [SMALL_STATE(3654)] = 157999, - [SMALL_STATE(3655)] = 158016, - [SMALL_STATE(3656)] = 158035, - [SMALL_STATE(3657)] = 158052, - [SMALL_STATE(3658)] = 158069, - [SMALL_STATE(3659)] = 158082, - [SMALL_STATE(3660)] = 158099, - [SMALL_STATE(3661)] = 158112, - [SMALL_STATE(3662)] = 158131, - [SMALL_STATE(3663)] = 158144, - [SMALL_STATE(3664)] = 158159, - [SMALL_STATE(3665)] = 158172, - [SMALL_STATE(3666)] = 158187, - [SMALL_STATE(3667)] = 158206, - [SMALL_STATE(3668)] = 158221, - [SMALL_STATE(3669)] = 158236, - [SMALL_STATE(3670)] = 158253, - [SMALL_STATE(3671)] = 158270, - [SMALL_STATE(3672)] = 158287, - [SMALL_STATE(3673)] = 158306, - [SMALL_STATE(3674)] = 158325, - [SMALL_STATE(3675)] = 158340, - [SMALL_STATE(3676)] = 158355, - [SMALL_STATE(3677)] = 158370, - [SMALL_STATE(3678)] = 158387, - [SMALL_STATE(3679)] = 158404, - [SMALL_STATE(3680)] = 158421, - [SMALL_STATE(3681)] = 158438, - [SMALL_STATE(3682)] = 158453, - [SMALL_STATE(3683)] = 158470, - [SMALL_STATE(3684)] = 158487, - [SMALL_STATE(3685)] = 158504, - [SMALL_STATE(3686)] = 158519, - [SMALL_STATE(3687)] = 158536, - [SMALL_STATE(3688)] = 158551, - [SMALL_STATE(3689)] = 158568, - [SMALL_STATE(3690)] = 158583, - [SMALL_STATE(3691)] = 158598, - [SMALL_STATE(3692)] = 158613, - [SMALL_STATE(3693)] = 158630, - [SMALL_STATE(3694)] = 158647, - [SMALL_STATE(3695)] = 158662, - [SMALL_STATE(3696)] = 158679, - [SMALL_STATE(3697)] = 158696, - [SMALL_STATE(3698)] = 158713, - [SMALL_STATE(3699)] = 158728, - [SMALL_STATE(3700)] = 158743, - [SMALL_STATE(3701)] = 158760, - [SMALL_STATE(3702)] = 158775, - [SMALL_STATE(3703)] = 158790, - [SMALL_STATE(3704)] = 158807, - [SMALL_STATE(3705)] = 158826, - [SMALL_STATE(3706)] = 158845, - [SMALL_STATE(3707)] = 158855, - [SMALL_STATE(3708)] = 158865, - [SMALL_STATE(3709)] = 158877, - [SMALL_STATE(3710)] = 158887, - [SMALL_STATE(3711)] = 158899, - [SMALL_STATE(3712)] = 158909, - [SMALL_STATE(3713)] = 158919, - [SMALL_STATE(3714)] = 158929, - [SMALL_STATE(3715)] = 158945, - [SMALL_STATE(3716)] = 158955, - [SMALL_STATE(3717)] = 158971, - [SMALL_STATE(3718)] = 158981, - [SMALL_STATE(3719)] = 158995, - [SMALL_STATE(3720)] = 159005, - [SMALL_STATE(3721)] = 159015, - [SMALL_STATE(3722)] = 159025, - [SMALL_STATE(3723)] = 159039, - [SMALL_STATE(3724)] = 159049, - [SMALL_STATE(3725)] = 159059, - [SMALL_STATE(3726)] = 159069, - [SMALL_STATE(3727)] = 159079, - [SMALL_STATE(3728)] = 159089, - [SMALL_STATE(3729)] = 159099, - [SMALL_STATE(3730)] = 159109, - [SMALL_STATE(3731)] = 159119, - [SMALL_STATE(3732)] = 159129, - [SMALL_STATE(3733)] = 159139, - [SMALL_STATE(3734)] = 159149, - [SMALL_STATE(3735)] = 159159, - [SMALL_STATE(3736)] = 159173, - [SMALL_STATE(3737)] = 159187, - [SMALL_STATE(3738)] = 159197, - [SMALL_STATE(3739)] = 159211, - [SMALL_STATE(3740)] = 159221, - [SMALL_STATE(3741)] = 159231, - [SMALL_STATE(3742)] = 159245, - [SMALL_STATE(3743)] = 159255, - [SMALL_STATE(3744)] = 159265, - [SMALL_STATE(3745)] = 159279, - [SMALL_STATE(3746)] = 159289, - [SMALL_STATE(3747)] = 159299, - [SMALL_STATE(3748)] = 159309, - [SMALL_STATE(3749)] = 159319, - [SMALL_STATE(3750)] = 159335, - [SMALL_STATE(3751)] = 159349, - [SMALL_STATE(3752)] = 159359, - [SMALL_STATE(3753)] = 159369, - [SMALL_STATE(3754)] = 159385, - [SMALL_STATE(3755)] = 159401, - [SMALL_STATE(3756)] = 159411, - [SMALL_STATE(3757)] = 159421, - [SMALL_STATE(3758)] = 159431, - [SMALL_STATE(3759)] = 159441, - [SMALL_STATE(3760)] = 159451, - [SMALL_STATE(3761)] = 159461, - [SMALL_STATE(3762)] = 159475, - [SMALL_STATE(3763)] = 159491, - [SMALL_STATE(3764)] = 159501, - [SMALL_STATE(3765)] = 159511, - [SMALL_STATE(3766)] = 159523, - [SMALL_STATE(3767)] = 159533, - [SMALL_STATE(3768)] = 159547, - [SMALL_STATE(3769)] = 159563, - [SMALL_STATE(3770)] = 159573, - [SMALL_STATE(3771)] = 159589, - [SMALL_STATE(3772)] = 159605, - [SMALL_STATE(3773)] = 159615, - [SMALL_STATE(3774)] = 159625, - [SMALL_STATE(3775)] = 159641, - [SMALL_STATE(3776)] = 159657, - [SMALL_STATE(3777)] = 159673, - [SMALL_STATE(3778)] = 159686, - [SMALL_STATE(3779)] = 159699, - [SMALL_STATE(3780)] = 159710, - [SMALL_STATE(3781)] = 159721, - [SMALL_STATE(3782)] = 159734, - [SMALL_STATE(3783)] = 159745, - [SMALL_STATE(3784)] = 159758, - [SMALL_STATE(3785)] = 159769, - [SMALL_STATE(3786)] = 159780, - [SMALL_STATE(3787)] = 159791, - [SMALL_STATE(3788)] = 159804, - [SMALL_STATE(3789)] = 159817, - [SMALL_STATE(3790)] = 159830, - [SMALL_STATE(3791)] = 159843, - [SMALL_STATE(3792)] = 159854, - [SMALL_STATE(3793)] = 159867, - [SMALL_STATE(3794)] = 159880, - [SMALL_STATE(3795)] = 159893, - [SMALL_STATE(3796)] = 159906, - [SMALL_STATE(3797)] = 159917, - [SMALL_STATE(3798)] = 159930, - [SMALL_STATE(3799)] = 159943, - [SMALL_STATE(3800)] = 159954, - [SMALL_STATE(3801)] = 159967, - [SMALL_STATE(3802)] = 159980, - [SMALL_STATE(3803)] = 159993, - [SMALL_STATE(3804)] = 160006, - [SMALL_STATE(3805)] = 160019, - [SMALL_STATE(3806)] = 160032, - [SMALL_STATE(3807)] = 160045, - [SMALL_STATE(3808)] = 160058, - [SMALL_STATE(3809)] = 160071, - [SMALL_STATE(3810)] = 160084, - [SMALL_STATE(3811)] = 160097, - [SMALL_STATE(3812)] = 160108, - [SMALL_STATE(3813)] = 160121, - [SMALL_STATE(3814)] = 160134, - [SMALL_STATE(3815)] = 160147, - [SMALL_STATE(3816)] = 160160, - [SMALL_STATE(3817)] = 160173, - [SMALL_STATE(3818)] = 160184, - [SMALL_STATE(3819)] = 160195, - [SMALL_STATE(3820)] = 160206, - [SMALL_STATE(3821)] = 160215, - [SMALL_STATE(3822)] = 160228, - [SMALL_STATE(3823)] = 160241, - [SMALL_STATE(3824)] = 160254, - [SMALL_STATE(3825)] = 160267, - [SMALL_STATE(3826)] = 160278, - [SMALL_STATE(3827)] = 160291, - [SMALL_STATE(3828)] = 160304, - [SMALL_STATE(3829)] = 160317, - [SMALL_STATE(3830)] = 160330, - [SMALL_STATE(3831)] = 160343, - [SMALL_STATE(3832)] = 160354, - [SMALL_STATE(3833)] = 160365, - [SMALL_STATE(3834)] = 160378, - [SMALL_STATE(3835)] = 160391, - [SMALL_STATE(3836)] = 160404, - [SMALL_STATE(3837)] = 160417, - [SMALL_STATE(3838)] = 160430, - [SMALL_STATE(3839)] = 160443, - [SMALL_STATE(3840)] = 160456, - [SMALL_STATE(3841)] = 160467, - [SMALL_STATE(3842)] = 160480, - [SMALL_STATE(3843)] = 160493, - [SMALL_STATE(3844)] = 160504, - [SMALL_STATE(3845)] = 160517, - [SMALL_STATE(3846)] = 160530, - [SMALL_STATE(3847)] = 160543, - [SMALL_STATE(3848)] = 160556, - [SMALL_STATE(3849)] = 160569, - [SMALL_STATE(3850)] = 160580, - [SMALL_STATE(3851)] = 160593, - [SMALL_STATE(3852)] = 160604, - [SMALL_STATE(3853)] = 160617, - [SMALL_STATE(3854)] = 160630, - [SMALL_STATE(3855)] = 160643, - [SMALL_STATE(3856)] = 160656, - [SMALL_STATE(3857)] = 160667, - [SMALL_STATE(3858)] = 160680, - [SMALL_STATE(3859)] = 160691, - [SMALL_STATE(3860)] = 160704, - [SMALL_STATE(3861)] = 160717, - [SMALL_STATE(3862)] = 160730, - [SMALL_STATE(3863)] = 160743, - [SMALL_STATE(3864)] = 160756, - [SMALL_STATE(3865)] = 160769, - [SMALL_STATE(3866)] = 160782, - [SMALL_STATE(3867)] = 160795, - [SMALL_STATE(3868)] = 160808, - [SMALL_STATE(3869)] = 160821, - [SMALL_STATE(3870)] = 160832, - [SMALL_STATE(3871)] = 160845, - [SMALL_STATE(3872)] = 160856, - [SMALL_STATE(3873)] = 160869, - [SMALL_STATE(3874)] = 160882, - [SMALL_STATE(3875)] = 160895, - [SMALL_STATE(3876)] = 160908, - [SMALL_STATE(3877)] = 160921, - [SMALL_STATE(3878)] = 160934, - [SMALL_STATE(3879)] = 160947, - [SMALL_STATE(3880)] = 160958, - [SMALL_STATE(3881)] = 160971, - [SMALL_STATE(3882)] = 160984, - [SMALL_STATE(3883)] = 160995, - [SMALL_STATE(3884)] = 161008, - [SMALL_STATE(3885)] = 161021, - [SMALL_STATE(3886)] = 161034, - [SMALL_STATE(3887)] = 161047, - [SMALL_STATE(3888)] = 161060, - [SMALL_STATE(3889)] = 161073, - [SMALL_STATE(3890)] = 161084, - [SMALL_STATE(3891)] = 161097, - [SMALL_STATE(3892)] = 161110, - [SMALL_STATE(3893)] = 161121, - [SMALL_STATE(3894)] = 161134, - [SMALL_STATE(3895)] = 161147, - [SMALL_STATE(3896)] = 161160, - [SMALL_STATE(3897)] = 161173, - [SMALL_STATE(3898)] = 161184, - [SMALL_STATE(3899)] = 161197, - [SMALL_STATE(3900)] = 161210, - [SMALL_STATE(3901)] = 161219, - [SMALL_STATE(3902)] = 161232, - [SMALL_STATE(3903)] = 161245, - [SMALL_STATE(3904)] = 161258, - [SMALL_STATE(3905)] = 161269, - [SMALL_STATE(3906)] = 161282, - [SMALL_STATE(3907)] = 161295, - [SMALL_STATE(3908)] = 161308, - [SMALL_STATE(3909)] = 161319, - [SMALL_STATE(3910)] = 161330, - [SMALL_STATE(3911)] = 161341, - [SMALL_STATE(3912)] = 161351, - [SMALL_STATE(3913)] = 161361, - [SMALL_STATE(3914)] = 161371, - [SMALL_STATE(3915)] = 161381, - [SMALL_STATE(3916)] = 161391, - [SMALL_STATE(3917)] = 161401, - [SMALL_STATE(3918)] = 161411, - [SMALL_STATE(3919)] = 161421, - [SMALL_STATE(3920)] = 161429, - [SMALL_STATE(3921)] = 161437, - [SMALL_STATE(3922)] = 161447, - [SMALL_STATE(3923)] = 161457, - [SMALL_STATE(3924)] = 161467, - [SMALL_STATE(3925)] = 161477, - [SMALL_STATE(3926)] = 161485, - [SMALL_STATE(3927)] = 161495, - [SMALL_STATE(3928)] = 161505, - [SMALL_STATE(3929)] = 161513, - [SMALL_STATE(3930)] = 161521, - [SMALL_STATE(3931)] = 161531, - [SMALL_STATE(3932)] = 161541, - [SMALL_STATE(3933)] = 161551, - [SMALL_STATE(3934)] = 161559, - [SMALL_STATE(3935)] = 161569, - [SMALL_STATE(3936)] = 161579, - [SMALL_STATE(3937)] = 161587, - [SMALL_STATE(3938)] = 161597, - [SMALL_STATE(3939)] = 161607, - [SMALL_STATE(3940)] = 161617, - [SMALL_STATE(3941)] = 161627, - [SMALL_STATE(3942)] = 161637, - [SMALL_STATE(3943)] = 161647, - [SMALL_STATE(3944)] = 161655, - [SMALL_STATE(3945)] = 161665, - [SMALL_STATE(3946)] = 161673, - [SMALL_STATE(3947)] = 161683, - [SMALL_STATE(3948)] = 161691, - [SMALL_STATE(3949)] = 161699, - [SMALL_STATE(3950)] = 161709, - [SMALL_STATE(3951)] = 161717, - [SMALL_STATE(3952)] = 161727, - [SMALL_STATE(3953)] = 161737, - [SMALL_STATE(3954)] = 161745, - [SMALL_STATE(3955)] = 161755, - [SMALL_STATE(3956)] = 161763, - [SMALL_STATE(3957)] = 161773, - [SMALL_STATE(3958)] = 161783, - [SMALL_STATE(3959)] = 161791, - [SMALL_STATE(3960)] = 161801, - [SMALL_STATE(3961)] = 161811, - [SMALL_STATE(3962)] = 161819, - [SMALL_STATE(3963)] = 161827, - [SMALL_STATE(3964)] = 161837, - [SMALL_STATE(3965)] = 161845, - [SMALL_STATE(3966)] = 161855, - [SMALL_STATE(3967)] = 161865, - [SMALL_STATE(3968)] = 161873, - [SMALL_STATE(3969)] = 161883, - [SMALL_STATE(3970)] = 161891, - [SMALL_STATE(3971)] = 161901, - [SMALL_STATE(3972)] = 161911, - [SMALL_STATE(3973)] = 161919, - [SMALL_STATE(3974)] = 161929, - [SMALL_STATE(3975)] = 161939, - [SMALL_STATE(3976)] = 161947, - [SMALL_STATE(3977)] = 161955, - [SMALL_STATE(3978)] = 161965, - [SMALL_STATE(3979)] = 161973, - [SMALL_STATE(3980)] = 161981, - [SMALL_STATE(3981)] = 161991, - [SMALL_STATE(3982)] = 161999, - [SMALL_STATE(3983)] = 162007, - [SMALL_STATE(3984)] = 162017, - [SMALL_STATE(3985)] = 162027, - [SMALL_STATE(3986)] = 162035, - [SMALL_STATE(3987)] = 162045, - [SMALL_STATE(3988)] = 162053, - [SMALL_STATE(3989)] = 162063, - [SMALL_STATE(3990)] = 162071, - [SMALL_STATE(3991)] = 162079, - [SMALL_STATE(3992)] = 162087, - [SMALL_STATE(3993)] = 162095, - [SMALL_STATE(3994)] = 162105, - [SMALL_STATE(3995)] = 162115, - [SMALL_STATE(3996)] = 162125, - [SMALL_STATE(3997)] = 162133, - [SMALL_STATE(3998)] = 162141, - [SMALL_STATE(3999)] = 162151, - [SMALL_STATE(4000)] = 162159, - [SMALL_STATE(4001)] = 162167, - [SMALL_STATE(4002)] = 162175, - [SMALL_STATE(4003)] = 162185, - [SMALL_STATE(4004)] = 162195, - [SMALL_STATE(4005)] = 162203, - [SMALL_STATE(4006)] = 162213, - [SMALL_STATE(4007)] = 162221, - [SMALL_STATE(4008)] = 162231, - [SMALL_STATE(4009)] = 162239, - [SMALL_STATE(4010)] = 162249, - [SMALL_STATE(4011)] = 162259, - [SMALL_STATE(4012)] = 162269, - [SMALL_STATE(4013)] = 162276, - [SMALL_STATE(4014)] = 162283, - [SMALL_STATE(4015)] = 162290, - [SMALL_STATE(4016)] = 162297, - [SMALL_STATE(4017)] = 162304, - [SMALL_STATE(4018)] = 162311, - [SMALL_STATE(4019)] = 162318, - [SMALL_STATE(4020)] = 162325, - [SMALL_STATE(4021)] = 162332, - [SMALL_STATE(4022)] = 162339, - [SMALL_STATE(4023)] = 162346, - [SMALL_STATE(4024)] = 162353, - [SMALL_STATE(4025)] = 162360, - [SMALL_STATE(4026)] = 162367, - [SMALL_STATE(4027)] = 162374, - [SMALL_STATE(4028)] = 162381, - [SMALL_STATE(4029)] = 162388, - [SMALL_STATE(4030)] = 162395, - [SMALL_STATE(4031)] = 162402, - [SMALL_STATE(4032)] = 162409, - [SMALL_STATE(4033)] = 162416, - [SMALL_STATE(4034)] = 162423, - [SMALL_STATE(4035)] = 162430, - [SMALL_STATE(4036)] = 162437, - [SMALL_STATE(4037)] = 162444, - [SMALL_STATE(4038)] = 162451, - [SMALL_STATE(4039)] = 162458, - [SMALL_STATE(4040)] = 162465, - [SMALL_STATE(4041)] = 162472, - [SMALL_STATE(4042)] = 162479, - [SMALL_STATE(4043)] = 162486, - [SMALL_STATE(4044)] = 162493, - [SMALL_STATE(4045)] = 162500, - [SMALL_STATE(4046)] = 162507, - [SMALL_STATE(4047)] = 162514, - [SMALL_STATE(4048)] = 162521, - [SMALL_STATE(4049)] = 162528, - [SMALL_STATE(4050)] = 162535, - [SMALL_STATE(4051)] = 162542, - [SMALL_STATE(4052)] = 162549, - [SMALL_STATE(4053)] = 162556, - [SMALL_STATE(4054)] = 162563, - [SMALL_STATE(4055)] = 162570, - [SMALL_STATE(4056)] = 162577, - [SMALL_STATE(4057)] = 162584, - [SMALL_STATE(4058)] = 162591, - [SMALL_STATE(4059)] = 162598, - [SMALL_STATE(4060)] = 162605, - [SMALL_STATE(4061)] = 162612, - [SMALL_STATE(4062)] = 162619, - [SMALL_STATE(4063)] = 162626, - [SMALL_STATE(4064)] = 162633, - [SMALL_STATE(4065)] = 162640, - [SMALL_STATE(4066)] = 162647, - [SMALL_STATE(4067)] = 162654, - [SMALL_STATE(4068)] = 162661, - [SMALL_STATE(4069)] = 162668, - [SMALL_STATE(4070)] = 162675, - [SMALL_STATE(4071)] = 162682, - [SMALL_STATE(4072)] = 162689, - [SMALL_STATE(4073)] = 162696, - [SMALL_STATE(4074)] = 162703, - [SMALL_STATE(4075)] = 162710, - [SMALL_STATE(4076)] = 162717, - [SMALL_STATE(4077)] = 162724, - [SMALL_STATE(4078)] = 162731, - [SMALL_STATE(4079)] = 162738, - [SMALL_STATE(4080)] = 162745, - [SMALL_STATE(4081)] = 162752, - [SMALL_STATE(4082)] = 162759, - [SMALL_STATE(4083)] = 162766, - [SMALL_STATE(4084)] = 162773, - [SMALL_STATE(4085)] = 162780, - [SMALL_STATE(4086)] = 162787, - [SMALL_STATE(4087)] = 162794, - [SMALL_STATE(4088)] = 162801, - [SMALL_STATE(4089)] = 162808, - [SMALL_STATE(4090)] = 162815, - [SMALL_STATE(4091)] = 162822, - [SMALL_STATE(4092)] = 162829, - [SMALL_STATE(4093)] = 162836, - [SMALL_STATE(4094)] = 162843, - [SMALL_STATE(4095)] = 162850, - [SMALL_STATE(4096)] = 162857, - [SMALL_STATE(4097)] = 162864, - [SMALL_STATE(4098)] = 162871, - [SMALL_STATE(4099)] = 162878, - [SMALL_STATE(4100)] = 162885, - [SMALL_STATE(4101)] = 162892, - [SMALL_STATE(4102)] = 162899, - [SMALL_STATE(4103)] = 162906, - [SMALL_STATE(4104)] = 162913, - [SMALL_STATE(4105)] = 162920, - [SMALL_STATE(4106)] = 162927, - [SMALL_STATE(4107)] = 162934, - [SMALL_STATE(4108)] = 162941, - [SMALL_STATE(4109)] = 162948, - [SMALL_STATE(4110)] = 162955, - [SMALL_STATE(4111)] = 162962, - [SMALL_STATE(4112)] = 162969, - [SMALL_STATE(4113)] = 162976, - [SMALL_STATE(4114)] = 162983, - [SMALL_STATE(4115)] = 162990, - [SMALL_STATE(4116)] = 162997, - [SMALL_STATE(4117)] = 163004, - [SMALL_STATE(4118)] = 163011, - [SMALL_STATE(4119)] = 163018, - [SMALL_STATE(4120)] = 163025, - [SMALL_STATE(4121)] = 163032, - [SMALL_STATE(4122)] = 163039, - [SMALL_STATE(4123)] = 163046, - [SMALL_STATE(4124)] = 163053, - [SMALL_STATE(4125)] = 163060, - [SMALL_STATE(4126)] = 163067, - [SMALL_STATE(4127)] = 163074, - [SMALL_STATE(4128)] = 163081, - [SMALL_STATE(4129)] = 163088, - [SMALL_STATE(4130)] = 163095, - [SMALL_STATE(4131)] = 163102, - [SMALL_STATE(4132)] = 163109, - [SMALL_STATE(4133)] = 163116, - [SMALL_STATE(4134)] = 163123, - [SMALL_STATE(4135)] = 163130, - [SMALL_STATE(4136)] = 163137, - [SMALL_STATE(4137)] = 163144, - [SMALL_STATE(4138)] = 163151, - [SMALL_STATE(4139)] = 163158, - [SMALL_STATE(4140)] = 163165, - [SMALL_STATE(4141)] = 163172, - [SMALL_STATE(4142)] = 163179, - [SMALL_STATE(4143)] = 163186, - [SMALL_STATE(4144)] = 163193, - [SMALL_STATE(4145)] = 163200, - [SMALL_STATE(4146)] = 163207, - [SMALL_STATE(4147)] = 163214, - [SMALL_STATE(4148)] = 163221, - [SMALL_STATE(4149)] = 163228, - [SMALL_STATE(4150)] = 163235, - [SMALL_STATE(4151)] = 163242, - [SMALL_STATE(4152)] = 163249, - [SMALL_STATE(4153)] = 163256, - [SMALL_STATE(4154)] = 163263, - [SMALL_STATE(4155)] = 163270, - [SMALL_STATE(4156)] = 163277, - [SMALL_STATE(4157)] = 163284, - [SMALL_STATE(4158)] = 163291, - [SMALL_STATE(4159)] = 163298, - [SMALL_STATE(4160)] = 163305, - [SMALL_STATE(4161)] = 163312, - [SMALL_STATE(4162)] = 163319, - [SMALL_STATE(4163)] = 163326, - [SMALL_STATE(4164)] = 163333, - [SMALL_STATE(4165)] = 163340, - [SMALL_STATE(4166)] = 163347, - [SMALL_STATE(4167)] = 163354, - [SMALL_STATE(4168)] = 163361, - [SMALL_STATE(4169)] = 163368, - [SMALL_STATE(4170)] = 163375, - [SMALL_STATE(4171)] = 163382, - [SMALL_STATE(4172)] = 163389, - [SMALL_STATE(4173)] = 163396, - [SMALL_STATE(4174)] = 163403, - [SMALL_STATE(4175)] = 163410, - [SMALL_STATE(4176)] = 163417, - [SMALL_STATE(4177)] = 163424, - [SMALL_STATE(4178)] = 163431, - [SMALL_STATE(4179)] = 163438, - [SMALL_STATE(4180)] = 163445, - [SMALL_STATE(4181)] = 163452, - [SMALL_STATE(4182)] = 163459, - [SMALL_STATE(4183)] = 163466, - [SMALL_STATE(4184)] = 163473, - [SMALL_STATE(4185)] = 163480, - [SMALL_STATE(4186)] = 163487, - [SMALL_STATE(4187)] = 163494, - [SMALL_STATE(4188)] = 163501, - [SMALL_STATE(4189)] = 163508, - [SMALL_STATE(4190)] = 163515, - [SMALL_STATE(4191)] = 163522, - [SMALL_STATE(4192)] = 163529, - [SMALL_STATE(4193)] = 163536, - [SMALL_STATE(4194)] = 163543, - [SMALL_STATE(4195)] = 163550, - [SMALL_STATE(4196)] = 163557, - [SMALL_STATE(4197)] = 163564, - [SMALL_STATE(4198)] = 163571, - [SMALL_STATE(4199)] = 163578, - [SMALL_STATE(4200)] = 163585, - [SMALL_STATE(4201)] = 163592, - [SMALL_STATE(4202)] = 163599, - [SMALL_STATE(4203)] = 163606, - [SMALL_STATE(4204)] = 163613, - [SMALL_STATE(4205)] = 163620, - [SMALL_STATE(4206)] = 163627, - [SMALL_STATE(4207)] = 163634, - [SMALL_STATE(4208)] = 163641, - [SMALL_STATE(4209)] = 163648, - [SMALL_STATE(4210)] = 163655, - [SMALL_STATE(4211)] = 163662, - [SMALL_STATE(4212)] = 163669, - [SMALL_STATE(4213)] = 163676, - [SMALL_STATE(4214)] = 163683, - [SMALL_STATE(4215)] = 163690, - [SMALL_STATE(4216)] = 163697, - [SMALL_STATE(4217)] = 163704, - [SMALL_STATE(4218)] = 163711, - [SMALL_STATE(4219)] = 163718, - [SMALL_STATE(4220)] = 163725, - [SMALL_STATE(4221)] = 163732, - [SMALL_STATE(4222)] = 163739, - [SMALL_STATE(4223)] = 163746, - [SMALL_STATE(4224)] = 163753, - [SMALL_STATE(4225)] = 163760, - [SMALL_STATE(4226)] = 163767, - [SMALL_STATE(4227)] = 163774, - [SMALL_STATE(4228)] = 163781, - [SMALL_STATE(4229)] = 163788, - [SMALL_STATE(4230)] = 163795, - [SMALL_STATE(4231)] = 163802, - [SMALL_STATE(4232)] = 163809, - [SMALL_STATE(4233)] = 163816, - [SMALL_STATE(4234)] = 163823, - [SMALL_STATE(4235)] = 163830, - [SMALL_STATE(4236)] = 163837, - [SMALL_STATE(4237)] = 163844, - [SMALL_STATE(4238)] = 163851, - [SMALL_STATE(4239)] = 163858, - [SMALL_STATE(4240)] = 163865, - [SMALL_STATE(4241)] = 163872, - [SMALL_STATE(4242)] = 163879, - [SMALL_STATE(4243)] = 163886, - [SMALL_STATE(4244)] = 163893, - [SMALL_STATE(4245)] = 163900, - [SMALL_STATE(4246)] = 163907, - [SMALL_STATE(4247)] = 163914, - [SMALL_STATE(4248)] = 163921, - [SMALL_STATE(4249)] = 163928, - [SMALL_STATE(4250)] = 163935, - [SMALL_STATE(4251)] = 163942, - [SMALL_STATE(4252)] = 163949, - [SMALL_STATE(4253)] = 163956, - [SMALL_STATE(4254)] = 163963, - [SMALL_STATE(4255)] = 163970, - [SMALL_STATE(4256)] = 163977, - [SMALL_STATE(4257)] = 163984, - [SMALL_STATE(4258)] = 163991, - [SMALL_STATE(4259)] = 163998, - [SMALL_STATE(4260)] = 164005, - [SMALL_STATE(4261)] = 164012, - [SMALL_STATE(4262)] = 164019, - [SMALL_STATE(4263)] = 164026, - [SMALL_STATE(4264)] = 164033, - [SMALL_STATE(4265)] = 164040, - [SMALL_STATE(4266)] = 164047, - [SMALL_STATE(4267)] = 164054, - [SMALL_STATE(4268)] = 164061, - [SMALL_STATE(4269)] = 164068, - [SMALL_STATE(4270)] = 164075, - [SMALL_STATE(4271)] = 164082, - [SMALL_STATE(4272)] = 164089, - [SMALL_STATE(4273)] = 164096, - [SMALL_STATE(4274)] = 164103, - [SMALL_STATE(4275)] = 164110, - [SMALL_STATE(4276)] = 164117, - [SMALL_STATE(4277)] = 164124, - [SMALL_STATE(4278)] = 164131, - [SMALL_STATE(4279)] = 164138, - [SMALL_STATE(4280)] = 164145, - [SMALL_STATE(4281)] = 164152, - [SMALL_STATE(4282)] = 164159, - [SMALL_STATE(4283)] = 164166, - [SMALL_STATE(4284)] = 164173, - [SMALL_STATE(4285)] = 164180, - [SMALL_STATE(4286)] = 164187, - [SMALL_STATE(4287)] = 164194, - [SMALL_STATE(4288)] = 164201, - [SMALL_STATE(4289)] = 164208, - [SMALL_STATE(4290)] = 164215, - [SMALL_STATE(4291)] = 164222, - [SMALL_STATE(4292)] = 164229, - [SMALL_STATE(4293)] = 164236, - [SMALL_STATE(4294)] = 164243, - [SMALL_STATE(4295)] = 164250, - [SMALL_STATE(4296)] = 164257, - [SMALL_STATE(4297)] = 164264, - [SMALL_STATE(4298)] = 164271, - [SMALL_STATE(4299)] = 164278, - [SMALL_STATE(4300)] = 164285, - [SMALL_STATE(4301)] = 164292, - [SMALL_STATE(4302)] = 164299, - [SMALL_STATE(4303)] = 164306, - [SMALL_STATE(4304)] = 164313, - [SMALL_STATE(4305)] = 164320, - [SMALL_STATE(4306)] = 164327, - [SMALL_STATE(4307)] = 164334, - [SMALL_STATE(4308)] = 164341, - [SMALL_STATE(4309)] = 164348, - [SMALL_STATE(4310)] = 164355, - [SMALL_STATE(4311)] = 164362, - [SMALL_STATE(4312)] = 164369, - [SMALL_STATE(4313)] = 164376, - [SMALL_STATE(4314)] = 164383, - [SMALL_STATE(4315)] = 164390, - [SMALL_STATE(4316)] = 164397, - [SMALL_STATE(4317)] = 164404, - [SMALL_STATE(4318)] = 164411, - [SMALL_STATE(4319)] = 164418, - [SMALL_STATE(4320)] = 164425, - [SMALL_STATE(4321)] = 164432, - [SMALL_STATE(4322)] = 164439, - [SMALL_STATE(4323)] = 164446, - [SMALL_STATE(4324)] = 164453, - [SMALL_STATE(4325)] = 164460, - [SMALL_STATE(4326)] = 164467, - [SMALL_STATE(4327)] = 164474, - [SMALL_STATE(4328)] = 164481, - [SMALL_STATE(4329)] = 164488, - [SMALL_STATE(4330)] = 164495, - [SMALL_STATE(4331)] = 164502, - [SMALL_STATE(4332)] = 164509, - [SMALL_STATE(4333)] = 164516, - [SMALL_STATE(4334)] = 164523, - [SMALL_STATE(4335)] = 164530, - [SMALL_STATE(4336)] = 164537, - [SMALL_STATE(4337)] = 164544, - [SMALL_STATE(4338)] = 164551, - [SMALL_STATE(4339)] = 164558, - [SMALL_STATE(4340)] = 164565, - [SMALL_STATE(4341)] = 164572, - [SMALL_STATE(4342)] = 164579, - [SMALL_STATE(4343)] = 164586, - [SMALL_STATE(4344)] = 164593, - [SMALL_STATE(4345)] = 164600, - [SMALL_STATE(4346)] = 164607, - [SMALL_STATE(4347)] = 164614, - [SMALL_STATE(4348)] = 164621, - [SMALL_STATE(4349)] = 164628, - [SMALL_STATE(4350)] = 164635, - [SMALL_STATE(4351)] = 164642, - [SMALL_STATE(4352)] = 164649, - [SMALL_STATE(4353)] = 164656, - [SMALL_STATE(4354)] = 164663, - [SMALL_STATE(4355)] = 164670, - [SMALL_STATE(4356)] = 164677, - [SMALL_STATE(4357)] = 164684, - [SMALL_STATE(4358)] = 164691, - [SMALL_STATE(4359)] = 164698, - [SMALL_STATE(4360)] = 164705, - [SMALL_STATE(4361)] = 164712, - [SMALL_STATE(4362)] = 164719, - [SMALL_STATE(4363)] = 164726, - [SMALL_STATE(4364)] = 164733, - [SMALL_STATE(4365)] = 164740, - [SMALL_STATE(4366)] = 164747, - [SMALL_STATE(4367)] = 164754, - [SMALL_STATE(4368)] = 164761, - [SMALL_STATE(4369)] = 164768, - [SMALL_STATE(4370)] = 164775, - [SMALL_STATE(4371)] = 164782, - [SMALL_STATE(4372)] = 164789, - [SMALL_STATE(4373)] = 164796, - [SMALL_STATE(4374)] = 164803, - [SMALL_STATE(4375)] = 164810, - [SMALL_STATE(4376)] = 164817, - [SMALL_STATE(4377)] = 164824, - [SMALL_STATE(4378)] = 164831, - [SMALL_STATE(4379)] = 164838, - [SMALL_STATE(4380)] = 164845, - [SMALL_STATE(4381)] = 164852, - [SMALL_STATE(4382)] = 164859, - [SMALL_STATE(4383)] = 164866, - [SMALL_STATE(4384)] = 164873, - [SMALL_STATE(4385)] = 164880, - [SMALL_STATE(4386)] = 164887, - [SMALL_STATE(4387)] = 164894, - [SMALL_STATE(4388)] = 164901, - [SMALL_STATE(4389)] = 164908, - [SMALL_STATE(4390)] = 164915, - [SMALL_STATE(4391)] = 164922, - [SMALL_STATE(4392)] = 164929, - [SMALL_STATE(4393)] = 164936, - [SMALL_STATE(4394)] = 164943, - [SMALL_STATE(4395)] = 164950, - [SMALL_STATE(4396)] = 164957, - [SMALL_STATE(4397)] = 164964, - [SMALL_STATE(4398)] = 164971, - [SMALL_STATE(4399)] = 164978, - [SMALL_STATE(4400)] = 164985, - [SMALL_STATE(4401)] = 164992, - [SMALL_STATE(4402)] = 164999, - [SMALL_STATE(4403)] = 165006, - [SMALL_STATE(4404)] = 165013, - [SMALL_STATE(4405)] = 165020, - [SMALL_STATE(4406)] = 165027, - [SMALL_STATE(4407)] = 165034, - [SMALL_STATE(4408)] = 165041, - [SMALL_STATE(4409)] = 165048, - [SMALL_STATE(4410)] = 165055, - [SMALL_STATE(4411)] = 165062, - [SMALL_STATE(4412)] = 165069, - [SMALL_STATE(4413)] = 165076, - [SMALL_STATE(4414)] = 165083, - [SMALL_STATE(4415)] = 165090, - [SMALL_STATE(4416)] = 165097, - [SMALL_STATE(4417)] = 165104, - [SMALL_STATE(4418)] = 165111, - [SMALL_STATE(4419)] = 165118, - [SMALL_STATE(4420)] = 165125, - [SMALL_STATE(4421)] = 165132, - [SMALL_STATE(4422)] = 165139, - [SMALL_STATE(4423)] = 165146, - [SMALL_STATE(4424)] = 165153, - [SMALL_STATE(4425)] = 165160, - [SMALL_STATE(4426)] = 165167, - [SMALL_STATE(4427)] = 165174, - [SMALL_STATE(4428)] = 165181, - [SMALL_STATE(4429)] = 165188, - [SMALL_STATE(4430)] = 165195, - [SMALL_STATE(4431)] = 165202, - [SMALL_STATE(4432)] = 165209, - [SMALL_STATE(4433)] = 165216, - [SMALL_STATE(4434)] = 165223, - [SMALL_STATE(4435)] = 165230, - [SMALL_STATE(4436)] = 165237, - [SMALL_STATE(4437)] = 165244, - [SMALL_STATE(4438)] = 165251, - [SMALL_STATE(4439)] = 165258, - [SMALL_STATE(4440)] = 165265, - [SMALL_STATE(4441)] = 165272, - [SMALL_STATE(4442)] = 165279, - [SMALL_STATE(4443)] = 165286, - [SMALL_STATE(4444)] = 165293, - [SMALL_STATE(4445)] = 165300, - [SMALL_STATE(4446)] = 165307, - [SMALL_STATE(4447)] = 165314, - [SMALL_STATE(4448)] = 165321, - [SMALL_STATE(4449)] = 165328, - [SMALL_STATE(4450)] = 165335, - [SMALL_STATE(4451)] = 165342, - [SMALL_STATE(4452)] = 165349, - [SMALL_STATE(4453)] = 165356, - [SMALL_STATE(4454)] = 165363, - [SMALL_STATE(4455)] = 165370, - [SMALL_STATE(4456)] = 165377, - [SMALL_STATE(4457)] = 165384, - [SMALL_STATE(4458)] = 165391, - [SMALL_STATE(4459)] = 165398, - [SMALL_STATE(4460)] = 165405, - [SMALL_STATE(4461)] = 165412, - [SMALL_STATE(4462)] = 165419, - [SMALL_STATE(4463)] = 165426, - [SMALL_STATE(4464)] = 165433, - [SMALL_STATE(4465)] = 165440, - [SMALL_STATE(4466)] = 165447, - [SMALL_STATE(4467)] = 165454, - [SMALL_STATE(4468)] = 165461, - [SMALL_STATE(4469)] = 165468, - [SMALL_STATE(4470)] = 165475, - [SMALL_STATE(4471)] = 165482, - [SMALL_STATE(4472)] = 165489, - [SMALL_STATE(4473)] = 165496, - [SMALL_STATE(4474)] = 165503, - [SMALL_STATE(4475)] = 165510, - [SMALL_STATE(4476)] = 165517, - [SMALL_STATE(4477)] = 165524, - [SMALL_STATE(4478)] = 165531, - [SMALL_STATE(4479)] = 165538, - [SMALL_STATE(4480)] = 165545, - [SMALL_STATE(4481)] = 165552, - [SMALL_STATE(4482)] = 165559, - [SMALL_STATE(4483)] = 165566, - [SMALL_STATE(4484)] = 165573, - [SMALL_STATE(4485)] = 165580, - [SMALL_STATE(4486)] = 165587, - [SMALL_STATE(4487)] = 165594, - [SMALL_STATE(4488)] = 165601, - [SMALL_STATE(4489)] = 165608, - [SMALL_STATE(4490)] = 165615, - [SMALL_STATE(4491)] = 165622, - [SMALL_STATE(4492)] = 165629, - [SMALL_STATE(4493)] = 165636, - [SMALL_STATE(4494)] = 165643, - [SMALL_STATE(4495)] = 165650, - [SMALL_STATE(4496)] = 165657, - [SMALL_STATE(4497)] = 165664, - [SMALL_STATE(4498)] = 165671, - [SMALL_STATE(4499)] = 165678, - [SMALL_STATE(4500)] = 165685, - [SMALL_STATE(4501)] = 165692, - [SMALL_STATE(4502)] = 165699, - [SMALL_STATE(4503)] = 165706, - [SMALL_STATE(4504)] = 165713, - [SMALL_STATE(4505)] = 165720, - [SMALL_STATE(4506)] = 165727, - [SMALL_STATE(4507)] = 165734, - [SMALL_STATE(4508)] = 165741, - [SMALL_STATE(4509)] = 165748, - [SMALL_STATE(4510)] = 165755, - [SMALL_STATE(4511)] = 165762, - [SMALL_STATE(4512)] = 165769, - [SMALL_STATE(4513)] = 165776, - [SMALL_STATE(4514)] = 165783, - [SMALL_STATE(4515)] = 165790, - [SMALL_STATE(4516)] = 165797, - [SMALL_STATE(4517)] = 165804, - [SMALL_STATE(4518)] = 165811, - [SMALL_STATE(4519)] = 165818, - [SMALL_STATE(4520)] = 165825, - [SMALL_STATE(4521)] = 165832, - [SMALL_STATE(4522)] = 165839, - [SMALL_STATE(4523)] = 165846, - [SMALL_STATE(4524)] = 165853, - [SMALL_STATE(4525)] = 165860, - [SMALL_STATE(4526)] = 165867, - [SMALL_STATE(4527)] = 165874, - [SMALL_STATE(4528)] = 165881, - [SMALL_STATE(4529)] = 165888, - [SMALL_STATE(4530)] = 165895, - [SMALL_STATE(4531)] = 165902, - [SMALL_STATE(4532)] = 165909, - [SMALL_STATE(4533)] = 165916, - [SMALL_STATE(4534)] = 165923, - [SMALL_STATE(4535)] = 165930, - [SMALL_STATE(4536)] = 165937, - [SMALL_STATE(4537)] = 165944, - [SMALL_STATE(4538)] = 165951, - [SMALL_STATE(4539)] = 165958, - [SMALL_STATE(4540)] = 165965, - [SMALL_STATE(4541)] = 165972, - [SMALL_STATE(4542)] = 165979, - [SMALL_STATE(4543)] = 165986, - [SMALL_STATE(4544)] = 165993, - [SMALL_STATE(4545)] = 166000, - [SMALL_STATE(4546)] = 166007, - [SMALL_STATE(4547)] = 166014, - [SMALL_STATE(4548)] = 166021, - [SMALL_STATE(4549)] = 166028, - [SMALL_STATE(4550)] = 166035, - [SMALL_STATE(4551)] = 166042, - [SMALL_STATE(4552)] = 166049, - [SMALL_STATE(4553)] = 166056, - [SMALL_STATE(4554)] = 166063, - [SMALL_STATE(4555)] = 166070, - [SMALL_STATE(4556)] = 166077, - [SMALL_STATE(4557)] = 166084, - [SMALL_STATE(4558)] = 166091, - [SMALL_STATE(4559)] = 166098, - [SMALL_STATE(4560)] = 166105, - [SMALL_STATE(4561)] = 166112, - [SMALL_STATE(4562)] = 166119, - [SMALL_STATE(4563)] = 166126, - [SMALL_STATE(4564)] = 166133, - [SMALL_STATE(4565)] = 166140, - [SMALL_STATE(4566)] = 166147, - [SMALL_STATE(4567)] = 166154, - [SMALL_STATE(4568)] = 166161, - [SMALL_STATE(4569)] = 166168, - [SMALL_STATE(4570)] = 166175, + [SMALL_STATE(414)] = 0, + [SMALL_STATE(415)] = 79, + [SMALL_STATE(416)] = 150, + [SMALL_STATE(417)] = 290, + [SMALL_STATE(418)] = 430, + [SMALL_STATE(419)] = 570, + [SMALL_STATE(420)] = 710, + [SMALL_STATE(421)] = 815, + [SMALL_STATE(422)] = 920, + [SMALL_STATE(423)] = 1025, + [SMALL_STATE(424)] = 1129, + [SMALL_STATE(425)] = 1233, + [SMALL_STATE(426)] = 1337, + [SMALL_STATE(427)] = 1441, + [SMALL_STATE(428)] = 1545, + [SMALL_STATE(429)] = 1649, + [SMALL_STATE(430)] = 1753, + [SMALL_STATE(431)] = 1857, + [SMALL_STATE(432)] = 1960, + [SMALL_STATE(433)] = 2063, + [SMALL_STATE(434)] = 2166, + [SMALL_STATE(435)] = 2269, + [SMALL_STATE(436)] = 2372, + [SMALL_STATE(437)] = 2475, + [SMALL_STATE(438)] = 2546, + [SMALL_STATE(439)] = 2649, + [SMALL_STATE(440)] = 2752, + [SMALL_STATE(441)] = 2823, + [SMALL_STATE(442)] = 2926, + [SMALL_STATE(443)] = 3029, + [SMALL_STATE(444)] = 3132, + [SMALL_STATE(445)] = 3230, + [SMALL_STATE(446)] = 3328, + [SMALL_STATE(447)] = 3398, + [SMALL_STATE(448)] = 3500, + [SMALL_STATE(449)] = 3602, + [SMALL_STATE(450)] = 3672, + [SMALL_STATE(451)] = 3774, + [SMALL_STATE(452)] = 3876, + [SMALL_STATE(453)] = 3978, + [SMALL_STATE(454)] = 4076, + [SMALL_STATE(455)] = 4178, + [SMALL_STATE(456)] = 4280, + [SMALL_STATE(457)] = 4382, + [SMALL_STATE(458)] = 4484, + [SMALL_STATE(459)] = 4586, + [SMALL_STATE(460)] = 4686, + [SMALL_STATE(461)] = 4788, + [SMALL_STATE(462)] = 4890, + [SMALL_STATE(463)] = 4992, + [SMALL_STATE(464)] = 5092, + [SMALL_STATE(465)] = 5193, + [SMALL_STATE(466)] = 5294, + [SMALL_STATE(467)] = 5363, + [SMALL_STATE(468)] = 5462, + [SMALL_STATE(469)] = 5531, + [SMALL_STATE(470)] = 5600, + [SMALL_STATE(471)] = 5669, + [SMALL_STATE(472)] = 5766, + [SMALL_STATE(473)] = 5835, + [SMALL_STATE(474)] = 5934, + [SMALL_STATE(475)] = 6031, + [SMALL_STATE(476)] = 6100, + [SMALL_STATE(477)] = 6169, + [SMALL_STATE(478)] = 6268, + [SMALL_STATE(479)] = 6365, + [SMALL_STATE(480)] = 6466, + [SMALL_STATE(481)] = 6567, + [SMALL_STATE(482)] = 6668, + [SMALL_STATE(483)] = 6767, + [SMALL_STATE(484)] = 6836, + [SMALL_STATE(485)] = 6896, + [SMALL_STATE(486)] = 6964, + [SMALL_STATE(487)] = 7032, + [SMALL_STATE(488)] = 7100, + [SMALL_STATE(489)] = 7196, + [SMALL_STATE(490)] = 7264, + [SMALL_STATE(491)] = 7360, + [SMALL_STATE(492)] = 7456, + [SMALL_STATE(493)] = 7552, + [SMALL_STATE(494)] = 7620, + [SMALL_STATE(495)] = 7688, + [SMALL_STATE(496)] = 7756, + [SMALL_STATE(497)] = 7852, + [SMALL_STATE(498)] = 7920, + [SMALL_STATE(499)] = 8016, + [SMALL_STATE(500)] = 8083, + [SMALL_STATE(501)] = 8150, + [SMALL_STATE(502)] = 8245, + [SMALL_STATE(503)] = 8312, + [SMALL_STATE(504)] = 8375, + [SMALL_STATE(505)] = 8442, + [SMALL_STATE(506)] = 8541, + [SMALL_STATE(507)] = 8608, + [SMALL_STATE(508)] = 8675, + [SMALL_STATE(509)] = 8742, + [SMALL_STATE(510)] = 8841, + [SMALL_STATE(511)] = 8908, + [SMALL_STATE(512)] = 9003, + [SMALL_STATE(513)] = 9066, + [SMALL_STATE(514)] = 9161, + [SMALL_STATE(515)] = 9224, + [SMALL_STATE(516)] = 9291, + [SMALL_STATE(517)] = 9384, + [SMALL_STATE(518)] = 9451, + [SMALL_STATE(519)] = 9544, + [SMALL_STATE(520)] = 9643, + [SMALL_STATE(521)] = 9706, + [SMALL_STATE(522)] = 9824, + [SMALL_STATE(523)] = 9942, + [SMALL_STATE(524)] = 10008, + [SMALL_STATE(525)] = 10074, + [SMALL_STATE(526)] = 10140, + [SMALL_STATE(527)] = 10206, + [SMALL_STATE(528)] = 10306, + [SMALL_STATE(529)] = 10372, + [SMALL_STATE(530)] = 10472, + [SMALL_STATE(531)] = 10570, + [SMALL_STATE(532)] = 10668, + [SMALL_STATE(533)] = 10766, + [SMALL_STATE(534)] = 10884, + [SMALL_STATE(535)] = 10982, + [SMALL_STATE(536)] = 11100, + [SMALL_STATE(537)] = 11218, + [SMALL_STATE(538)] = 11284, + [SMALL_STATE(539)] = 11384, + [SMALL_STATE(540)] = 11450, + [SMALL_STATE(541)] = 11548, + [SMALL_STATE(542)] = 11666, + [SMALL_STATE(543)] = 11732, + [SMALL_STATE(544)] = 11850, + [SMALL_STATE(545)] = 11968, + [SMALL_STATE(546)] = 12067, + [SMALL_STATE(547)] = 12166, + [SMALL_STATE(548)] = 12237, + [SMALL_STATE(549)] = 12316, + [SMALL_STATE(550)] = 12415, + [SMALL_STATE(551)] = 12514, + [SMALL_STATE(552)] = 12579, + [SMALL_STATE(553)] = 12644, + [SMALL_STATE(554)] = 12709, + [SMALL_STATE(555)] = 12774, + [SMALL_STATE(556)] = 12843, + [SMALL_STATE(557)] = 12942, + [SMALL_STATE(558)] = 13021, + [SMALL_STATE(559)] = 13089, + [SMALL_STATE(560)] = 13159, + [SMALL_STATE(561)] = 13223, + [SMALL_STATE(562)] = 13287, + [SMALL_STATE(563)] = 13345, + [SMALL_STATE(564)] = 13437, + [SMALL_STATE(565)] = 13515, + [SMALL_STATE(566)] = 13607, + [SMALL_STATE(567)] = 13663, + [SMALL_STATE(568)] = 13719, + [SMALL_STATE(569)] = 13783, + [SMALL_STATE(570)] = 13861, + [SMALL_STATE(571)] = 13919, + [SMALL_STATE(572)] = 14011, + [SMALL_STATE(573)] = 14074, + [SMALL_STATE(574)] = 14137, + [SMALL_STATE(575)] = 14198, + [SMALL_STATE(576)] = 14261, + [SMALL_STATE(577)] = 14322, + [SMALL_STATE(578)] = 14391, + [SMALL_STATE(579)] = 14458, + [SMALL_STATE(580)] = 14535, + [SMALL_STATE(581)] = 14598, + [SMALL_STATE(582)] = 14661, + [SMALL_STATE(583)] = 14718, + [SMALL_STATE(584)] = 14795, + [SMALL_STATE(585)] = 14888, + [SMALL_STATE(586)] = 14951, + [SMALL_STATE(587)] = 15012, + [SMALL_STATE(588)] = 15073, + [SMALL_STATE(589)] = 15134, + [SMALL_STATE(590)] = 15189, + [SMALL_STATE(591)] = 15252, + [SMALL_STATE(592)] = 15315, + [SMALL_STATE(593)] = 15384, + [SMALL_STATE(594)] = 15451, + [SMALL_STATE(595)] = 15514, + [SMALL_STATE(596)] = 15575, + [SMALL_STATE(597)] = 15636, + [SMALL_STATE(598)] = 15693, + [SMALL_STATE(599)] = 15756, + [SMALL_STATE(600)] = 15817, + [SMALL_STATE(601)] = 15910, + [SMALL_STATE(602)] = 15987, + [SMALL_STATE(603)] = 16050, + [SMALL_STATE(604)] = 16127, + [SMALL_STATE(605)] = 16188, + [SMALL_STATE(606)] = 16249, + [SMALL_STATE(607)] = 16342, + [SMALL_STATE(608)] = 16408, + [SMALL_STATE(609)] = 16468, + [SMALL_STATE(610)] = 16528, + [SMALL_STATE(611)] = 16590, + [SMALL_STATE(612)] = 16652, + [SMALL_STATE(613)] = 16712, + [SMALL_STATE(614)] = 16772, + [SMALL_STATE(615)] = 16826, + [SMALL_STATE(616)] = 16880, + [SMALL_STATE(617)] = 16934, + [SMALL_STATE(618)] = 16988, + [SMALL_STATE(619)] = 17050, + [SMALL_STATE(620)] = 17104, + [SMALL_STATE(621)] = 17158, + [SMALL_STATE(622)] = 17218, + [SMALL_STATE(623)] = 17292, + [SMALL_STATE(624)] = 17346, + [SMALL_STATE(625)] = 17408, + [SMALL_STATE(626)] = 17470, + [SMALL_STATE(627)] = 17546, + [SMALL_STATE(628)] = 17612, + [SMALL_STATE(629)] = 17666, + [SMALL_STATE(630)] = 17720, + [SMALL_STATE(631)] = 17774, + [SMALL_STATE(632)] = 17848, + [SMALL_STATE(633)] = 17916, + [SMALL_STATE(634)] = 17970, + [SMALL_STATE(635)] = 18030, + [SMALL_STATE(636)] = 18090, + [SMALL_STATE(637)] = 18152, + [SMALL_STATE(638)] = 18206, + [SMALL_STATE(639)] = 18266, + [SMALL_STATE(640)] = 18340, + [SMALL_STATE(641)] = 18400, + [SMALL_STATE(642)] = 18462, + [SMALL_STATE(643)] = 18524, + [SMALL_STATE(644)] = 18586, + [SMALL_STATE(645)] = 18640, + [SMALL_STATE(646)] = 18694, + [SMALL_STATE(647)] = 18756, + [SMALL_STATE(648)] = 18816, + [SMALL_STATE(649)] = 18884, + [SMALL_STATE(650)] = 18938, + [SMALL_STATE(651)] = 18998, + [SMALL_STATE(652)] = 19060, + [SMALL_STATE(653)] = 19122, + [SMALL_STATE(654)] = 19184, + [SMALL_STATE(655)] = 19244, + [SMALL_STATE(656)] = 19298, + [SMALL_STATE(657)] = 19352, + [SMALL_STATE(658)] = 19412, + [SMALL_STATE(659)] = 19474, + [SMALL_STATE(660)] = 19534, + [SMALL_STATE(661)] = 19594, + [SMALL_STATE(662)] = 19654, + [SMALL_STATE(663)] = 19708, + [SMALL_STATE(664)] = 19770, + [SMALL_STATE(665)] = 19830, + [SMALL_STATE(666)] = 19892, + [SMALL_STATE(667)] = 19954, + [SMALL_STATE(668)] = 20016, + [SMALL_STATE(669)] = 20090, + [SMALL_STATE(670)] = 20144, + [SMALL_STATE(671)] = 20204, + [SMALL_STATE(672)] = 20280, + [SMALL_STATE(673)] = 20333, + [SMALL_STATE(674)] = 20386, + [SMALL_STATE(675)] = 20445, + [SMALL_STATE(676)] = 20504, + [SMALL_STATE(677)] = 20563, + [SMALL_STATE(678)] = 20622, + [SMALL_STATE(679)] = 20683, + [SMALL_STATE(680)] = 20736, + [SMALL_STATE(681)] = 20797, + [SMALL_STATE(682)] = 20856, + [SMALL_STATE(683)] = 20915, + [SMALL_STATE(684)] = 20974, + [SMALL_STATE(685)] = 21033, + [SMALL_STATE(686)] = 21086, + [SMALL_STATE(687)] = 21145, + [SMALL_STATE(688)] = 21198, + [SMALL_STATE(689)] = 21257, + [SMALL_STATE(690)] = 21316, + [SMALL_STATE(691)] = 21375, + [SMALL_STATE(692)] = 21428, + [SMALL_STATE(693)] = 21487, + [SMALL_STATE(694)] = 21546, + [SMALL_STATE(695)] = 21599, + [SMALL_STATE(696)] = 21658, + [SMALL_STATE(697)] = 21711, + [SMALL_STATE(698)] = 21768, + [SMALL_STATE(699)] = 21827, + [SMALL_STATE(700)] = 21886, + [SMALL_STATE(701)] = 21945, + [SMALL_STATE(702)] = 22004, + [SMALL_STATE(703)] = 22057, + [SMALL_STATE(704)] = 22110, + [SMALL_STATE(705)] = 22169, + [SMALL_STATE(706)] = 22222, + [SMALL_STATE(707)] = 22275, + [SMALL_STATE(708)] = 22332, + [SMALL_STATE(709)] = 22391, + [SMALL_STATE(710)] = 22444, + [SMALL_STATE(711)] = 22497, + [SMALL_STATE(712)] = 22556, + [SMALL_STATE(713)] = 22609, + [SMALL_STATE(714)] = 22668, + [SMALL_STATE(715)] = 22727, + [SMALL_STATE(716)] = 22786, + [SMALL_STATE(717)] = 22839, + [SMALL_STATE(718)] = 22898, + [SMALL_STATE(719)] = 22957, + [SMALL_STATE(720)] = 23010, + [SMALL_STATE(721)] = 23069, + [SMALL_STATE(722)] = 23128, + [SMALL_STATE(723)] = 23181, + [SMALL_STATE(724)] = 23234, + [SMALL_STATE(725)] = 23293, + [SMALL_STATE(726)] = 23346, + [SMALL_STATE(727)] = 23407, + [SMALL_STATE(728)] = 23460, + [SMALL_STATE(729)] = 23519, + [SMALL_STATE(730)] = 23572, + [SMALL_STATE(731)] = 23631, + [SMALL_STATE(732)] = 23690, + [SMALL_STATE(733)] = 23743, + [SMALL_STATE(734)] = 23796, + [SMALL_STATE(735)] = 23849, + [SMALL_STATE(736)] = 23908, + [SMALL_STATE(737)] = 23969, + [SMALL_STATE(738)] = 24030, + [SMALL_STATE(739)] = 24083, + [SMALL_STATE(740)] = 24142, + [SMALL_STATE(741)] = 24195, + [SMALL_STATE(742)] = 24248, + [SMALL_STATE(743)] = 24307, + [SMALL_STATE(744)] = 24366, + [SMALL_STATE(745)] = 24419, + [SMALL_STATE(746)] = 24472, + [SMALL_STATE(747)] = 24525, + [SMALL_STATE(748)] = 24584, + [SMALL_STATE(749)] = 24643, + [SMALL_STATE(750)] = 24696, + [SMALL_STATE(751)] = 24749, + [SMALL_STATE(752)] = 24802, + [SMALL_STATE(753)] = 24861, + [SMALL_STATE(754)] = 24920, + [SMALL_STATE(755)] = 24977, + [SMALL_STATE(756)] = 25030, + [SMALL_STATE(757)] = 25083, + [SMALL_STATE(758)] = 25140, + [SMALL_STATE(759)] = 25193, + [SMALL_STATE(760)] = 25252, + [SMALL_STATE(761)] = 25311, + [SMALL_STATE(762)] = 25372, + [SMALL_STATE(763)] = 25425, + [SMALL_STATE(764)] = 25484, + [SMALL_STATE(765)] = 25536, + [SMALL_STATE(766)] = 25594, + [SMALL_STATE(767)] = 25646, + [SMALL_STATE(768)] = 25698, + [SMALL_STATE(769)] = 25750, + [SMALL_STATE(770)] = 25802, + [SMALL_STATE(771)] = 25854, + [SMALL_STATE(772)] = 25912, + [SMALL_STATE(773)] = 25970, + [SMALL_STATE(774)] = 26028, + [SMALL_STATE(775)] = 26086, + [SMALL_STATE(776)] = 26138, + [SMALL_STATE(777)] = 26190, + [SMALL_STATE(778)] = 26242, + [SMALL_STATE(779)] = 26294, + [SMALL_STATE(780)] = 26346, + [SMALL_STATE(781)] = 26398, + [SMALL_STATE(782)] = 26456, + [SMALL_STATE(783)] = 26508, + [SMALL_STATE(784)] = 26566, + [SMALL_STATE(785)] = 26618, + [SMALL_STATE(786)] = 26670, + [SMALL_STATE(787)] = 26722, + [SMALL_STATE(788)] = 26780, + [SMALL_STATE(789)] = 26832, + [SMALL_STATE(790)] = 26890, + [SMALL_STATE(791)] = 26942, + [SMALL_STATE(792)] = 26994, + [SMALL_STATE(793)] = 27046, + [SMALL_STATE(794)] = 27104, + [SMALL_STATE(795)] = 27156, + [SMALL_STATE(796)] = 27208, + [SMALL_STATE(797)] = 27266, + [SMALL_STATE(798)] = 27318, + [SMALL_STATE(799)] = 27370, + [SMALL_STATE(800)] = 27422, + [SMALL_STATE(801)] = 27480, + [SMALL_STATE(802)] = 27532, + [SMALL_STATE(803)] = 27590, + [SMALL_STATE(804)] = 27648, + [SMALL_STATE(805)] = 27700, + [SMALL_STATE(806)] = 27752, + [SMALL_STATE(807)] = 27810, + [SMALL_STATE(808)] = 27862, + [SMALL_STATE(809)] = 27962, + [SMALL_STATE(810)] = 28020, + [SMALL_STATE(811)] = 28076, + [SMALL_STATE(812)] = 28128, + [SMALL_STATE(813)] = 28180, + [SMALL_STATE(814)] = 28232, + [SMALL_STATE(815)] = 28332, + [SMALL_STATE(816)] = 28390, + [SMALL_STATE(817)] = 28448, + [SMALL_STATE(818)] = 28500, + [SMALL_STATE(819)] = 28552, + [SMALL_STATE(820)] = 28604, + [SMALL_STATE(821)] = 28662, + [SMALL_STATE(822)] = 28714, + [SMALL_STATE(823)] = 28766, + [SMALL_STATE(824)] = 28818, + [SMALL_STATE(825)] = 28874, + [SMALL_STATE(826)] = 28932, + [SMALL_STATE(827)] = 28984, + [SMALL_STATE(828)] = 29042, + [SMALL_STATE(829)] = 29094, + [SMALL_STATE(830)] = 29150, + [SMALL_STATE(831)] = 29202, + [SMALL_STATE(832)] = 29254, + [SMALL_STATE(833)] = 29306, + [SMALL_STATE(834)] = 29406, + [SMALL_STATE(835)] = 29458, + [SMALL_STATE(836)] = 29510, + [SMALL_STATE(837)] = 29562, + [SMALL_STATE(838)] = 29662, + [SMALL_STATE(839)] = 29714, + [SMALL_STATE(840)] = 29766, + [SMALL_STATE(841)] = 29818, + [SMALL_STATE(842)] = 29876, + [SMALL_STATE(843)] = 29934, + [SMALL_STATE(844)] = 29992, + [SMALL_STATE(845)] = 30044, + [SMALL_STATE(846)] = 30096, + [SMALL_STATE(847)] = 30148, + [SMALL_STATE(848)] = 30206, + [SMALL_STATE(849)] = 30258, + [SMALL_STATE(850)] = 30314, + [SMALL_STATE(851)] = 30366, + [SMALL_STATE(852)] = 30418, + [SMALL_STATE(853)] = 30474, + [SMALL_STATE(854)] = 30526, + [SMALL_STATE(855)] = 30578, + [SMALL_STATE(856)] = 30630, + [SMALL_STATE(857)] = 30682, + [SMALL_STATE(858)] = 30734, + [SMALL_STATE(859)] = 30786, + [SMALL_STATE(860)] = 30838, + [SMALL_STATE(861)] = 30896, + [SMALL_STATE(862)] = 30948, + [SMALL_STATE(863)] = 31000, + [SMALL_STATE(864)] = 31052, + [SMALL_STATE(865)] = 31104, + [SMALL_STATE(866)] = 31204, + [SMALL_STATE(867)] = 31262, + [SMALL_STATE(868)] = 31314, + [SMALL_STATE(869)] = 31366, + [SMALL_STATE(870)] = 31418, + [SMALL_STATE(871)] = 31476, + [SMALL_STATE(872)] = 31528, + [SMALL_STATE(873)] = 31580, + [SMALL_STATE(874)] = 31632, + [SMALL_STATE(875)] = 31690, + [SMALL_STATE(876)] = 31742, + [SMALL_STATE(877)] = 31794, + [SMALL_STATE(878)] = 31894, + [SMALL_STATE(879)] = 31946, + [SMALL_STATE(880)] = 31998, + [SMALL_STATE(881)] = 32056, + [SMALL_STATE(882)] = 32108, + [SMALL_STATE(883)] = 32166, + [SMALL_STATE(884)] = 32218, + [SMALL_STATE(885)] = 32270, + [SMALL_STATE(886)] = 32322, + [SMALL_STATE(887)] = 32380, + [SMALL_STATE(888)] = 32432, + [SMALL_STATE(889)] = 32490, + [SMALL_STATE(890)] = 32542, + [SMALL_STATE(891)] = 32600, + [SMALL_STATE(892)] = 32652, + [SMALL_STATE(893)] = 32704, + [SMALL_STATE(894)] = 32756, + [SMALL_STATE(895)] = 32808, + [SMALL_STATE(896)] = 32860, + [SMALL_STATE(897)] = 32912, + [SMALL_STATE(898)] = 33012, + [SMALL_STATE(899)] = 33064, + [SMALL_STATE(900)] = 33164, + [SMALL_STATE(901)] = 33216, + [SMALL_STATE(902)] = 33268, + [SMALL_STATE(903)] = 33320, + [SMALL_STATE(904)] = 33372, + [SMALL_STATE(905)] = 33424, + [SMALL_STATE(906)] = 33480, + [SMALL_STATE(907)] = 33538, + [SMALL_STATE(908)] = 33590, + [SMALL_STATE(909)] = 33646, + [SMALL_STATE(910)] = 33704, + [SMALL_STATE(911)] = 33756, + [SMALL_STATE(912)] = 33814, + [SMALL_STATE(913)] = 33866, + [SMALL_STATE(914)] = 33918, + [SMALL_STATE(915)] = 33976, + [SMALL_STATE(916)] = 34034, + [SMALL_STATE(917)] = 34086, + [SMALL_STATE(918)] = 34144, + [SMALL_STATE(919)] = 34202, + [SMALL_STATE(920)] = 34259, + [SMALL_STATE(921)] = 34316, + [SMALL_STATE(922)] = 34373, + [SMALL_STATE(923)] = 34424, + [SMALL_STATE(924)] = 34475, + [SMALL_STATE(925)] = 34526, + [SMALL_STATE(926)] = 34577, + [SMALL_STATE(927)] = 34634, + [SMALL_STATE(928)] = 34685, + [SMALL_STATE(929)] = 34742, + [SMALL_STATE(930)] = 34799, + [SMALL_STATE(931)] = 34854, + [SMALL_STATE(932)] = 34905, + [SMALL_STATE(933)] = 34956, + [SMALL_STATE(934)] = 35013, + [SMALL_STATE(935)] = 35064, + [SMALL_STATE(936)] = 35115, + [SMALL_STATE(937)] = 35166, + [SMALL_STATE(938)] = 35223, + [SMALL_STATE(939)] = 35274, + [SMALL_STATE(940)] = 35331, + [SMALL_STATE(941)] = 35386, + [SMALL_STATE(942)] = 35437, + [SMALL_STATE(943)] = 35488, + [SMALL_STATE(944)] = 35539, + [SMALL_STATE(945)] = 35590, + [SMALL_STATE(946)] = 35641, + [SMALL_STATE(947)] = 35698, + [SMALL_STATE(948)] = 35749, + [SMALL_STATE(949)] = 35800, + [SMALL_STATE(950)] = 35851, + [SMALL_STATE(951)] = 35902, + [SMALL_STATE(952)] = 35953, + [SMALL_STATE(953)] = 36004, + [SMALL_STATE(954)] = 36061, + [SMALL_STATE(955)] = 36118, + [SMALL_STATE(956)] = 36173, + [SMALL_STATE(957)] = 36224, + [SMALL_STATE(958)] = 36275, + [SMALL_STATE(959)] = 36330, + [SMALL_STATE(960)] = 36393, + [SMALL_STATE(961)] = 36458, + [SMALL_STATE(962)] = 36553, + [SMALL_STATE(963)] = 36610, + [SMALL_STATE(964)] = 36667, + [SMALL_STATE(965)] = 36724, + [SMALL_STATE(966)] = 36779, + [SMALL_STATE(967)] = 36834, + [SMALL_STATE(968)] = 36891, + [SMALL_STATE(969)] = 36948, + [SMALL_STATE(970)] = 36999, + [SMALL_STATE(971)] = 37056, + [SMALL_STATE(972)] = 37113, + [SMALL_STATE(973)] = 37164, + [SMALL_STATE(974)] = 37215, + [SMALL_STATE(975)] = 37266, + [SMALL_STATE(976)] = 37317, + [SMALL_STATE(977)] = 37368, + [SMALL_STATE(978)] = 37419, + [SMALL_STATE(979)] = 37514, + [SMALL_STATE(980)] = 37609, + [SMALL_STATE(981)] = 37660, + [SMALL_STATE(982)] = 37711, + [SMALL_STATE(983)] = 37762, + [SMALL_STATE(984)] = 37817, + [SMALL_STATE(985)] = 37872, + [SMALL_STATE(986)] = 37923, + [SMALL_STATE(987)] = 37978, + [SMALL_STATE(988)] = 38029, + [SMALL_STATE(989)] = 38080, + [SMALL_STATE(990)] = 38135, + [SMALL_STATE(991)] = 38186, + [SMALL_STATE(992)] = 38241, + [SMALL_STATE(993)] = 38310, + [SMALL_STATE(994)] = 38361, + [SMALL_STATE(995)] = 38412, + [SMALL_STATE(996)] = 38463, + [SMALL_STATE(997)] = 38514, + [SMALL_STATE(998)] = 38609, + [SMALL_STATE(999)] = 38660, + [SMALL_STATE(1000)] = 38715, + [SMALL_STATE(1001)] = 38766, + [SMALL_STATE(1002)] = 38817, + [SMALL_STATE(1003)] = 38868, + [SMALL_STATE(1004)] = 38919, + [SMALL_STATE(1005)] = 38974, + [SMALL_STATE(1006)] = 39025, + [SMALL_STATE(1007)] = 39082, + [SMALL_STATE(1008)] = 39139, + [SMALL_STATE(1009)] = 39190, + [SMALL_STATE(1010)] = 39247, + [SMALL_STATE(1011)] = 39298, + [SMALL_STATE(1012)] = 39349, + [SMALL_STATE(1013)] = 39400, + [SMALL_STATE(1014)] = 39451, + [SMALL_STATE(1015)] = 39546, + [SMALL_STATE(1016)] = 39603, + [SMALL_STATE(1017)] = 39660, + [SMALL_STATE(1018)] = 39711, + [SMALL_STATE(1019)] = 39762, + [SMALL_STATE(1020)] = 39813, + [SMALL_STATE(1021)] = 39864, + [SMALL_STATE(1022)] = 39915, + [SMALL_STATE(1023)] = 40010, + [SMALL_STATE(1024)] = 40105, + [SMALL_STATE(1025)] = 40156, + [SMALL_STATE(1026)] = 40207, + [SMALL_STATE(1027)] = 40264, + [SMALL_STATE(1028)] = 40321, + [SMALL_STATE(1029)] = 40378, + [SMALL_STATE(1030)] = 40473, + [SMALL_STATE(1031)] = 40528, + [SMALL_STATE(1032)] = 40579, + [SMALL_STATE(1033)] = 40630, + [SMALL_STATE(1034)] = 40681, + [SMALL_STATE(1035)] = 40738, + [SMALL_STATE(1036)] = 40795, + [SMALL_STATE(1037)] = 40846, + [SMALL_STATE(1038)] = 40897, + [SMALL_STATE(1039)] = 40952, + [SMALL_STATE(1040)] = 41003, + [SMALL_STATE(1041)] = 41054, + [SMALL_STATE(1042)] = 41105, + [SMALL_STATE(1043)] = 41156, + [SMALL_STATE(1044)] = 41213, + [SMALL_STATE(1045)] = 41268, + [SMALL_STATE(1046)] = 41325, + [SMALL_STATE(1047)] = 41376, + [SMALL_STATE(1048)] = 41433, + [SMALL_STATE(1049)] = 41484, + [SMALL_STATE(1050)] = 41535, + [SMALL_STATE(1051)] = 41592, + [SMALL_STATE(1052)] = 41643, + [SMALL_STATE(1053)] = 41694, + [SMALL_STATE(1054)] = 41745, + [SMALL_STATE(1055)] = 41796, + [SMALL_STATE(1056)] = 41847, + [SMALL_STATE(1057)] = 41902, + [SMALL_STATE(1058)] = 41959, + [SMALL_STATE(1059)] = 42016, + [SMALL_STATE(1060)] = 42067, + [SMALL_STATE(1061)] = 42124, + [SMALL_STATE(1062)] = 42181, + [SMALL_STATE(1063)] = 42232, + [SMALL_STATE(1064)] = 42283, + [SMALL_STATE(1065)] = 42334, + [SMALL_STATE(1066)] = 42385, + [SMALL_STATE(1067)] = 42442, + [SMALL_STATE(1068)] = 42493, + [SMALL_STATE(1069)] = 42550, + [SMALL_STATE(1070)] = 42601, + [SMALL_STATE(1071)] = 42651, + [SMALL_STATE(1072)] = 42707, + [SMALL_STATE(1073)] = 42757, + [SMALL_STATE(1074)] = 42807, + [SMALL_STATE(1075)] = 42857, + [SMALL_STATE(1076)] = 42911, + [SMALL_STATE(1077)] = 42961, + [SMALL_STATE(1078)] = 43053, + [SMALL_STATE(1079)] = 43103, + [SMALL_STATE(1080)] = 43153, + [SMALL_STATE(1081)] = 43207, + [SMALL_STATE(1082)] = 43257, + [SMALL_STATE(1083)] = 43311, + [SMALL_STATE(1084)] = 43361, + [SMALL_STATE(1085)] = 43453, + [SMALL_STATE(1086)] = 43503, + [SMALL_STATE(1087)] = 43553, + [SMALL_STATE(1088)] = 43603, + [SMALL_STATE(1089)] = 43659, + [SMALL_STATE(1090)] = 43709, + [SMALL_STATE(1091)] = 43759, + [SMALL_STATE(1092)] = 43809, + [SMALL_STATE(1093)] = 43859, + [SMALL_STATE(1094)] = 43909, + [SMALL_STATE(1095)] = 44001, + [SMALL_STATE(1096)] = 44051, + [SMALL_STATE(1097)] = 44105, + [SMALL_STATE(1098)] = 44197, + [SMALL_STATE(1099)] = 44247, + [SMALL_STATE(1100)] = 44339, + [SMALL_STATE(1101)] = 44389, + [SMALL_STATE(1102)] = 44481, + [SMALL_STATE(1103)] = 44531, + [SMALL_STATE(1104)] = 44623, + [SMALL_STATE(1105)] = 44677, + [SMALL_STATE(1106)] = 44769, + [SMALL_STATE(1107)] = 44819, + [SMALL_STATE(1108)] = 44873, + [SMALL_STATE(1109)] = 44923, + [SMALL_STATE(1110)] = 44973, + [SMALL_STATE(1111)] = 45023, + [SMALL_STATE(1112)] = 45073, + [SMALL_STATE(1113)] = 45143, + [SMALL_STATE(1114)] = 45193, + [SMALL_STATE(1115)] = 45285, + [SMALL_STATE(1116)] = 45335, + [SMALL_STATE(1117)] = 45385, + [SMALL_STATE(1118)] = 45435, + [SMALL_STATE(1119)] = 45527, + [SMALL_STATE(1120)] = 45577, + [SMALL_STATE(1121)] = 45669, + [SMALL_STATE(1122)] = 45727, + [SMALL_STATE(1123)] = 45819, + [SMALL_STATE(1124)] = 45911, + [SMALL_STATE(1125)] = 45961, + [SMALL_STATE(1126)] = 46011, + [SMALL_STATE(1127)] = 46105, + [SMALL_STATE(1128)] = 46155, + [SMALL_STATE(1129)] = 46205, + [SMALL_STATE(1130)] = 46259, + [SMALL_STATE(1131)] = 46309, + [SMALL_STATE(1132)] = 46363, + [SMALL_STATE(1133)] = 46455, + [SMALL_STATE(1134)] = 46505, + [SMALL_STATE(1135)] = 46555, + [SMALL_STATE(1136)] = 46647, + [SMALL_STATE(1137)] = 46697, + [SMALL_STATE(1138)] = 46747, + [SMALL_STATE(1139)] = 46803, + [SMALL_STATE(1140)] = 46861, + [SMALL_STATE(1141)] = 46953, + [SMALL_STATE(1142)] = 47015, + [SMALL_STATE(1143)] = 47107, + [SMALL_STATE(1144)] = 47157, + [SMALL_STATE(1145)] = 47207, + [SMALL_STATE(1146)] = 47257, + [SMALL_STATE(1147)] = 47307, + [SMALL_STATE(1148)] = 47357, + [SMALL_STATE(1149)] = 47407, + [SMALL_STATE(1150)] = 47457, + [SMALL_STATE(1151)] = 47507, + [SMALL_STATE(1152)] = 47557, + [SMALL_STATE(1153)] = 47649, + [SMALL_STATE(1154)] = 47743, + [SMALL_STATE(1155)] = 47835, + [SMALL_STATE(1156)] = 47885, + [SMALL_STATE(1157)] = 47939, + [SMALL_STATE(1158)] = 48031, + [SMALL_STATE(1159)] = 48081, + [SMALL_STATE(1160)] = 48131, + [SMALL_STATE(1161)] = 48181, + [SMALL_STATE(1162)] = 48273, + [SMALL_STATE(1163)] = 48367, + [SMALL_STATE(1164)] = 48459, + [SMALL_STATE(1165)] = 48509, + [SMALL_STATE(1166)] = 48601, + [SMALL_STATE(1167)] = 48667, + [SMALL_STATE(1168)] = 48759, + [SMALL_STATE(1169)] = 48809, + [SMALL_STATE(1170)] = 48859, + [SMALL_STATE(1171)] = 48909, + [SMALL_STATE(1172)] = 48959, + [SMALL_STATE(1173)] = 49009, + [SMALL_STATE(1174)] = 49101, + [SMALL_STATE(1175)] = 49151, + [SMALL_STATE(1176)] = 49201, + [SMALL_STATE(1177)] = 49257, + [SMALL_STATE(1178)] = 49313, + [SMALL_STATE(1179)] = 49363, + [SMALL_STATE(1180)] = 49413, + [SMALL_STATE(1181)] = 49463, + [SMALL_STATE(1182)] = 49513, + [SMALL_STATE(1183)] = 49563, + [SMALL_STATE(1184)] = 49655, + [SMALL_STATE(1185)] = 49705, + [SMALL_STATE(1186)] = 49755, + [SMALL_STATE(1187)] = 49805, + [SMALL_STATE(1188)] = 49861, + [SMALL_STATE(1189)] = 49917, + [SMALL_STATE(1190)] = 49967, + [SMALL_STATE(1191)] = 50059, + [SMALL_STATE(1192)] = 50109, + [SMALL_STATE(1193)] = 50159, + [SMALL_STATE(1194)] = 50213, + [SMALL_STATE(1195)] = 50305, + [SMALL_STATE(1196)] = 50361, + [SMALL_STATE(1197)] = 50411, + [SMALL_STATE(1198)] = 50465, + [SMALL_STATE(1199)] = 50515, + [SMALL_STATE(1200)] = 50565, + [SMALL_STATE(1201)] = 50615, + [SMALL_STATE(1202)] = 50707, + [SMALL_STATE(1203)] = 50757, + [SMALL_STATE(1204)] = 50849, + [SMALL_STATE(1205)] = 50941, + [SMALL_STATE(1206)] = 51033, + [SMALL_STATE(1207)] = 51083, + [SMALL_STATE(1208)] = 51175, + [SMALL_STATE(1209)] = 51267, + [SMALL_STATE(1210)] = 51323, + [SMALL_STATE(1211)] = 51415, + [SMALL_STATE(1212)] = 51507, + [SMALL_STATE(1213)] = 51563, + [SMALL_STATE(1214)] = 51613, + [SMALL_STATE(1215)] = 51663, + [SMALL_STATE(1216)] = 51713, + [SMALL_STATE(1217)] = 51763, + [SMALL_STATE(1218)] = 51855, + [SMALL_STATE(1219)] = 51911, + [SMALL_STATE(1220)] = 52003, + [SMALL_STATE(1221)] = 52059, + [SMALL_STATE(1222)] = 52151, + [SMALL_STATE(1223)] = 52245, + [SMALL_STATE(1224)] = 52295, + [SMALL_STATE(1225)] = 52351, + [SMALL_STATE(1226)] = 52445, + [SMALL_STATE(1227)] = 52537, + [SMALL_STATE(1228)] = 52629, + [SMALL_STATE(1229)] = 52679, + [SMALL_STATE(1230)] = 52729, + [SMALL_STATE(1231)] = 52785, + [SMALL_STATE(1232)] = 52835, + [SMALL_STATE(1233)] = 52927, + [SMALL_STATE(1234)] = 52981, + [SMALL_STATE(1235)] = 53031, + [SMALL_STATE(1236)] = 53123, + [SMALL_STATE(1237)] = 53173, + [SMALL_STATE(1238)] = 53265, + [SMALL_STATE(1239)] = 53315, + [SMALL_STATE(1240)] = 53365, + [SMALL_STATE(1241)] = 53415, + [SMALL_STATE(1242)] = 53507, + [SMALL_STATE(1243)] = 53599, + [SMALL_STATE(1244)] = 53649, + [SMALL_STATE(1245)] = 53699, + [SMALL_STATE(1246)] = 53791, + [SMALL_STATE(1247)] = 53841, + [SMALL_STATE(1248)] = 53895, + [SMALL_STATE(1249)] = 53945, + [SMALL_STATE(1250)] = 54000, + [SMALL_STATE(1251)] = 54053, + [SMALL_STATE(1252)] = 54102, + [SMALL_STATE(1253)] = 54157, + [SMALL_STATE(1254)] = 54210, + [SMALL_STATE(1255)] = 54265, + [SMALL_STATE(1256)] = 54314, + [SMALL_STATE(1257)] = 54363, + [SMALL_STATE(1258)] = 54416, + [SMALL_STATE(1259)] = 54465, + [SMALL_STATE(1260)] = 54518, + [SMALL_STATE(1261)] = 54573, + [SMALL_STATE(1262)] = 54628, + [SMALL_STATE(1263)] = 54683, + [SMALL_STATE(1264)] = 54736, + [SMALL_STATE(1265)] = 54785, + [SMALL_STATE(1266)] = 54842, + [SMALL_STATE(1267)] = 54895, + [SMALL_STATE(1268)] = 54944, + [SMALL_STATE(1269)] = 54993, + [SMALL_STATE(1270)] = 55042, + [SMALL_STATE(1271)] = 55095, + [SMALL_STATE(1272)] = 55144, + [SMALL_STATE(1273)] = 55193, + [SMALL_STATE(1274)] = 55242, + [SMALL_STATE(1275)] = 55291, + [SMALL_STATE(1276)] = 55344, + [SMALL_STATE(1277)] = 55393, + [SMALL_STATE(1278)] = 55448, + [SMALL_STATE(1279)] = 55503, + [SMALL_STATE(1280)] = 55552, + [SMALL_STATE(1281)] = 55605, + [SMALL_STATE(1282)] = 55654, + [SMALL_STATE(1283)] = 55709, + [SMALL_STATE(1284)] = 55764, + [SMALL_STATE(1285)] = 55817, + [SMALL_STATE(1286)] = 55870, + [SMALL_STATE(1287)] = 55923, + [SMALL_STATE(1288)] = 55976, + [SMALL_STATE(1289)] = 56029, + [SMALL_STATE(1290)] = 56082, + [SMALL_STATE(1291)] = 56140, + [SMALL_STATE(1292)] = 56198, + [SMALL_STATE(1293)] = 56256, + [SMALL_STATE(1294)] = 56304, + [SMALL_STATE(1295)] = 56356, + [SMALL_STATE(1296)] = 56414, + [SMALL_STATE(1297)] = 56462, + [SMALL_STATE(1298)] = 56520, + [SMALL_STATE(1299)] = 56578, + [SMALL_STATE(1300)] = 56636, + [SMALL_STATE(1301)] = 56684, + [SMALL_STATE(1302)] = 56732, + [SMALL_STATE(1303)] = 56790, + [SMALL_STATE(1304)] = 56842, + [SMALL_STATE(1305)] = 56890, + [SMALL_STATE(1306)] = 56942, + [SMALL_STATE(1307)] = 56994, + [SMALL_STATE(1308)] = 57042, + [SMALL_STATE(1309)] = 57090, + [SMALL_STATE(1310)] = 57138, + [SMALL_STATE(1311)] = 57192, + [SMALL_STATE(1312)] = 57250, + [SMALL_STATE(1313)] = 57298, + [SMALL_STATE(1314)] = 57352, + [SMALL_STATE(1315)] = 57404, + [SMALL_STATE(1316)] = 57458, + [SMALL_STATE(1317)] = 57516, + [SMALL_STATE(1318)] = 57574, + [SMALL_STATE(1319)] = 57632, + [SMALL_STATE(1320)] = 57680, + [SMALL_STATE(1321)] = 57738, + [SMALL_STATE(1322)] = 57796, + [SMALL_STATE(1323)] = 57844, + [SMALL_STATE(1324)] = 57902, + [SMALL_STATE(1325)] = 57950, + [SMALL_STATE(1326)] = 57998, + [SMALL_STATE(1327)] = 58052, + [SMALL_STATE(1328)] = 58100, + [SMALL_STATE(1329)] = 58154, + [SMALL_STATE(1330)] = 58212, + [SMALL_STATE(1331)] = 58264, + [SMALL_STATE(1332)] = 58316, + [SMALL_STATE(1333)] = 58374, + [SMALL_STATE(1334)] = 58432, + [SMALL_STATE(1335)] = 58480, + [SMALL_STATE(1336)] = 58538, + [SMALL_STATE(1337)] = 58596, + [SMALL_STATE(1338)] = 58654, + [SMALL_STATE(1339)] = 58702, + [SMALL_STATE(1340)] = 58754, + [SMALL_STATE(1341)] = 58802, + [SMALL_STATE(1342)] = 58854, + [SMALL_STATE(1343)] = 58908, + [SMALL_STATE(1344)] = 58966, + [SMALL_STATE(1345)] = 59024, + [SMALL_STATE(1346)] = 59078, + [SMALL_STATE(1347)] = 59132, + [SMALL_STATE(1348)] = 59184, + [SMALL_STATE(1349)] = 59242, + [SMALL_STATE(1350)] = 59296, + [SMALL_STATE(1351)] = 59354, + [SMALL_STATE(1352)] = 59412, + [SMALL_STATE(1353)] = 59464, + [SMALL_STATE(1354)] = 59512, + [SMALL_STATE(1355)] = 59570, + [SMALL_STATE(1356)] = 59628, + [SMALL_STATE(1357)] = 59686, + [SMALL_STATE(1358)] = 59744, + [SMALL_STATE(1359)] = 59792, + [SMALL_STATE(1360)] = 59850, + [SMALL_STATE(1361)] = 59908, + [SMALL_STATE(1362)] = 59966, + [SMALL_STATE(1363)] = 60014, + [SMALL_STATE(1364)] = 60072, + [SMALL_STATE(1365)] = 60130, + [SMALL_STATE(1366)] = 60178, + [SMALL_STATE(1367)] = 60226, + [SMALL_STATE(1368)] = 60278, + [SMALL_STATE(1369)] = 60326, + [SMALL_STATE(1370)] = 60384, + [SMALL_STATE(1371)] = 60442, + [SMALL_STATE(1372)] = 60494, + [SMALL_STATE(1373)] = 60548, + [SMALL_STATE(1374)] = 60606, + [SMALL_STATE(1375)] = 60662, + [SMALL_STATE(1376)] = 60720, + [SMALL_STATE(1377)] = 60778, + [SMALL_STATE(1378)] = 60836, + [SMALL_STATE(1379)] = 60888, + [SMALL_STATE(1380)] = 60944, + [SMALL_STATE(1381)] = 60996, + [SMALL_STATE(1382)] = 61054, + [SMALL_STATE(1383)] = 61102, + [SMALL_STATE(1384)] = 61150, + [SMALL_STATE(1385)] = 61202, + [SMALL_STATE(1386)] = 61250, + [SMALL_STATE(1387)] = 61298, + [SMALL_STATE(1388)] = 61356, + [SMALL_STATE(1389)] = 61408, + [SMALL_STATE(1390)] = 61466, + [SMALL_STATE(1391)] = 61524, + [SMALL_STATE(1392)] = 61576, + [SMALL_STATE(1393)] = 61634, + [SMALL_STATE(1394)] = 61688, + [SMALL_STATE(1395)] = 61746, + [SMALL_STATE(1396)] = 61794, + [SMALL_STATE(1397)] = 61852, + [SMALL_STATE(1398)] = 61910, + [SMALL_STATE(1399)] = 61968, + [SMALL_STATE(1400)] = 62016, + [SMALL_STATE(1401)] = 62064, + [SMALL_STATE(1402)] = 62112, + [SMALL_STATE(1403)] = 62160, + [SMALL_STATE(1404)] = 62208, + [SMALL_STATE(1405)] = 62261, + [SMALL_STATE(1406)] = 62316, + [SMALL_STATE(1407)] = 62367, + [SMALL_STATE(1408)] = 62458, + [SMALL_STATE(1409)] = 62549, + [SMALL_STATE(1410)] = 62602, + [SMALL_STATE(1411)] = 62655, + [SMALL_STATE(1412)] = 62708, + [SMALL_STATE(1413)] = 62761, + [SMALL_STATE(1414)] = 62814, + [SMALL_STATE(1415)] = 62867, + [SMALL_STATE(1416)] = 62920, + [SMALL_STATE(1417)] = 62971, + [SMALL_STATE(1418)] = 63026, + [SMALL_STATE(1419)] = 63079, + [SMALL_STATE(1420)] = 63130, + [SMALL_STATE(1421)] = 63181, + [SMALL_STATE(1422)] = 63232, + [SMALL_STATE(1423)] = 63283, + [SMALL_STATE(1424)] = 63330, + [SMALL_STATE(1425)] = 63385, + [SMALL_STATE(1426)] = 63440, + [SMALL_STATE(1427)] = 63491, + [SMALL_STATE(1428)] = 63538, + [SMALL_STATE(1429)] = 63585, + [SMALL_STATE(1430)] = 63636, + [SMALL_STATE(1431)] = 63691, + [SMALL_STATE(1432)] = 63744, + [SMALL_STATE(1433)] = 63835, + [SMALL_STATE(1434)] = 63926, + [SMALL_STATE(1435)] = 64017, + [SMALL_STATE(1436)] = 64064, + [SMALL_STATE(1437)] = 64155, + [SMALL_STATE(1438)] = 64206, + [SMALL_STATE(1439)] = 64297, + [SMALL_STATE(1440)] = 64348, + [SMALL_STATE(1441)] = 64403, + [SMALL_STATE(1442)] = 64458, + [SMALL_STATE(1443)] = 64549, + [SMALL_STATE(1444)] = 64602, + [SMALL_STATE(1445)] = 64649, + [SMALL_STATE(1446)] = 64702, + [SMALL_STATE(1447)] = 64749, + [SMALL_STATE(1448)] = 64840, + [SMALL_STATE(1449)] = 64931, + [SMALL_STATE(1450)] = 64978, + [SMALL_STATE(1451)] = 65025, + [SMALL_STATE(1452)] = 65072, + [SMALL_STATE(1453)] = 65119, + [SMALL_STATE(1454)] = 65166, + [SMALL_STATE(1455)] = 65221, + [SMALL_STATE(1456)] = 65268, + [SMALL_STATE(1457)] = 65315, + [SMALL_STATE(1458)] = 65362, + [SMALL_STATE(1459)] = 65413, + [SMALL_STATE(1460)] = 65460, + [SMALL_STATE(1461)] = 65515, + [SMALL_STATE(1462)] = 65562, + [SMALL_STATE(1463)] = 65615, + [SMALL_STATE(1464)] = 65668, + [SMALL_STATE(1465)] = 65715, + [SMALL_STATE(1466)] = 65768, + [SMALL_STATE(1467)] = 65815, + [SMALL_STATE(1468)] = 65862, + [SMALL_STATE(1469)] = 65915, + [SMALL_STATE(1470)] = 65968, + [SMALL_STATE(1471)] = 66015, + [SMALL_STATE(1472)] = 66062, + [SMALL_STATE(1473)] = 66115, + [SMALL_STATE(1474)] = 66170, + [SMALL_STATE(1475)] = 66223, + [SMALL_STATE(1476)] = 66314, + [SMALL_STATE(1477)] = 66361, + [SMALL_STATE(1478)] = 66408, + [SMALL_STATE(1479)] = 66455, + [SMALL_STATE(1480)] = 66502, + [SMALL_STATE(1481)] = 66549, + [SMALL_STATE(1482)] = 66596, + [SMALL_STATE(1483)] = 66643, + [SMALL_STATE(1484)] = 66690, + [SMALL_STATE(1485)] = 66737, + [SMALL_STATE(1486)] = 66788, + [SMALL_STATE(1487)] = 66835, + [SMALL_STATE(1488)] = 66886, + [SMALL_STATE(1489)] = 66933, + [SMALL_STATE(1490)] = 66984, + [SMALL_STATE(1491)] = 67037, + [SMALL_STATE(1492)] = 67088, + [SMALL_STATE(1493)] = 67139, + [SMALL_STATE(1494)] = 67192, + [SMALL_STATE(1495)] = 67239, + [SMALL_STATE(1496)] = 67286, + [SMALL_STATE(1497)] = 67333, + [SMALL_STATE(1498)] = 67380, + [SMALL_STATE(1499)] = 67431, + [SMALL_STATE(1500)] = 67482, + [SMALL_STATE(1501)] = 67533, + [SMALL_STATE(1502)] = 67580, + [SMALL_STATE(1503)] = 67627, + [SMALL_STATE(1504)] = 67678, + [SMALL_STATE(1505)] = 67729, + [SMALL_STATE(1506)] = 67776, + [SMALL_STATE(1507)] = 67831, + [SMALL_STATE(1508)] = 67878, + [SMALL_STATE(1509)] = 67931, + [SMALL_STATE(1510)] = 68022, + [SMALL_STATE(1511)] = 68075, + [SMALL_STATE(1512)] = 68122, + [SMALL_STATE(1513)] = 68175, + [SMALL_STATE(1514)] = 68226, + [SMALL_STATE(1515)] = 68281, + [SMALL_STATE(1516)] = 68334, + [SMALL_STATE(1517)] = 68389, + [SMALL_STATE(1518)] = 68440, + [SMALL_STATE(1519)] = 68487, + [SMALL_STATE(1520)] = 68538, + [SMALL_STATE(1521)] = 68585, + [SMALL_STATE(1522)] = 68636, + [SMALL_STATE(1523)] = 68689, + [SMALL_STATE(1524)] = 68742, + [SMALL_STATE(1525)] = 68795, + [SMALL_STATE(1526)] = 68848, + [SMALL_STATE(1527)] = 68901, + [SMALL_STATE(1528)] = 68952, + [SMALL_STATE(1529)] = 69003, + [SMALL_STATE(1530)] = 69049, + [SMALL_STATE(1531)] = 69101, + [SMALL_STATE(1532)] = 69147, + [SMALL_STATE(1533)] = 69193, + [SMALL_STATE(1534)] = 69239, + [SMALL_STATE(1535)] = 69285, + [SMALL_STATE(1536)] = 69331, + [SMALL_STATE(1537)] = 69377, + [SMALL_STATE(1538)] = 69423, + [SMALL_STATE(1539)] = 69469, + [SMALL_STATE(1540)] = 69515, + [SMALL_STATE(1541)] = 69565, + [SMALL_STATE(1542)] = 69615, + [SMALL_STATE(1543)] = 69661, + [SMALL_STATE(1544)] = 69707, + [SMALL_STATE(1545)] = 69753, + [SMALL_STATE(1546)] = 69801, + [SMALL_STATE(1547)] = 69847, + [SMALL_STATE(1548)] = 69897, + [SMALL_STATE(1549)] = 69943, + [SMALL_STATE(1550)] = 69989, + [SMALL_STATE(1551)] = 70039, + [SMALL_STATE(1552)] = 70085, + [SMALL_STATE(1553)] = 70131, + [SMALL_STATE(1554)] = 70177, + [SMALL_STATE(1555)] = 70223, + [SMALL_STATE(1556)] = 70269, + [SMALL_STATE(1557)] = 70315, + [SMALL_STATE(1558)] = 70361, + [SMALL_STATE(1559)] = 70411, + [SMALL_STATE(1560)] = 70461, + [SMALL_STATE(1561)] = 70507, + [SMALL_STATE(1562)] = 70559, + [SMALL_STATE(1563)] = 70611, + [SMALL_STATE(1564)] = 70657, + [SMALL_STATE(1565)] = 70703, + [SMALL_STATE(1566)] = 70749, + [SMALL_STATE(1567)] = 70795, + [SMALL_STATE(1568)] = 70841, + [SMALL_STATE(1569)] = 70887, + [SMALL_STATE(1570)] = 70933, + [SMALL_STATE(1571)] = 70979, + [SMALL_STATE(1572)] = 71029, + [SMALL_STATE(1573)] = 71075, + [SMALL_STATE(1574)] = 71121, + [SMALL_STATE(1575)] = 71173, + [SMALL_STATE(1576)] = 71223, + [SMALL_STATE(1577)] = 71273, + [SMALL_STATE(1578)] = 71323, + [SMALL_STATE(1579)] = 71369, + [SMALL_STATE(1580)] = 71419, + [SMALL_STATE(1581)] = 71469, + [SMALL_STATE(1582)] = 71515, + [SMALL_STATE(1583)] = 71561, + [SMALL_STATE(1584)] = 71611, + [SMALL_STATE(1585)] = 71657, + [SMALL_STATE(1586)] = 71705, + [SMALL_STATE(1587)] = 71753, + [SMALL_STATE(1588)] = 71799, + [SMALL_STATE(1589)] = 71849, + [SMALL_STATE(1590)] = 71895, + [SMALL_STATE(1591)] = 71941, + [SMALL_STATE(1592)] = 71991, + [SMALL_STATE(1593)] = 72037, + [SMALL_STATE(1594)] = 72087, + [SMALL_STATE(1595)] = 72133, + [SMALL_STATE(1596)] = 72179, + [SMALL_STATE(1597)] = 72227, + [SMALL_STATE(1598)] = 72273, + [SMALL_STATE(1599)] = 72319, + [SMALL_STATE(1600)] = 72365, + [SMALL_STATE(1601)] = 72411, + [SMALL_STATE(1602)] = 72461, + [SMALL_STATE(1603)] = 72507, + [SMALL_STATE(1604)] = 72553, + [SMALL_STATE(1605)] = 72601, + [SMALL_STATE(1606)] = 72651, + [SMALL_STATE(1607)] = 72697, + [SMALL_STATE(1608)] = 72743, + [SMALL_STATE(1609)] = 72789, + [SMALL_STATE(1610)] = 72835, + [SMALL_STATE(1611)] = 72885, + [SMALL_STATE(1612)] = 72935, + [SMALL_STATE(1613)] = 72981, + [SMALL_STATE(1614)] = 73031, + [SMALL_STATE(1615)] = 73083, + [SMALL_STATE(1616)] = 73129, + [SMALL_STATE(1617)] = 73175, + [SMALL_STATE(1618)] = 73221, + [SMALL_STATE(1619)] = 73267, + [SMALL_STATE(1620)] = 73319, + [SMALL_STATE(1621)] = 73365, + [SMALL_STATE(1622)] = 73410, + [SMALL_STATE(1623)] = 73455, + [SMALL_STATE(1624)] = 73510, + [SMALL_STATE(1625)] = 73555, + [SMALL_STATE(1626)] = 73600, + [SMALL_STATE(1627)] = 73645, + [SMALL_STATE(1628)] = 73690, + [SMALL_STATE(1629)] = 73735, + [SMALL_STATE(1630)] = 73780, + [SMALL_STATE(1631)] = 73835, + [SMALL_STATE(1632)] = 73886, + [SMALL_STATE(1633)] = 73931, + [SMALL_STATE(1634)] = 73986, + [SMALL_STATE(1635)] = 74037, + [SMALL_STATE(1636)] = 74092, + [SMALL_STATE(1637)] = 74143, + [SMALL_STATE(1638)] = 74188, + [SMALL_STATE(1639)] = 74243, + [SMALL_STATE(1640)] = 74288, + [SMALL_STATE(1641)] = 74337, + [SMALL_STATE(1642)] = 74382, + [SMALL_STATE(1643)] = 74437, + [SMALL_STATE(1644)] = 74492, + [SMALL_STATE(1645)] = 74541, + [SMALL_STATE(1646)] = 74586, + [SMALL_STATE(1647)] = 74631, + [SMALL_STATE(1648)] = 74680, + [SMALL_STATE(1649)] = 74725, + [SMALL_STATE(1650)] = 74774, + [SMALL_STATE(1651)] = 74819, + [SMALL_STATE(1652)] = 74864, + [SMALL_STATE(1653)] = 74909, + [SMALL_STATE(1654)] = 74954, + [SMALL_STATE(1655)] = 75009, + [SMALL_STATE(1656)] = 75054, + [SMALL_STATE(1657)] = 75109, + [SMALL_STATE(1658)] = 75154, + [SMALL_STATE(1659)] = 75209, + [SMALL_STATE(1660)] = 75254, + [SMALL_STATE(1661)] = 75309, + [SMALL_STATE(1662)] = 75354, + [SMALL_STATE(1663)] = 75409, + [SMALL_STATE(1664)] = 75454, + [SMALL_STATE(1665)] = 75499, + [SMALL_STATE(1666)] = 75554, + [SMALL_STATE(1667)] = 75599, + [SMALL_STATE(1668)] = 75644, + [SMALL_STATE(1669)] = 75689, + [SMALL_STATE(1670)] = 75734, + [SMALL_STATE(1671)] = 75783, + [SMALL_STATE(1672)] = 75828, + [SMALL_STATE(1673)] = 75873, + [SMALL_STATE(1674)] = 75918, + [SMALL_STATE(1675)] = 75963, + [SMALL_STATE(1676)] = 76018, + [SMALL_STATE(1677)] = 76067, + [SMALL_STATE(1678)] = 76122, + [SMALL_STATE(1679)] = 76167, + [SMALL_STATE(1680)] = 76212, + [SMALL_STATE(1681)] = 76257, + [SMALL_STATE(1682)] = 76312, + [SMALL_STATE(1683)] = 76367, + [SMALL_STATE(1684)] = 76422, + [SMALL_STATE(1685)] = 76477, + [SMALL_STATE(1686)] = 76532, + [SMALL_STATE(1687)] = 76577, + [SMALL_STATE(1688)] = 76622, + [SMALL_STATE(1689)] = 76677, + [SMALL_STATE(1690)] = 76732, + [SMALL_STATE(1691)] = 76787, + [SMALL_STATE(1692)] = 76836, + [SMALL_STATE(1693)] = 76881, + [SMALL_STATE(1694)] = 76936, + [SMALL_STATE(1695)] = 76985, + [SMALL_STATE(1696)] = 77040, + [SMALL_STATE(1697)] = 77089, + [SMALL_STATE(1698)] = 77134, + [SMALL_STATE(1699)] = 77179, + [SMALL_STATE(1700)] = 77224, + [SMALL_STATE(1701)] = 77269, + [SMALL_STATE(1702)] = 77324, + [SMALL_STATE(1703)] = 77369, + [SMALL_STATE(1704)] = 77422, + [SMALL_STATE(1705)] = 77467, + [SMALL_STATE(1706)] = 77520, + [SMALL_STATE(1707)] = 77575, + [SMALL_STATE(1708)] = 77624, + [SMALL_STATE(1709)] = 77679, + [SMALL_STATE(1710)] = 77724, + [SMALL_STATE(1711)] = 77769, + [SMALL_STATE(1712)] = 77814, + [SMALL_STATE(1713)] = 77859, + [SMALL_STATE(1714)] = 77904, + [SMALL_STATE(1715)] = 77953, + [SMALL_STATE(1716)] = 77998, + [SMALL_STATE(1717)] = 78053, + [SMALL_STATE(1718)] = 78098, + [SMALL_STATE(1719)] = 78143, + [SMALL_STATE(1720)] = 78188, + [SMALL_STATE(1721)] = 78233, + [SMALL_STATE(1722)] = 78288, + [SMALL_STATE(1723)] = 78343, + [SMALL_STATE(1724)] = 78388, + [SMALL_STATE(1725)] = 78443, + [SMALL_STATE(1726)] = 78498, + [SMALL_STATE(1727)] = 78543, + [SMALL_STATE(1728)] = 78588, + [SMALL_STATE(1729)] = 78643, + [SMALL_STATE(1730)] = 78692, + [SMALL_STATE(1731)] = 78737, + [SMALL_STATE(1732)] = 78792, + [SMALL_STATE(1733)] = 78837, + [SMALL_STATE(1734)] = 78892, + [SMALL_STATE(1735)] = 78947, + [SMALL_STATE(1736)] = 79002, + [SMALL_STATE(1737)] = 79047, + [SMALL_STATE(1738)] = 79094, + [SMALL_STATE(1739)] = 79149, + [SMALL_STATE(1740)] = 79198, + [SMALL_STATE(1741)] = 79253, + [SMALL_STATE(1742)] = 79298, + [SMALL_STATE(1743)] = 79343, + [SMALL_STATE(1744)] = 79398, + [SMALL_STATE(1745)] = 79443, + [SMALL_STATE(1746)] = 79488, + [SMALL_STATE(1747)] = 79533, + [SMALL_STATE(1748)] = 79588, + [SMALL_STATE(1749)] = 79633, + [SMALL_STATE(1750)] = 79678, + [SMALL_STATE(1751)] = 79727, + [SMALL_STATE(1752)] = 79782, + [SMALL_STATE(1753)] = 79837, + [SMALL_STATE(1754)] = 79892, + [SMALL_STATE(1755)] = 79937, + [SMALL_STATE(1756)] = 79982, + [SMALL_STATE(1757)] = 80037, + [SMALL_STATE(1758)] = 80085, + [SMALL_STATE(1759)] = 80133, + [SMALL_STATE(1760)] = 80185, + [SMALL_STATE(1761)] = 80237, + [SMALL_STATE(1762)] = 80281, + [SMALL_STATE(1763)] = 80325, + [SMALL_STATE(1764)] = 80369, + [SMALL_STATE(1765)] = 80413, + [SMALL_STATE(1766)] = 80457, + [SMALL_STATE(1767)] = 80509, + [SMALL_STATE(1768)] = 80561, + [SMALL_STATE(1769)] = 80609, + [SMALL_STATE(1770)] = 80661, + [SMALL_STATE(1771)] = 80709, + [SMALL_STATE(1772)] = 80757, + [SMALL_STATE(1773)] = 80801, + [SMALL_STATE(1774)] = 80845, + [SMALL_STATE(1775)] = 80893, + [SMALL_STATE(1776)] = 80941, + [SMALL_STATE(1777)] = 80989, + [SMALL_STATE(1778)] = 81041, + [SMALL_STATE(1779)] = 81093, + [SMALL_STATE(1780)] = 81145, + [SMALL_STATE(1781)] = 81197, + [SMALL_STATE(1782)] = 81245, + [SMALL_STATE(1783)] = 81293, + [SMALL_STATE(1784)] = 81341, + [SMALL_STATE(1785)] = 81389, + [SMALL_STATE(1786)] = 81441, + [SMALL_STATE(1787)] = 81489, + [SMALL_STATE(1788)] = 81533, + [SMALL_STATE(1789)] = 81577, + [SMALL_STATE(1790)] = 81629, + [SMALL_STATE(1791)] = 81673, + [SMALL_STATE(1792)] = 81725, + [SMALL_STATE(1793)] = 81777, + [SMALL_STATE(1794)] = 81821, + [SMALL_STATE(1795)] = 81867, + [SMALL_STATE(1796)] = 81913, + [SMALL_STATE(1797)] = 81957, + [SMALL_STATE(1798)] = 82001, + [SMALL_STATE(1799)] = 82045, + [SMALL_STATE(1800)] = 82093, + [SMALL_STATE(1801)] = 82145, + [SMALL_STATE(1802)] = 82193, + [SMALL_STATE(1803)] = 82239, + [SMALL_STATE(1804)] = 82291, + [SMALL_STATE(1805)] = 82343, + [SMALL_STATE(1806)] = 82395, + [SMALL_STATE(1807)] = 82447, + [SMALL_STATE(1808)] = 82493, + [SMALL_STATE(1809)] = 82541, + [SMALL_STATE(1810)] = 82593, + [SMALL_STATE(1811)] = 82637, + [SMALL_STATE(1812)] = 82689, + [SMALL_STATE(1813)] = 82737, + [SMALL_STATE(1814)] = 82785, + [SMALL_STATE(1815)] = 82837, + [SMALL_STATE(1816)] = 82885, + [SMALL_STATE(1817)] = 82935, + [SMALL_STATE(1818)] = 82987, + [SMALL_STATE(1819)] = 83031, + [SMALL_STATE(1820)] = 83079, + [SMALL_STATE(1821)] = 83131, + [SMALL_STATE(1822)] = 83179, + [SMALL_STATE(1823)] = 83231, + [SMALL_STATE(1824)] = 83283, + [SMALL_STATE(1825)] = 83327, + [SMALL_STATE(1826)] = 83379, + [SMALL_STATE(1827)] = 83425, + [SMALL_STATE(1828)] = 83477, + [SMALL_STATE(1829)] = 83562, + [SMALL_STATE(1830)] = 83605, + [SMALL_STATE(1831)] = 83648, + [SMALL_STATE(1832)] = 83733, + [SMALL_STATE(1833)] = 83784, + [SMALL_STATE(1834)] = 83869, + [SMALL_STATE(1835)] = 83912, + [SMALL_STATE(1836)] = 83997, + [SMALL_STATE(1837)] = 84048, + [SMALL_STATE(1838)] = 84091, + [SMALL_STATE(1839)] = 84142, + [SMALL_STATE(1840)] = 84185, + [SMALL_STATE(1841)] = 84270, + [SMALL_STATE(1842)] = 84321, + [SMALL_STATE(1843)] = 84364, + [SMALL_STATE(1844)] = 84413, + [SMALL_STATE(1845)] = 84456, + [SMALL_STATE(1846)] = 84505, + [SMALL_STATE(1847)] = 84554, + [SMALL_STATE(1848)] = 84601, + [SMALL_STATE(1849)] = 84648, + [SMALL_STATE(1850)] = 84733, + [SMALL_STATE(1851)] = 84818, + [SMALL_STATE(1852)] = 84861, + [SMALL_STATE(1853)] = 84904, + [SMALL_STATE(1854)] = 84989, + [SMALL_STATE(1855)] = 85038, + [SMALL_STATE(1856)] = 85081, + [SMALL_STATE(1857)] = 85124, + [SMALL_STATE(1858)] = 85167, + [SMALL_STATE(1859)] = 85210, + [SMALL_STATE(1860)] = 85295, + [SMALL_STATE(1861)] = 85344, + [SMALL_STATE(1862)] = 85429, + [SMALL_STATE(1863)] = 85472, + [SMALL_STATE(1864)] = 85515, + [SMALL_STATE(1865)] = 85558, + [SMALL_STATE(1866)] = 85601, + [SMALL_STATE(1867)] = 85644, + [SMALL_STATE(1868)] = 85729, + [SMALL_STATE(1869)] = 85772, + [SMALL_STATE(1870)] = 85815, + [SMALL_STATE(1871)] = 85862, + [SMALL_STATE(1872)] = 85909, + [SMALL_STATE(1873)] = 85960, + [SMALL_STATE(1874)] = 86005, + [SMALL_STATE(1875)] = 86048, + [SMALL_STATE(1876)] = 86099, + [SMALL_STATE(1877)] = 86142, + [SMALL_STATE(1878)] = 86185, + [SMALL_STATE(1879)] = 86228, + [SMALL_STATE(1880)] = 86271, + [SMALL_STATE(1881)] = 86356, + [SMALL_STATE(1882)] = 86399, + [SMALL_STATE(1883)] = 86442, + [SMALL_STATE(1884)] = 86485, + [SMALL_STATE(1885)] = 86528, + [SMALL_STATE(1886)] = 86579, + [SMALL_STATE(1887)] = 86630, + [SMALL_STATE(1888)] = 86681, + [SMALL_STATE(1889)] = 86763, + [SMALL_STATE(1890)] = 86845, + [SMALL_STATE(1891)] = 86927, + [SMALL_STATE(1892)] = 87009, + [SMALL_STATE(1893)] = 87091, + [SMALL_STATE(1894)] = 87173, + [SMALL_STATE(1895)] = 87223, + [SMALL_STATE(1896)] = 87273, + [SMALL_STATE(1897)] = 87355, + [SMALL_STATE(1898)] = 87437, + [SMALL_STATE(1899)] = 87487, + [SMALL_STATE(1900)] = 87569, + [SMALL_STATE(1901)] = 87651, + [SMALL_STATE(1902)] = 87727, + [SMALL_STATE(1903)] = 87777, + [SMALL_STATE(1904)] = 87859, + [SMALL_STATE(1905)] = 87909, + [SMALL_STATE(1906)] = 87985, + [SMALL_STATE(1907)] = 88029, + [SMALL_STATE(1908)] = 88079, + [SMALL_STATE(1909)] = 88155, + [SMALL_STATE(1910)] = 88237, + [SMALL_STATE(1911)] = 88287, + [SMALL_STATE(1912)] = 88369, + [SMALL_STATE(1913)] = 88445, + [SMALL_STATE(1914)] = 88527, + [SMALL_STATE(1915)] = 88609, + [SMALL_STATE(1916)] = 88685, + [SMALL_STATE(1917)] = 88767, + [SMALL_STATE(1918)] = 88817, + [SMALL_STATE(1919)] = 88899, + [SMALL_STATE(1920)] = 88981, + [SMALL_STATE(1921)] = 89022, + [SMALL_STATE(1922)] = 89101, + [SMALL_STATE(1923)] = 89150, + [SMALL_STATE(1924)] = 89191, + [SMALL_STATE(1925)] = 89232, + [SMALL_STATE(1926)] = 89273, + [SMALL_STATE(1927)] = 89352, + [SMALL_STATE(1928)] = 89431, + [SMALL_STATE(1929)] = 89476, + [SMALL_STATE(1930)] = 89555, + [SMALL_STATE(1931)] = 89634, + [SMALL_STATE(1932)] = 89675, + [SMALL_STATE(1933)] = 89716, + [SMALL_STATE(1934)] = 89795, + [SMALL_STATE(1935)] = 89874, + [SMALL_STATE(1936)] = 89947, + [SMALL_STATE(1937)] = 89988, + [SMALL_STATE(1938)] = 90061, + [SMALL_STATE(1939)] = 90140, + [SMALL_STATE(1940)] = 90219, + [SMALL_STATE(1941)] = 90298, + [SMALL_STATE(1942)] = 90377, + [SMALL_STATE(1943)] = 90456, + [SMALL_STATE(1944)] = 90535, + [SMALL_STATE(1945)] = 90576, + [SMALL_STATE(1946)] = 90655, + [SMALL_STATE(1947)] = 90704, + [SMALL_STATE(1948)] = 90745, + [SMALL_STATE(1949)] = 90794, + [SMALL_STATE(1950)] = 90873, + [SMALL_STATE(1951)] = 90952, + [SMALL_STATE(1952)] = 91031, + [SMALL_STATE(1953)] = 91080, + [SMALL_STATE(1954)] = 91159, + [SMALL_STATE(1955)] = 91200, + [SMALL_STATE(1956)] = 91279, + [SMALL_STATE(1957)] = 91352, + [SMALL_STATE(1958)] = 91393, + [SMALL_STATE(1959)] = 91466, + [SMALL_STATE(1960)] = 91545, + [SMALL_STATE(1961)] = 91624, + [SMALL_STATE(1962)] = 91665, + [SMALL_STATE(1963)] = 91706, + [SMALL_STATE(1964)] = 91747, + [SMALL_STATE(1965)] = 91788, + [SMALL_STATE(1966)] = 91829, + [SMALL_STATE(1967)] = 91870, + [SMALL_STATE(1968)] = 91911, + [SMALL_STATE(1969)] = 91952, + [SMALL_STATE(1970)] = 92031, + [SMALL_STATE(1971)] = 92110, + [SMALL_STATE(1972)] = 92189, + [SMALL_STATE(1973)] = 92234, + [SMALL_STATE(1974)] = 92288, + [SMALL_STATE(1975)] = 92330, + [SMALL_STATE(1976)] = 92372, + [SMALL_STATE(1977)] = 92411, + [SMALL_STATE(1978)] = 92484, + [SMALL_STATE(1979)] = 92557, + [SMALL_STATE(1980)] = 92630, + [SMALL_STATE(1981)] = 92669, + [SMALL_STATE(1982)] = 92708, + [SMALL_STATE(1983)] = 92747, + [SMALL_STATE(1984)] = 92790, + [SMALL_STATE(1985)] = 92829, + [SMALL_STATE(1986)] = 92872, + [SMALL_STATE(1987)] = 92911, + [SMALL_STATE(1988)] = 92984, + [SMALL_STATE(1989)] = 93023, + [SMALL_STATE(1990)] = 93062, + [SMALL_STATE(1991)] = 93135, + [SMALL_STATE(1992)] = 93178, + [SMALL_STATE(1993)] = 93217, + [SMALL_STATE(1994)] = 93256, + [SMALL_STATE(1995)] = 93329, + [SMALL_STATE(1996)] = 93368, + [SMALL_STATE(1997)] = 93407, + [SMALL_STATE(1998)] = 93450, + [SMALL_STATE(1999)] = 93495, + [SMALL_STATE(2000)] = 93534, + [SMALL_STATE(2001)] = 93577, + [SMALL_STATE(2002)] = 93650, + [SMALL_STATE(2003)] = 93689, + [SMALL_STATE(2004)] = 93734, + [SMALL_STATE(2005)] = 93781, + [SMALL_STATE(2006)] = 93820, + [SMALL_STATE(2007)] = 93859, + [SMALL_STATE(2008)] = 93906, + [SMALL_STATE(2009)] = 93949, + [SMALL_STATE(2010)] = 94022, + [SMALL_STATE(2011)] = 94095, + [SMALL_STATE(2012)] = 94168, + [SMALL_STATE(2013)] = 94211, + [SMALL_STATE(2014)] = 94250, + [SMALL_STATE(2015)] = 94293, + [SMALL_STATE(2016)] = 94332, + [SMALL_STATE(2017)] = 94375, + [SMALL_STATE(2018)] = 94448, + [SMALL_STATE(2019)] = 94521, + [SMALL_STATE(2020)] = 94560, + [SMALL_STATE(2021)] = 94599, + [SMALL_STATE(2022)] = 94638, + [SMALL_STATE(2023)] = 94677, + [SMALL_STATE(2024)] = 94716, + [SMALL_STATE(2025)] = 94789, + [SMALL_STATE(2026)] = 94862, + [SMALL_STATE(2027)] = 94935, + [SMALL_STATE(2028)] = 95008, + [SMALL_STATE(2029)] = 95047, + [SMALL_STATE(2030)] = 95086, + [SMALL_STATE(2031)] = 95125, + [SMALL_STATE(2032)] = 95198, + [SMALL_STATE(2033)] = 95271, + [SMALL_STATE(2034)] = 95310, + [SMALL_STATE(2035)] = 95349, + [SMALL_STATE(2036)] = 95422, + [SMALL_STATE(2037)] = 95461, + [SMALL_STATE(2038)] = 95504, + [SMALL_STATE(2039)] = 95543, + [SMALL_STATE(2040)] = 95616, + [SMALL_STATE(2041)] = 95655, + [SMALL_STATE(2042)] = 95728, + [SMALL_STATE(2043)] = 95801, + [SMALL_STATE(2044)] = 95840, + [SMALL_STATE(2045)] = 95883, + [SMALL_STATE(2046)] = 95956, + [SMALL_STATE(2047)] = 96029, + [SMALL_STATE(2048)] = 96068, + [SMALL_STATE(2049)] = 96107, + [SMALL_STATE(2050)] = 96180, + [SMALL_STATE(2051)] = 96219, + [SMALL_STATE(2052)] = 96290, + [SMALL_STATE(2053)] = 96363, + [SMALL_STATE(2054)] = 96402, + [SMALL_STATE(2055)] = 96441, + [SMALL_STATE(2056)] = 96514, + [SMALL_STATE(2057)] = 96587, + [SMALL_STATE(2058)] = 96626, + [SMALL_STATE(2059)] = 96699, + [SMALL_STATE(2060)] = 96772, + [SMALL_STATE(2061)] = 96815, + [SMALL_STATE(2062)] = 96888, + [SMALL_STATE(2063)] = 96934, + [SMALL_STATE(2064)] = 96980, + [SMALL_STATE(2065)] = 97018, + [SMALL_STATE(2066)] = 97064, + [SMALL_STATE(2067)] = 97136, + [SMALL_STATE(2068)] = 97206, + [SMALL_STATE(2069)] = 97252, + [SMALL_STATE(2070)] = 97324, + [SMALL_STATE(2071)] = 97362, + [SMALL_STATE(2072)] = 97434, + [SMALL_STATE(2073)] = 97506, + [SMALL_STATE(2074)] = 97544, + [SMALL_STATE(2075)] = 97582, + [SMALL_STATE(2076)] = 97620, + [SMALL_STATE(2077)] = 97692, + [SMALL_STATE(2078)] = 97730, + [SMALL_STATE(2079)] = 97776, + [SMALL_STATE(2080)] = 97814, + [SMALL_STATE(2081)] = 97852, + [SMALL_STATE(2082)] = 97898, + [SMALL_STATE(2083)] = 97968, + [SMALL_STATE(2084)] = 98040, + [SMALL_STATE(2085)] = 98078, + [SMALL_STATE(2086)] = 98116, + [SMALL_STATE(2087)] = 98154, + [SMALL_STATE(2088)] = 98192, + [SMALL_STATE(2089)] = 98264, + [SMALL_STATE(2090)] = 98334, + [SMALL_STATE(2091)] = 98406, + [SMALL_STATE(2092)] = 98478, + [SMALL_STATE(2093)] = 98550, + [SMALL_STATE(2094)] = 98588, + [SMALL_STATE(2095)] = 98626, + [SMALL_STATE(2096)] = 98672, + [SMALL_STATE(2097)] = 98710, + [SMALL_STATE(2098)] = 98748, + [SMALL_STATE(2099)] = 98794, + [SMALL_STATE(2100)] = 98832, + [SMALL_STATE(2101)] = 98870, + [SMALL_STATE(2102)] = 98908, + [SMALL_STATE(2103)] = 98980, + [SMALL_STATE(2104)] = 99049, + [SMALL_STATE(2105)] = 99118, + [SMALL_STATE(2106)] = 99185, + [SMALL_STATE(2107)] = 99254, + [SMALL_STATE(2108)] = 99323, + [SMALL_STATE(2109)] = 99392, + [SMALL_STATE(2110)] = 99461, + [SMALL_STATE(2111)] = 99530, + [SMALL_STATE(2112)] = 99599, + [SMALL_STATE(2113)] = 99668, + [SMALL_STATE(2114)] = 99737, + [SMALL_STATE(2115)] = 99806, + [SMALL_STATE(2116)] = 99881, + [SMALL_STATE(2117)] = 99950, + [SMALL_STATE(2118)] = 100019, + [SMALL_STATE(2119)] = 100086, + [SMALL_STATE(2120)] = 100155, + [SMALL_STATE(2121)] = 100224, + [SMALL_STATE(2122)] = 100293, + [SMALL_STATE(2123)] = 100362, + [SMALL_STATE(2124)] = 100427, + [SMALL_STATE(2125)] = 100496, + [SMALL_STATE(2126)] = 100565, + [SMALL_STATE(2127)] = 100634, + [SMALL_STATE(2128)] = 100675, + [SMALL_STATE(2129)] = 100750, + [SMALL_STATE(2130)] = 100819, + [SMALL_STATE(2131)] = 100888, + [SMALL_STATE(2132)] = 100955, + [SMALL_STATE(2133)] = 101022, + [SMALL_STATE(2134)] = 101091, + [SMALL_STATE(2135)] = 101160, + [SMALL_STATE(2136)] = 101227, + [SMALL_STATE(2137)] = 101294, + [SMALL_STATE(2138)] = 101363, + [SMALL_STATE(2139)] = 101432, + [SMALL_STATE(2140)] = 101499, + [SMALL_STATE(2141)] = 101566, + [SMALL_STATE(2142)] = 101635, + [SMALL_STATE(2143)] = 101704, + [SMALL_STATE(2144)] = 101773, + [SMALL_STATE(2145)] = 101848, + [SMALL_STATE(2146)] = 101917, + [SMALL_STATE(2147)] = 101986, + [SMALL_STATE(2148)] = 102053, + [SMALL_STATE(2149)] = 102120, + [SMALL_STATE(2150)] = 102189, + [SMALL_STATE(2151)] = 102258, + [SMALL_STATE(2152)] = 102327, + [SMALL_STATE(2153)] = 102396, + [SMALL_STATE(2154)] = 102465, + [SMALL_STATE(2155)] = 102534, + [SMALL_STATE(2156)] = 102603, + [SMALL_STATE(2157)] = 102672, + [SMALL_STATE(2158)] = 102713, + [SMALL_STATE(2159)] = 102782, + [SMALL_STATE(2160)] = 102851, + [SMALL_STATE(2161)] = 102920, + [SMALL_STATE(2162)] = 102965, + [SMALL_STATE(2163)] = 103010, + [SMALL_STATE(2164)] = 103079, + [SMALL_STATE(2165)] = 103148, + [SMALL_STATE(2166)] = 103217, + [SMALL_STATE(2167)] = 103286, + [SMALL_STATE(2168)] = 103355, + [SMALL_STATE(2169)] = 103424, + [SMALL_STATE(2170)] = 103493, + [SMALL_STATE(2171)] = 103562, + [SMALL_STATE(2172)] = 103631, + [SMALL_STATE(2173)] = 103700, + [SMALL_STATE(2174)] = 103769, + [SMALL_STATE(2175)] = 103838, + [SMALL_STATE(2176)] = 103879, + [SMALL_STATE(2177)] = 103948, + [SMALL_STATE(2178)] = 104017, + [SMALL_STATE(2179)] = 104086, + [SMALL_STATE(2180)] = 104155, + [SMALL_STATE(2181)] = 104196, + [SMALL_STATE(2182)] = 104265, + [SMALL_STATE(2183)] = 104329, + [SMALL_STATE(2184)] = 104397, + [SMALL_STATE(2185)] = 104461, + [SMALL_STATE(2186)] = 104525, + [SMALL_STATE(2187)] = 104589, + [SMALL_STATE(2188)] = 104653, + [SMALL_STATE(2189)] = 104717, + [SMALL_STATE(2190)] = 104781, + [SMALL_STATE(2191)] = 104845, + [SMALL_STATE(2192)] = 104909, + [SMALL_STATE(2193)] = 104973, + [SMALL_STATE(2194)] = 105041, + [SMALL_STATE(2195)] = 105109, + [SMALL_STATE(2196)] = 105145, + [SMALL_STATE(2197)] = 105209, + [SMALL_STATE(2198)] = 105273, + [SMALL_STATE(2199)] = 105337, + [SMALL_STATE(2200)] = 105401, + [SMALL_STATE(2201)] = 105465, + [SMALL_STATE(2202)] = 105529, + [SMALL_STATE(2203)] = 105597, + [SMALL_STATE(2204)] = 105665, + [SMALL_STATE(2205)] = 105733, + [SMALL_STATE(2206)] = 105797, + [SMALL_STATE(2207)] = 105861, + [SMALL_STATE(2208)] = 105925, + [SMALL_STATE(2209)] = 105989, + [SMALL_STATE(2210)] = 106053, + [SMALL_STATE(2211)] = 106117, + [SMALL_STATE(2212)] = 106181, + [SMALL_STATE(2213)] = 106245, + [SMALL_STATE(2214)] = 106313, + [SMALL_STATE(2215)] = 106377, + [SMALL_STATE(2216)] = 106441, + [SMALL_STATE(2217)] = 106505, + [SMALL_STATE(2218)] = 106569, + [SMALL_STATE(2219)] = 106633, + [SMALL_STATE(2220)] = 106697, + [SMALL_STATE(2221)] = 106761, + [SMALL_STATE(2222)] = 106825, + [SMALL_STATE(2223)] = 106889, + [SMALL_STATE(2224)] = 106953, + [SMALL_STATE(2225)] = 107017, + [SMALL_STATE(2226)] = 107085, + [SMALL_STATE(2227)] = 107149, + [SMALL_STATE(2228)] = 107213, + [SMALL_STATE(2229)] = 107277, + [SMALL_STATE(2230)] = 107341, + [SMALL_STATE(2231)] = 107405, + [SMALL_STATE(2232)] = 107469, + [SMALL_STATE(2233)] = 107533, + [SMALL_STATE(2234)] = 107597, + [SMALL_STATE(2235)] = 107661, + [SMALL_STATE(2236)] = 107725, + [SMALL_STATE(2237)] = 107789, + [SMALL_STATE(2238)] = 107853, + [SMALL_STATE(2239)] = 107917, + [SMALL_STATE(2240)] = 107981, + [SMALL_STATE(2241)] = 108049, + [SMALL_STATE(2242)] = 108113, + [SMALL_STATE(2243)] = 108177, + [SMALL_STATE(2244)] = 108241, + [SMALL_STATE(2245)] = 108305, + [SMALL_STATE(2246)] = 108369, + [SMALL_STATE(2247)] = 108433, + [SMALL_STATE(2248)] = 108497, + [SMALL_STATE(2249)] = 108565, + [SMALL_STATE(2250)] = 108629, + [SMALL_STATE(2251)] = 108693, + [SMALL_STATE(2252)] = 108757, + [SMALL_STATE(2253)] = 108821, + [SMALL_STATE(2254)] = 108889, + [SMALL_STATE(2255)] = 108957, + [SMALL_STATE(2256)] = 109025, + [SMALL_STATE(2257)] = 109089, + [SMALL_STATE(2258)] = 109157, + [SMALL_STATE(2259)] = 109221, + [SMALL_STATE(2260)] = 109289, + [SMALL_STATE(2261)] = 109353, + [SMALL_STATE(2262)] = 109417, + [SMALL_STATE(2263)] = 109481, + [SMALL_STATE(2264)] = 109545, + [SMALL_STATE(2265)] = 109613, + [SMALL_STATE(2266)] = 109681, + [SMALL_STATE(2267)] = 109745, + [SMALL_STATE(2268)] = 109813, + [SMALL_STATE(2269)] = 109881, + [SMALL_STATE(2270)] = 109949, + [SMALL_STATE(2271)] = 110013, + [SMALL_STATE(2272)] = 110077, + [SMALL_STATE(2273)] = 110145, + [SMALL_STATE(2274)] = 110209, + [SMALL_STATE(2275)] = 110277, + [SMALL_STATE(2276)] = 110341, + [SMALL_STATE(2277)] = 110409, + [SMALL_STATE(2278)] = 110477, + [SMALL_STATE(2279)] = 110541, + [SMALL_STATE(2280)] = 110605, + [SMALL_STATE(2281)] = 110673, + [SMALL_STATE(2282)] = 110737, + [SMALL_STATE(2283)] = 110801, + [SMALL_STATE(2284)] = 110865, + [SMALL_STATE(2285)] = 110933, + [SMALL_STATE(2286)] = 110997, + [SMALL_STATE(2287)] = 111061, + [SMALL_STATE(2288)] = 111129, + [SMALL_STATE(2289)] = 111193, + [SMALL_STATE(2290)] = 111261, + [SMALL_STATE(2291)] = 111325, + [SMALL_STATE(2292)] = 111393, + [SMALL_STATE(2293)] = 111461, + [SMALL_STATE(2294)] = 111525, + [SMALL_STATE(2295)] = 111593, + [SMALL_STATE(2296)] = 111665, + [SMALL_STATE(2297)] = 111733, + [SMALL_STATE(2298)] = 111797, + [SMALL_STATE(2299)] = 111833, + [SMALL_STATE(2300)] = 111901, + [SMALL_STATE(2301)] = 111965, + [SMALL_STATE(2302)] = 112029, + [SMALL_STATE(2303)] = 112097, + [SMALL_STATE(2304)] = 112165, + [SMALL_STATE(2305)] = 112233, + [SMALL_STATE(2306)] = 112301, + [SMALL_STATE(2307)] = 112369, + [SMALL_STATE(2308)] = 112437, + [SMALL_STATE(2309)] = 112505, + [SMALL_STATE(2310)] = 112541, + [SMALL_STATE(2311)] = 112605, + [SMALL_STATE(2312)] = 112673, + [SMALL_STATE(2313)] = 112741, + [SMALL_STATE(2314)] = 112805, + [SMALL_STATE(2315)] = 112869, + [SMALL_STATE(2316)] = 112933, + [SMALL_STATE(2317)] = 112997, + [SMALL_STATE(2318)] = 113065, + [SMALL_STATE(2319)] = 113129, + [SMALL_STATE(2320)] = 113193, + [SMALL_STATE(2321)] = 113257, + [SMALL_STATE(2322)] = 113321, + [SMALL_STATE(2323)] = 113385, + [SMALL_STATE(2324)] = 113449, + [SMALL_STATE(2325)] = 113513, + [SMALL_STATE(2326)] = 113581, + [SMALL_STATE(2327)] = 113645, + [SMALL_STATE(2328)] = 113709, + [SMALL_STATE(2329)] = 113777, + [SMALL_STATE(2330)] = 113841, + [SMALL_STATE(2331)] = 113905, + [SMALL_STATE(2332)] = 113969, + [SMALL_STATE(2333)] = 114033, + [SMALL_STATE(2334)] = 114097, + [SMALL_STATE(2335)] = 114165, + [SMALL_STATE(2336)] = 114229, + [SMALL_STATE(2337)] = 114293, + [SMALL_STATE(2338)] = 114365, + [SMALL_STATE(2339)] = 114433, + [SMALL_STATE(2340)] = 114497, + [SMALL_STATE(2341)] = 114565, + [SMALL_STATE(2342)] = 114629, + [SMALL_STATE(2343)] = 114693, + [SMALL_STATE(2344)] = 114757, + [SMALL_STATE(2345)] = 114821, + [SMALL_STATE(2346)] = 114885, + [SMALL_STATE(2347)] = 114949, + [SMALL_STATE(2348)] = 115013, + [SMALL_STATE(2349)] = 115077, + [SMALL_STATE(2350)] = 115141, + [SMALL_STATE(2351)] = 115205, + [SMALL_STATE(2352)] = 115269, + [SMALL_STATE(2353)] = 115333, + [SMALL_STATE(2354)] = 115397, + [SMALL_STATE(2355)] = 115461, + [SMALL_STATE(2356)] = 115525, + [SMALL_STATE(2357)] = 115589, + [SMALL_STATE(2358)] = 115653, + [SMALL_STATE(2359)] = 115717, + [SMALL_STATE(2360)] = 115781, + [SMALL_STATE(2361)] = 115845, + [SMALL_STATE(2362)] = 115909, + [SMALL_STATE(2363)] = 115973, + [SMALL_STATE(2364)] = 116037, + [SMALL_STATE(2365)] = 116101, + [SMALL_STATE(2366)] = 116169, + [SMALL_STATE(2367)] = 116233, + [SMALL_STATE(2368)] = 116301, + [SMALL_STATE(2369)] = 116369, + [SMALL_STATE(2370)] = 116433, + [SMALL_STATE(2371)] = 116497, + [SMALL_STATE(2372)] = 116561, + [SMALL_STATE(2373)] = 116625, + [SMALL_STATE(2374)] = 116697, + [SMALL_STATE(2375)] = 116761, + [SMALL_STATE(2376)] = 116825, + [SMALL_STATE(2377)] = 116889, + [SMALL_STATE(2378)] = 116953, + [SMALL_STATE(2379)] = 117017, + [SMALL_STATE(2380)] = 117081, + [SMALL_STATE(2381)] = 117145, + [SMALL_STATE(2382)] = 117209, + [SMALL_STATE(2383)] = 117273, + [SMALL_STATE(2384)] = 117337, + [SMALL_STATE(2385)] = 117405, + [SMALL_STATE(2386)] = 117469, + [SMALL_STATE(2387)] = 117533, + [SMALL_STATE(2388)] = 117597, + [SMALL_STATE(2389)] = 117633, + [SMALL_STATE(2390)] = 117697, + [SMALL_STATE(2391)] = 117765, + [SMALL_STATE(2392)] = 117829, + [SMALL_STATE(2393)] = 117893, + [SMALL_STATE(2394)] = 117957, + [SMALL_STATE(2395)] = 118021, + [SMALL_STATE(2396)] = 118085, + [SMALL_STATE(2397)] = 118127, + [SMALL_STATE(2398)] = 118195, + [SMALL_STATE(2399)] = 118259, + [SMALL_STATE(2400)] = 118327, + [SMALL_STATE(2401)] = 118391, + [SMALL_STATE(2402)] = 118455, + [SMALL_STATE(2403)] = 118519, + [SMALL_STATE(2404)] = 118583, + [SMALL_STATE(2405)] = 118647, + [SMALL_STATE(2406)] = 118683, + [SMALL_STATE(2407)] = 118719, + [SMALL_STATE(2408)] = 118783, + [SMALL_STATE(2409)] = 118847, + [SMALL_STATE(2410)] = 118883, + [SMALL_STATE(2411)] = 118951, + [SMALL_STATE(2412)] = 119015, + [SMALL_STATE(2413)] = 119079, + [SMALL_STATE(2414)] = 119143, + [SMALL_STATE(2415)] = 119207, + [SMALL_STATE(2416)] = 119271, + [SMALL_STATE(2417)] = 119335, + [SMALL_STATE(2418)] = 119399, + [SMALL_STATE(2419)] = 119440, + [SMALL_STATE(2420)] = 119481, + [SMALL_STATE(2421)] = 119522, + [SMALL_STATE(2422)] = 119563, + [SMALL_STATE(2423)] = 119602, + [SMALL_STATE(2424)] = 119643, + [SMALL_STATE(2425)] = 119684, + [SMALL_STATE(2426)] = 119729, + [SMALL_STATE(2427)] = 119780, + [SMALL_STATE(2428)] = 119825, + [SMALL_STATE(2429)] = 119862, + [SMALL_STATE(2430)] = 119899, + [SMALL_STATE(2431)] = 119936, + [SMALL_STATE(2432)] = 119973, + [SMALL_STATE(2433)] = 120014, + [SMALL_STATE(2434)] = 120055, + [SMALL_STATE(2435)] = 120092, + [SMALL_STATE(2436)] = 120133, + [SMALL_STATE(2437)] = 120184, + [SMALL_STATE(2438)] = 120225, + [SMALL_STATE(2439)] = 120259, + [SMALL_STATE(2440)] = 120293, + [SMALL_STATE(2441)] = 120333, + [SMALL_STATE(2442)] = 120371, + [SMALL_STATE(2443)] = 120411, + [SMALL_STATE(2444)] = 120451, + [SMALL_STATE(2445)] = 120491, + [SMALL_STATE(2446)] = 120531, + [SMALL_STATE(2447)] = 120569, + [SMALL_STATE(2448)] = 120609, + [SMALL_STATE(2449)] = 120647, + [SMALL_STATE(2450)] = 120683, + [SMALL_STATE(2451)] = 120733, + [SMALL_STATE(2452)] = 120767, + [SMALL_STATE(2453)] = 120801, + [SMALL_STATE(2454)] = 120851, + [SMALL_STATE(2455)] = 120891, + [SMALL_STATE(2456)] = 120931, + [SMALL_STATE(2457)] = 120971, + [SMALL_STATE(2458)] = 121011, + [SMALL_STATE(2459)] = 121051, + [SMALL_STATE(2460)] = 121091, + [SMALL_STATE(2461)] = 121125, + [SMALL_STATE(2462)] = 121169, + [SMALL_STATE(2463)] = 121213, + [SMALL_STATE(2464)] = 121247, + [SMALL_STATE(2465)] = 121287, + [SMALL_STATE(2466)] = 121321, + [SMALL_STATE(2467)] = 121355, + [SMALL_STATE(2468)] = 121389, + [SMALL_STATE(2469)] = 121423, + [SMALL_STATE(2470)] = 121457, + [SMALL_STATE(2471)] = 121491, + [SMALL_STATE(2472)] = 121531, + [SMALL_STATE(2473)] = 121571, + [SMALL_STATE(2474)] = 121605, + [SMALL_STATE(2475)] = 121639, + [SMALL_STATE(2476)] = 121677, + [SMALL_STATE(2477)] = 121717, + [SMALL_STATE(2478)] = 121757, + [SMALL_STATE(2479)] = 121797, + [SMALL_STATE(2480)] = 121831, + [SMALL_STATE(2481)] = 121865, + [SMALL_STATE(2482)] = 121905, + [SMALL_STATE(2483)] = 121943, + [SMALL_STATE(2484)] = 121977, + [SMALL_STATE(2485)] = 122011, + [SMALL_STATE(2486)] = 122045, + [SMALL_STATE(2487)] = 122079, + [SMALL_STATE(2488)] = 122113, + [SMALL_STATE(2489)] = 122147, + [SMALL_STATE(2490)] = 122181, + [SMALL_STATE(2491)] = 122215, + [SMALL_STATE(2492)] = 122249, + [SMALL_STATE(2493)] = 122283, + [SMALL_STATE(2494)] = 122323, + [SMALL_STATE(2495)] = 122357, + [SMALL_STATE(2496)] = 122391, + [SMALL_STATE(2497)] = 122425, + [SMALL_STATE(2498)] = 122459, + [SMALL_STATE(2499)] = 122499, + [SMALL_STATE(2500)] = 122533, + [SMALL_STATE(2501)] = 122567, + [SMALL_STATE(2502)] = 122601, + [SMALL_STATE(2503)] = 122635, + [SMALL_STATE(2504)] = 122669, + [SMALL_STATE(2505)] = 122709, + [SMALL_STATE(2506)] = 122743, + [SMALL_STATE(2507)] = 122777, + [SMALL_STATE(2508)] = 122811, + [SMALL_STATE(2509)] = 122845, + [SMALL_STATE(2510)] = 122879, + [SMALL_STATE(2511)] = 122913, + [SMALL_STATE(2512)] = 122947, + [SMALL_STATE(2513)] = 122984, + [SMALL_STATE(2514)] = 123017, + [SMALL_STATE(2515)] = 123076, + [SMALL_STATE(2516)] = 123109, + [SMALL_STATE(2517)] = 123168, + [SMALL_STATE(2518)] = 123201, + [SMALL_STATE(2519)] = 123260, + [SMALL_STATE(2520)] = 123299, + [SMALL_STATE(2521)] = 123364, + [SMALL_STATE(2522)] = 123423, + [SMALL_STATE(2523)] = 123462, + [SMALL_STATE(2524)] = 123527, + [SMALL_STATE(2525)] = 123586, + [SMALL_STATE(2526)] = 123625, + [SMALL_STATE(2527)] = 123664, + [SMALL_STATE(2528)] = 123729, + [SMALL_STATE(2529)] = 123794, + [SMALL_STATE(2530)] = 123827, + [SMALL_STATE(2531)] = 123860, + [SMALL_STATE(2532)] = 123893, + [SMALL_STATE(2533)] = 123958, + [SMALL_STATE(2534)] = 124017, + [SMALL_STATE(2535)] = 124054, + [SMALL_STATE(2536)] = 124113, + [SMALL_STATE(2537)] = 124172, + [SMALL_STATE(2538)] = 124231, + [SMALL_STATE(2539)] = 124296, + [SMALL_STATE(2540)] = 124355, + [SMALL_STATE(2541)] = 124414, + [SMALL_STATE(2542)] = 124451, + [SMALL_STATE(2543)] = 124516, + [SMALL_STATE(2544)] = 124553, + [SMALL_STATE(2545)] = 124592, + [SMALL_STATE(2546)] = 124651, + [SMALL_STATE(2547)] = 124684, + [SMALL_STATE(2548)] = 124721, + [SMALL_STATE(2549)] = 124764, + [SMALL_STATE(2550)] = 124801, + [SMALL_STATE(2551)] = 124834, + [SMALL_STATE(2552)] = 124867, + [SMALL_STATE(2553)] = 124926, + [SMALL_STATE(2554)] = 124985, + [SMALL_STATE(2555)] = 125018, + [SMALL_STATE(2556)] = 125077, + [SMALL_STATE(2557)] = 125112, + [SMALL_STATE(2558)] = 125145, + [SMALL_STATE(2559)] = 125184, + [SMALL_STATE(2560)] = 125217, + [SMALL_STATE(2561)] = 125256, + [SMALL_STATE(2562)] = 125295, + [SMALL_STATE(2563)] = 125338, + [SMALL_STATE(2564)] = 125371, + [SMALL_STATE(2565)] = 125404, + [SMALL_STATE(2566)] = 125437, + [SMALL_STATE(2567)] = 125470, + [SMALL_STATE(2568)] = 125535, + [SMALL_STATE(2569)] = 125574, + [SMALL_STATE(2570)] = 125607, + [SMALL_STATE(2571)] = 125640, + [SMALL_STATE(2572)] = 125673, + [SMALL_STATE(2573)] = 125706, + [SMALL_STATE(2574)] = 125745, + [SMALL_STATE(2575)] = 125778, + [SMALL_STATE(2576)] = 125811, + [SMALL_STATE(2577)] = 125850, + [SMALL_STATE(2578)] = 125909, + [SMALL_STATE(2579)] = 125958, + [SMALL_STATE(2580)] = 126007, + [SMALL_STATE(2581)] = 126066, + [SMALL_STATE(2582)] = 126125, + [SMALL_STATE(2583)] = 126184, + [SMALL_STATE(2584)] = 126217, + [SMALL_STATE(2585)] = 126256, + [SMALL_STATE(2586)] = 126315, + [SMALL_STATE(2587)] = 126374, + [SMALL_STATE(2588)] = 126411, + [SMALL_STATE(2589)] = 126450, + [SMALL_STATE(2590)] = 126515, + [SMALL_STATE(2591)] = 126554, + [SMALL_STATE(2592)] = 126587, + [SMALL_STATE(2593)] = 126646, + [SMALL_STATE(2594)] = 126705, + [SMALL_STATE(2595)] = 126738, + [SMALL_STATE(2596)] = 126777, + [SMALL_STATE(2597)] = 126836, + [SMALL_STATE(2598)] = 126879, + [SMALL_STATE(2599)] = 126918, + [SMALL_STATE(2600)] = 126951, + [SMALL_STATE(2601)] = 126990, + [SMALL_STATE(2602)] = 127025, + [SMALL_STATE(2603)] = 127084, + [SMALL_STATE(2604)] = 127143, + [SMALL_STATE(2605)] = 127180, + [SMALL_STATE(2606)] = 127219, + [SMALL_STATE(2607)] = 127252, + [SMALL_STATE(2608)] = 127285, + [SMALL_STATE(2609)] = 127344, + [SMALL_STATE(2610)] = 127403, + [SMALL_STATE(2611)] = 127436, + [SMALL_STATE(2612)] = 127469, + [SMALL_STATE(2613)] = 127528, + [SMALL_STATE(2614)] = 127565, + [SMALL_STATE(2615)] = 127598, + [SMALL_STATE(2616)] = 127631, + [SMALL_STATE(2617)] = 127690, + [SMALL_STATE(2618)] = 127723, + [SMALL_STATE(2619)] = 127782, + [SMALL_STATE(2620)] = 127825, + [SMALL_STATE(2621)] = 127864, + [SMALL_STATE(2622)] = 127903, + [SMALL_STATE(2623)] = 127952, + [SMALL_STATE(2624)] = 127995, + [SMALL_STATE(2625)] = 128054, + [SMALL_STATE(2626)] = 128093, + [SMALL_STATE(2627)] = 128128, + [SMALL_STATE(2628)] = 128171, + [SMALL_STATE(2629)] = 128230, + [SMALL_STATE(2630)] = 128289, + [SMALL_STATE(2631)] = 128348, + [SMALL_STATE(2632)] = 128387, + [SMALL_STATE(2633)] = 128446, + [SMALL_STATE(2634)] = 128505, + [SMALL_STATE(2635)] = 128542, + [SMALL_STATE(2636)] = 128575, + [SMALL_STATE(2637)] = 128614, + [SMALL_STATE(2638)] = 128673, + [SMALL_STATE(2639)] = 128732, + [SMALL_STATE(2640)] = 128791, + [SMALL_STATE(2641)] = 128850, + [SMALL_STATE(2642)] = 128887, + [SMALL_STATE(2643)] = 128946, + [SMALL_STATE(2644)] = 128995, + [SMALL_STATE(2645)] = 129032, + [SMALL_STATE(2646)] = 129091, + [SMALL_STATE(2647)] = 129150, + [SMALL_STATE(2648)] = 129199, + [SMALL_STATE(2649)] = 129236, + [SMALL_STATE(2650)] = 129275, + [SMALL_STATE(2651)] = 129314, + [SMALL_STATE(2652)] = 129347, + [SMALL_STATE(2653)] = 129406, + [SMALL_STATE(2654)] = 129465, + [SMALL_STATE(2655)] = 129504, + [SMALL_STATE(2656)] = 129543, + [SMALL_STATE(2657)] = 129582, + [SMALL_STATE(2658)] = 129621, + [SMALL_STATE(2659)] = 129660, + [SMALL_STATE(2660)] = 129719, + [SMALL_STATE(2661)] = 129768, + [SMALL_STATE(2662)] = 129807, + [SMALL_STATE(2663)] = 129866, + [SMALL_STATE(2664)] = 129905, + [SMALL_STATE(2665)] = 129944, + [SMALL_STATE(2666)] = 129983, + [SMALL_STATE(2667)] = 130042, + [SMALL_STATE(2668)] = 130081, + [SMALL_STATE(2669)] = 130114, + [SMALL_STATE(2670)] = 130147, + [SMALL_STATE(2671)] = 130180, + [SMALL_STATE(2672)] = 130219, + [SMALL_STATE(2673)] = 130258, + [SMALL_STATE(2674)] = 130291, + [SMALL_STATE(2675)] = 130330, + [SMALL_STATE(2676)] = 130369, + [SMALL_STATE(2677)] = 130408, + [SMALL_STATE(2678)] = 130441, + [SMALL_STATE(2679)] = 130487, + [SMALL_STATE(2680)] = 130525, + [SMALL_STATE(2681)] = 130563, + [SMALL_STATE(2682)] = 130595, + [SMALL_STATE(2683)] = 130627, + [SMALL_STATE(2684)] = 130665, + [SMALL_STATE(2685)] = 130697, + [SMALL_STATE(2686)] = 130743, + [SMALL_STATE(2687)] = 130781, + [SMALL_STATE(2688)] = 130813, + [SMALL_STATE(2689)] = 130851, + [SMALL_STATE(2690)] = 130889, + [SMALL_STATE(2691)] = 130927, + [SMALL_STATE(2692)] = 130989, + [SMALL_STATE(2693)] = 131021, + [SMALL_STATE(2694)] = 131059, + [SMALL_STATE(2695)] = 131097, + [SMALL_STATE(2696)] = 131135, + [SMALL_STATE(2697)] = 131173, + [SMALL_STATE(2698)] = 131211, + [SMALL_STATE(2699)] = 131249, + [SMALL_STATE(2700)] = 131287, + [SMALL_STATE(2701)] = 131325, + [SMALL_STATE(2702)] = 131363, + [SMALL_STATE(2703)] = 131401, + [SMALL_STATE(2704)] = 131443, + [SMALL_STATE(2705)] = 131481, + [SMALL_STATE(2706)] = 131513, + [SMALL_STATE(2707)] = 131551, + [SMALL_STATE(2708)] = 131583, + [SMALL_STATE(2709)] = 131615, + [SMALL_STATE(2710)] = 131647, + [SMALL_STATE(2711)] = 131685, + [SMALL_STATE(2712)] = 131723, + [SMALL_STATE(2713)] = 131761, + [SMALL_STATE(2714)] = 131793, + [SMALL_STATE(2715)] = 131831, + [SMALL_STATE(2716)] = 131877, + [SMALL_STATE(2717)] = 131915, + [SMALL_STATE(2718)] = 131947, + [SMALL_STATE(2719)] = 131985, + [SMALL_STATE(2720)] = 132023, + [SMALL_STATE(2721)] = 132085, + [SMALL_STATE(2722)] = 132123, + [SMALL_STATE(2723)] = 132185, + [SMALL_STATE(2724)] = 132223, + [SMALL_STATE(2725)] = 132261, + [SMALL_STATE(2726)] = 132299, + [SMALL_STATE(2727)] = 132337, + [SMALL_STATE(2728)] = 132373, + [SMALL_STATE(2729)] = 132411, + [SMALL_STATE(2730)] = 132445, + [SMALL_STATE(2731)] = 132507, + [SMALL_STATE(2732)] = 132545, + [SMALL_STATE(2733)] = 132577, + [SMALL_STATE(2734)] = 132615, + [SMALL_STATE(2735)] = 132661, + [SMALL_STATE(2736)] = 132703, + [SMALL_STATE(2737)] = 132741, + [SMALL_STATE(2738)] = 132779, + [SMALL_STATE(2739)] = 132817, + [SMALL_STATE(2740)] = 132855, + [SMALL_STATE(2741)] = 132893, + [SMALL_STATE(2742)] = 132925, + [SMALL_STATE(2743)] = 132957, + [SMALL_STATE(2744)] = 132989, + [SMALL_STATE(2745)] = 133051, + [SMALL_STATE(2746)] = 133113, + [SMALL_STATE(2747)] = 133145, + [SMALL_STATE(2748)] = 133177, + [SMALL_STATE(2749)] = 133209, + [SMALL_STATE(2750)] = 133241, + [SMALL_STATE(2751)] = 133273, + [SMALL_STATE(2752)] = 133311, + [SMALL_STATE(2753)] = 133373, + [SMALL_STATE(2754)] = 133411, + [SMALL_STATE(2755)] = 133443, + [SMALL_STATE(2756)] = 133505, + [SMALL_STATE(2757)] = 133537, + [SMALL_STATE(2758)] = 133569, + [SMALL_STATE(2759)] = 133601, + [SMALL_STATE(2760)] = 133663, + [SMALL_STATE(2761)] = 133695, + [SMALL_STATE(2762)] = 133727, + [SMALL_STATE(2763)] = 133759, + [SMALL_STATE(2764)] = 133797, + [SMALL_STATE(2765)] = 133828, + [SMALL_STATE(2766)] = 133859, + [SMALL_STATE(2767)] = 133890, + [SMALL_STATE(2768)] = 133921, + [SMALL_STATE(2769)] = 133952, + [SMALL_STATE(2770)] = 133983, + [SMALL_STATE(2771)] = 134014, + [SMALL_STATE(2772)] = 134045, + [SMALL_STATE(2773)] = 134076, + [SMALL_STATE(2774)] = 134107, + [SMALL_STATE(2775)] = 134138, + [SMALL_STATE(2776)] = 134169, + [SMALL_STATE(2777)] = 134200, + [SMALL_STATE(2778)] = 134231, + [SMALL_STATE(2779)] = 134262, + [SMALL_STATE(2780)] = 134293, + [SMALL_STATE(2781)] = 134324, + [SMALL_STATE(2782)] = 134355, + [SMALL_STATE(2783)] = 134390, + [SMALL_STATE(2784)] = 134427, + [SMALL_STATE(2785)] = 134458, + [SMALL_STATE(2786)] = 134489, + [SMALL_STATE(2787)] = 134520, + [SMALL_STATE(2788)] = 134551, + [SMALL_STATE(2789)] = 134582, + [SMALL_STATE(2790)] = 134613, + [SMALL_STATE(2791)] = 134650, + [SMALL_STATE(2792)] = 134687, + [SMALL_STATE(2793)] = 134718, + [SMALL_STATE(2794)] = 134755, + [SMALL_STATE(2795)] = 134792, + [SMALL_STATE(2796)] = 134829, + [SMALL_STATE(2797)] = 134866, + [SMALL_STATE(2798)] = 134903, + [SMALL_STATE(2799)] = 134934, + [SMALL_STATE(2800)] = 134971, + [SMALL_STATE(2801)] = 135002, + [SMALL_STATE(2802)] = 135039, + [SMALL_STATE(2803)] = 135076, + [SMALL_STATE(2804)] = 135107, + [SMALL_STATE(2805)] = 135138, + [SMALL_STATE(2806)] = 135175, + [SMALL_STATE(2807)] = 135206, + [SMALL_STATE(2808)] = 135243, + [SMALL_STATE(2809)] = 135274, + [SMALL_STATE(2810)] = 135305, + [SMALL_STATE(2811)] = 135336, + [SMALL_STATE(2812)] = 135367, + [SMALL_STATE(2813)] = 135398, + [SMALL_STATE(2814)] = 135429, + [SMALL_STATE(2815)] = 135460, + [SMALL_STATE(2816)] = 135499, + [SMALL_STATE(2817)] = 135536, + [SMALL_STATE(2818)] = 135573, + [SMALL_STATE(2819)] = 135610, + [SMALL_STATE(2820)] = 135647, + [SMALL_STATE(2821)] = 135684, + [SMALL_STATE(2822)] = 135715, + [SMALL_STATE(2823)] = 135746, + [SMALL_STATE(2824)] = 135777, + [SMALL_STATE(2825)] = 135816, + [SMALL_STATE(2826)] = 135847, + [SMALL_STATE(2827)] = 135878, + [SMALL_STATE(2828)] = 135915, + [SMALL_STATE(2829)] = 135946, + [SMALL_STATE(2830)] = 135977, + [SMALL_STATE(2831)] = 136008, + [SMALL_STATE(2832)] = 136039, + [SMALL_STATE(2833)] = 136070, + [SMALL_STATE(2834)] = 136101, + [SMALL_STATE(2835)] = 136132, + [SMALL_STATE(2836)] = 136163, + [SMALL_STATE(2837)] = 136194, + [SMALL_STATE(2838)] = 136225, + [SMALL_STATE(2839)] = 136256, + [SMALL_STATE(2840)] = 136287, + [SMALL_STATE(2841)] = 136318, + [SMALL_STATE(2842)] = 136349, + [SMALL_STATE(2843)] = 136380, + [SMALL_STATE(2844)] = 136411, + [SMALL_STATE(2845)] = 136442, + [SMALL_STATE(2846)] = 136473, + [SMALL_STATE(2847)] = 136504, + [SMALL_STATE(2848)] = 136535, + [SMALL_STATE(2849)] = 136566, + [SMALL_STATE(2850)] = 136597, + [SMALL_STATE(2851)] = 136628, + [SMALL_STATE(2852)] = 136659, + [SMALL_STATE(2853)] = 136690, + [SMALL_STATE(2854)] = 136721, + [SMALL_STATE(2855)] = 136752, + [SMALL_STATE(2856)] = 136783, + [SMALL_STATE(2857)] = 136814, + [SMALL_STATE(2858)] = 136845, + [SMALL_STATE(2859)] = 136876, + [SMALL_STATE(2860)] = 136907, + [SMALL_STATE(2861)] = 136938, + [SMALL_STATE(2862)] = 136969, + [SMALL_STATE(2863)] = 137000, + [SMALL_STATE(2864)] = 137031, + [SMALL_STATE(2865)] = 137062, + [SMALL_STATE(2866)] = 137093, + [SMALL_STATE(2867)] = 137124, + [SMALL_STATE(2868)] = 137155, + [SMALL_STATE(2869)] = 137186, + [SMALL_STATE(2870)] = 137217, + [SMALL_STATE(2871)] = 137248, + [SMALL_STATE(2872)] = 137279, + [SMALL_STATE(2873)] = 137310, + [SMALL_STATE(2874)] = 137341, + [SMALL_STATE(2875)] = 137372, + [SMALL_STATE(2876)] = 137403, + [SMALL_STATE(2877)] = 137434, + [SMALL_STATE(2878)] = 137469, + [SMALL_STATE(2879)] = 137500, + [SMALL_STATE(2880)] = 137536, + [SMALL_STATE(2881)] = 137572, + [SMALL_STATE(2882)] = 137608, + [SMALL_STATE(2883)] = 137644, + [SMALL_STATE(2884)] = 137680, + [SMALL_STATE(2885)] = 137716, + [SMALL_STATE(2886)] = 137772, + [SMALL_STATE(2887)] = 137808, + [SMALL_STATE(2888)] = 137844, + [SMALL_STATE(2889)] = 137878, + [SMALL_STATE(2890)] = 137912, + [SMALL_STATE(2891)] = 137946, + [SMALL_STATE(2892)] = 137982, + [SMALL_STATE(2893)] = 138016, + [SMALL_STATE(2894)] = 138046, + [SMALL_STATE(2895)] = 138082, + [SMALL_STATE(2896)] = 138118, + [SMALL_STATE(2897)] = 138174, + [SMALL_STATE(2898)] = 138230, + [SMALL_STATE(2899)] = 138286, + [SMALL_STATE(2900)] = 138342, + [SMALL_STATE(2901)] = 138398, + [SMALL_STATE(2902)] = 138434, + [SMALL_STATE(2903)] = 138470, + [SMALL_STATE(2904)] = 138506, + [SMALL_STATE(2905)] = 138535, + [SMALL_STATE(2906)] = 138566, + [SMALL_STATE(2907)] = 138609, + [SMALL_STATE(2908)] = 138644, + [SMALL_STATE(2909)] = 138679, + [SMALL_STATE(2910)] = 138710, + [SMALL_STATE(2911)] = 138741, + [SMALL_STATE(2912)] = 138780, + [SMALL_STATE(2913)] = 138811, + [SMALL_STATE(2914)] = 138842, + [SMALL_STATE(2915)] = 138877, + [SMALL_STATE(2916)] = 138908, + [SMALL_STATE(2917)] = 138939, + [SMALL_STATE(2918)] = 138970, + [SMALL_STATE(2919)] = 139001, + [SMALL_STATE(2920)] = 139032, + [SMALL_STATE(2921)] = 139063, + [SMALL_STATE(2922)] = 139110, + [SMALL_STATE(2923)] = 139151, + [SMALL_STATE(2924)] = 139182, + [SMALL_STATE(2925)] = 139211, + [SMALL_STATE(2926)] = 139240, + [SMALL_STATE(2927)] = 139269, + [SMALL_STATE(2928)] = 139298, + [SMALL_STATE(2929)] = 139327, + [SMALL_STATE(2930)] = 139360, + [SMALL_STATE(2931)] = 139389, + [SMALL_STATE(2932)] = 139420, + [SMALL_STATE(2933)] = 139455, + [SMALL_STATE(2934)] = 139484, + [SMALL_STATE(2935)] = 139513, + [SMALL_STATE(2936)] = 139544, + [SMALL_STATE(2937)] = 139579, + [SMALL_STATE(2938)] = 139614, + [SMALL_STATE(2939)] = 139645, + [SMALL_STATE(2940)] = 139674, + [SMALL_STATE(2941)] = 139709, + [SMALL_STATE(2942)] = 139740, + [SMALL_STATE(2943)] = 139783, + [SMALL_STATE(2944)] = 139812, + [SMALL_STATE(2945)] = 139843, + [SMALL_STATE(2946)] = 139878, + [SMALL_STATE(2947)] = 139925, + [SMALL_STATE(2948)] = 139954, + [SMALL_STATE(2949)] = 139983, + [SMALL_STATE(2950)] = 140012, + [SMALL_STATE(2951)] = 140043, + [SMALL_STATE(2952)] = 140072, + [SMALL_STATE(2953)] = 140107, + [SMALL_STATE(2954)] = 140146, + [SMALL_STATE(2955)] = 140175, + [SMALL_STATE(2956)] = 140222, + [SMALL_STATE(2957)] = 140257, + [SMALL_STATE(2958)] = 140288, + [SMALL_STATE(2959)] = 140321, + [SMALL_STATE(2960)] = 140350, + [SMALL_STATE(2961)] = 140379, + [SMALL_STATE(2962)] = 140410, + [SMALL_STATE(2963)] = 140441, + [SMALL_STATE(2964)] = 140472, + [SMALL_STATE(2965)] = 140503, + [SMALL_STATE(2966)] = 140534, + [SMALL_STATE(2967)] = 140567, + [SMALL_STATE(2968)] = 140598, + [SMALL_STATE(2969)] = 140627, + [SMALL_STATE(2970)] = 140655, + [SMALL_STATE(2971)] = 140689, + [SMALL_STATE(2972)] = 140717, + [SMALL_STATE(2973)] = 140749, + [SMALL_STATE(2974)] = 140781, + [SMALL_STATE(2975)] = 140813, + [SMALL_STATE(2976)] = 140841, + [SMALL_STATE(2977)] = 140869, + [SMALL_STATE(2978)] = 140903, + [SMALL_STATE(2979)] = 140937, + [SMALL_STATE(2980)] = 140965, + [SMALL_STATE(2981)] = 140993, + [SMALL_STATE(2982)] = 141027, + [SMALL_STATE(2983)] = 141055, + [SMALL_STATE(2984)] = 141083, + [SMALL_STATE(2985)] = 141111, + [SMALL_STATE(2986)] = 141139, + [SMALL_STATE(2987)] = 141167, + [SMALL_STATE(2988)] = 141195, + [SMALL_STATE(2989)] = 141223, + [SMALL_STATE(2990)] = 141255, + [SMALL_STATE(2991)] = 141283, + [SMALL_STATE(2992)] = 141311, + [SMALL_STATE(2993)] = 141343, + [SMALL_STATE(2994)] = 141371, + [SMALL_STATE(2995)] = 141399, + [SMALL_STATE(2996)] = 141431, + [SMALL_STATE(2997)] = 141459, + [SMALL_STATE(2998)] = 141487, + [SMALL_STATE(2999)] = 141521, + [SMALL_STATE(3000)] = 141549, + [SMALL_STATE(3001)] = 141591, + [SMALL_STATE(3002)] = 141619, + [SMALL_STATE(3003)] = 141647, + [SMALL_STATE(3004)] = 141691, + [SMALL_STATE(3005)] = 141719, + [SMALL_STATE(3006)] = 141747, + [SMALL_STATE(3007)] = 141775, + [SMALL_STATE(3008)] = 141803, + [SMALL_STATE(3009)] = 141831, + [SMALL_STATE(3010)] = 141859, + [SMALL_STATE(3011)] = 141889, + [SMALL_STATE(3012)] = 141923, + [SMALL_STATE(3013)] = 141951, + [SMALL_STATE(3014)] = 141979, + [SMALL_STATE(3015)] = 142013, + [SMALL_STATE(3016)] = 142045, + [SMALL_STATE(3017)] = 142079, + [SMALL_STATE(3018)] = 142113, + [SMALL_STATE(3019)] = 142145, + [SMALL_STATE(3020)] = 142177, + [SMALL_STATE(3021)] = 142209, + [SMALL_STATE(3022)] = 142237, + [SMALL_STATE(3023)] = 142269, + [SMALL_STATE(3024)] = 142303, + [SMALL_STATE(3025)] = 142335, + [SMALL_STATE(3026)] = 142369, + [SMALL_STATE(3027)] = 142403, + [SMALL_STATE(3028)] = 142431, + [SMALL_STATE(3029)] = 142463, + [SMALL_STATE(3030)] = 142505, + [SMALL_STATE(3031)] = 142537, + [SMALL_STATE(3032)] = 142565, + [SMALL_STATE(3033)] = 142593, + [SMALL_STATE(3034)] = 142627, + [SMALL_STATE(3035)] = 142655, + [SMALL_STATE(3036)] = 142683, + [SMALL_STATE(3037)] = 142711, + [SMALL_STATE(3038)] = 142739, + [SMALL_STATE(3039)] = 142767, + [SMALL_STATE(3040)] = 142801, + [SMALL_STATE(3041)] = 142829, + [SMALL_STATE(3042)] = 142857, + [SMALL_STATE(3043)] = 142885, + [SMALL_STATE(3044)] = 142913, + [SMALL_STATE(3045)] = 142941, + [SMALL_STATE(3046)] = 142969, + [SMALL_STATE(3047)] = 142997, + [SMALL_STATE(3048)] = 143025, + [SMALL_STATE(3049)] = 143053, + [SMALL_STATE(3050)] = 143081, + [SMALL_STATE(3051)] = 143109, + [SMALL_STATE(3052)] = 143137, + [SMALL_STATE(3053)] = 143171, + [SMALL_STATE(3054)] = 143203, + [SMALL_STATE(3055)] = 143231, + [SMALL_STATE(3056)] = 143259, + [SMALL_STATE(3057)] = 143293, + [SMALL_STATE(3058)] = 143321, + [SMALL_STATE(3059)] = 143349, + [SMALL_STATE(3060)] = 143377, + [SMALL_STATE(3061)] = 143405, + [SMALL_STATE(3062)] = 143433, + [SMALL_STATE(3063)] = 143461, + [SMALL_STATE(3064)] = 143489, + [SMALL_STATE(3065)] = 143517, + [SMALL_STATE(3066)] = 143545, + [SMALL_STATE(3067)] = 143573, + [SMALL_STATE(3068)] = 143607, + [SMALL_STATE(3069)] = 143635, + [SMALL_STATE(3070)] = 143662, + [SMALL_STATE(3071)] = 143689, + [SMALL_STATE(3072)] = 143722, + [SMALL_STATE(3073)] = 143749, + [SMALL_STATE(3074)] = 143776, + [SMALL_STATE(3075)] = 143807, + [SMALL_STATE(3076)] = 143834, + [SMALL_STATE(3077)] = 143861, + [SMALL_STATE(3078)] = 143892, + [SMALL_STATE(3079)] = 143925, + [SMALL_STATE(3080)] = 143952, + [SMALL_STATE(3081)] = 143979, + [SMALL_STATE(3082)] = 144006, + [SMALL_STATE(3083)] = 144033, + [SMALL_STATE(3084)] = 144060, + [SMALL_STATE(3085)] = 144091, + [SMALL_STATE(3086)] = 144118, + [SMALL_STATE(3087)] = 144145, + [SMALL_STATE(3088)] = 144172, + [SMALL_STATE(3089)] = 144199, + [SMALL_STATE(3090)] = 144230, + [SMALL_STATE(3091)] = 144261, + [SMALL_STATE(3092)] = 144288, + [SMALL_STATE(3093)] = 144319, + [SMALL_STATE(3094)] = 144346, + [SMALL_STATE(3095)] = 144377, + [SMALL_STATE(3096)] = 144408, + [SMALL_STATE(3097)] = 144439, + [SMALL_STATE(3098)] = 144466, + [SMALL_STATE(3099)] = 144493, + [SMALL_STATE(3100)] = 144520, + [SMALL_STATE(3101)] = 144551, + [SMALL_STATE(3102)] = 144582, + [SMALL_STATE(3103)] = 144609, + [SMALL_STATE(3104)] = 144636, + [SMALL_STATE(3105)] = 144663, + [SMALL_STATE(3106)] = 144690, + [SMALL_STATE(3107)] = 144717, + [SMALL_STATE(3108)] = 144748, + [SMALL_STATE(3109)] = 144797, + [SMALL_STATE(3110)] = 144824, + [SMALL_STATE(3111)] = 144851, + [SMALL_STATE(3112)] = 144878, + [SMALL_STATE(3113)] = 144905, + [SMALL_STATE(3114)] = 144932, + [SMALL_STATE(3115)] = 144963, + [SMALL_STATE(3116)] = 144998, + [SMALL_STATE(3117)] = 145025, + [SMALL_STATE(3118)] = 145052, + [SMALL_STATE(3119)] = 145079, + [SMALL_STATE(3120)] = 145110, + [SMALL_STATE(3121)] = 145137, + [SMALL_STATE(3122)] = 145168, + [SMALL_STATE(3123)] = 145199, + [SMALL_STATE(3124)] = 145226, + [SMALL_STATE(3125)] = 145259, + [SMALL_STATE(3126)] = 145286, + [SMALL_STATE(3127)] = 145313, + [SMALL_STATE(3128)] = 145348, + [SMALL_STATE(3129)] = 145375, + [SMALL_STATE(3130)] = 145402, + [SMALL_STATE(3131)] = 145435, + [SMALL_STATE(3132)] = 145461, + [SMALL_STATE(3133)] = 145487, + [SMALL_STATE(3134)] = 145517, + [SMALL_STATE(3135)] = 145543, + [SMALL_STATE(3136)] = 145569, + [SMALL_STATE(3137)] = 145595, + [SMALL_STATE(3138)] = 145627, + [SMALL_STATE(3139)] = 145653, + [SMALL_STATE(3140)] = 145679, + [SMALL_STATE(3141)] = 145705, + [SMALL_STATE(3142)] = 145731, + [SMALL_STATE(3143)] = 145761, + [SMALL_STATE(3144)] = 145787, + [SMALL_STATE(3145)] = 145813, + [SMALL_STATE(3146)] = 145847, + [SMALL_STATE(3147)] = 145877, + [SMALL_STATE(3148)] = 145907, + [SMALL_STATE(3149)] = 145937, + [SMALL_STATE(3150)] = 145963, + [SMALL_STATE(3151)] = 145989, + [SMALL_STATE(3152)] = 146015, + [SMALL_STATE(3153)] = 146041, + [SMALL_STATE(3154)] = 146067, + [SMALL_STATE(3155)] = 146093, + [SMALL_STATE(3156)] = 146125, + [SMALL_STATE(3157)] = 146151, + [SMALL_STATE(3158)] = 146185, + [SMALL_STATE(3159)] = 146211, + [SMALL_STATE(3160)] = 146243, + [SMALL_STATE(3161)] = 146275, + [SMALL_STATE(3162)] = 146307, + [SMALL_STATE(3163)] = 146333, + [SMALL_STATE(3164)] = 146359, + [SMALL_STATE(3165)] = 146392, + [SMALL_STATE(3166)] = 146417, + [SMALL_STATE(3167)] = 146442, + [SMALL_STATE(3168)] = 146467, + [SMALL_STATE(3169)] = 146492, + [SMALL_STATE(3170)] = 146517, + [SMALL_STATE(3171)] = 146542, + [SMALL_STATE(3172)] = 146567, + [SMALL_STATE(3173)] = 146592, + [SMALL_STATE(3174)] = 146625, + [SMALL_STATE(3175)] = 146650, + [SMALL_STATE(3176)] = 146683, + [SMALL_STATE(3177)] = 146708, + [SMALL_STATE(3178)] = 146733, + [SMALL_STATE(3179)] = 146758, + [SMALL_STATE(3180)] = 146783, + [SMALL_STATE(3181)] = 146808, + [SMALL_STATE(3182)] = 146833, + [SMALL_STATE(3183)] = 146858, + [SMALL_STATE(3184)] = 146882, + [SMALL_STATE(3185)] = 146906, + [SMALL_STATE(3186)] = 146930, + [SMALL_STATE(3187)] = 146954, + [SMALL_STATE(3188)] = 146978, + [SMALL_STATE(3189)] = 147002, + [SMALL_STATE(3190)] = 147026, + [SMALL_STATE(3191)] = 147050, + [SMALL_STATE(3192)] = 147074, + [SMALL_STATE(3193)] = 147098, + [SMALL_STATE(3194)] = 147122, + [SMALL_STATE(3195)] = 147146, + [SMALL_STATE(3196)] = 147170, + [SMALL_STATE(3197)] = 147194, + [SMALL_STATE(3198)] = 147218, + [SMALL_STATE(3199)] = 147242, + [SMALL_STATE(3200)] = 147266, + [SMALL_STATE(3201)] = 147290, + [SMALL_STATE(3202)] = 147314, + [SMALL_STATE(3203)] = 147352, + [SMALL_STATE(3204)] = 147376, + [SMALL_STATE(3205)] = 147412, + [SMALL_STATE(3206)] = 147436, + [SMALL_STATE(3207)] = 147460, + [SMALL_STATE(3208)] = 147484, + [SMALL_STATE(3209)] = 147508, + [SMALL_STATE(3210)] = 147532, + [SMALL_STATE(3211)] = 147556, + [SMALL_STATE(3212)] = 147580, + [SMALL_STATE(3213)] = 147604, + [SMALL_STATE(3214)] = 147628, + [SMALL_STATE(3215)] = 147652, + [SMALL_STATE(3216)] = 147676, + [SMALL_STATE(3217)] = 147700, + [SMALL_STATE(3218)] = 147724, + [SMALL_STATE(3219)] = 147748, + [SMALL_STATE(3220)] = 147772, + [SMALL_STATE(3221)] = 147796, + [SMALL_STATE(3222)] = 147820, + [SMALL_STATE(3223)] = 147844, + [SMALL_STATE(3224)] = 147868, + [SMALL_STATE(3225)] = 147892, + [SMALL_STATE(3226)] = 147916, + [SMALL_STATE(3227)] = 147940, + [SMALL_STATE(3228)] = 147964, + [SMALL_STATE(3229)] = 147988, + [SMALL_STATE(3230)] = 148012, + [SMALL_STATE(3231)] = 148036, + [SMALL_STATE(3232)] = 148065, + [SMALL_STATE(3233)] = 148094, + [SMALL_STATE(3234)] = 148125, + [SMALL_STATE(3235)] = 148156, + [SMALL_STATE(3236)] = 148187, + [SMALL_STATE(3237)] = 148216, + [SMALL_STATE(3238)] = 148247, + [SMALL_STATE(3239)] = 148278, + [SMALL_STATE(3240)] = 148309, + [SMALL_STATE(3241)] = 148340, + [SMALL_STATE(3242)] = 148369, + [SMALL_STATE(3243)] = 148400, + [SMALL_STATE(3244)] = 148438, + [SMALL_STATE(3245)] = 148476, + [SMALL_STATE(3246)] = 148514, + [SMALL_STATE(3247)] = 148552, + [SMALL_STATE(3248)] = 148590, + [SMALL_STATE(3249)] = 148628, + [SMALL_STATE(3250)] = 148666, + [SMALL_STATE(3251)] = 148704, + [SMALL_STATE(3252)] = 148742, + [SMALL_STATE(3253)] = 148780, + [SMALL_STATE(3254)] = 148818, + [SMALL_STATE(3255)] = 148856, + [SMALL_STATE(3256)] = 148894, + [SMALL_STATE(3257)] = 148932, + [SMALL_STATE(3258)] = 148970, + [SMALL_STATE(3259)] = 149008, + [SMALL_STATE(3260)] = 149046, + [SMALL_STATE(3261)] = 149084, + [SMALL_STATE(3262)] = 149122, + [SMALL_STATE(3263)] = 149160, + [SMALL_STATE(3264)] = 149198, + [SMALL_STATE(3265)] = 149236, + [SMALL_STATE(3266)] = 149274, + [SMALL_STATE(3267)] = 149312, + [SMALL_STATE(3268)] = 149350, + [SMALL_STATE(3269)] = 149388, + [SMALL_STATE(3270)] = 149426, + [SMALL_STATE(3271)] = 149464, + [SMALL_STATE(3272)] = 149502, + [SMALL_STATE(3273)] = 149540, + [SMALL_STATE(3274)] = 149578, + [SMALL_STATE(3275)] = 149616, + [SMALL_STATE(3276)] = 149654, + [SMALL_STATE(3277)] = 149692, + [SMALL_STATE(3278)] = 149730, + [SMALL_STATE(3279)] = 149768, + [SMALL_STATE(3280)] = 149806, + [SMALL_STATE(3281)] = 149844, + [SMALL_STATE(3282)] = 149882, + [SMALL_STATE(3283)] = 149920, + [SMALL_STATE(3284)] = 149958, + [SMALL_STATE(3285)] = 149996, + [SMALL_STATE(3286)] = 150034, + [SMALL_STATE(3287)] = 150072, + [SMALL_STATE(3288)] = 150110, + [SMALL_STATE(3289)] = 150148, + [SMALL_STATE(3290)] = 150186, + [SMALL_STATE(3291)] = 150224, + [SMALL_STATE(3292)] = 150262, + [SMALL_STATE(3293)] = 150300, + [SMALL_STATE(3294)] = 150338, + [SMALL_STATE(3295)] = 150376, + [SMALL_STATE(3296)] = 150414, + [SMALL_STATE(3297)] = 150452, + [SMALL_STATE(3298)] = 150490, + [SMALL_STATE(3299)] = 150528, + [SMALL_STATE(3300)] = 150566, + [SMALL_STATE(3301)] = 150604, + [SMALL_STATE(3302)] = 150632, + [SMALL_STATE(3303)] = 150670, + [SMALL_STATE(3304)] = 150708, + [SMALL_STATE(3305)] = 150746, + [SMALL_STATE(3306)] = 150784, + [SMALL_STATE(3307)] = 150822, + [SMALL_STATE(3308)] = 150860, + [SMALL_STATE(3309)] = 150898, + [SMALL_STATE(3310)] = 150936, + [SMALL_STATE(3311)] = 150974, + [SMALL_STATE(3312)] = 151012, + [SMALL_STATE(3313)] = 151050, + [SMALL_STATE(3314)] = 151088, + [SMALL_STATE(3315)] = 151126, + [SMALL_STATE(3316)] = 151164, + [SMALL_STATE(3317)] = 151202, + [SMALL_STATE(3318)] = 151240, + [SMALL_STATE(3319)] = 151278, + [SMALL_STATE(3320)] = 151316, + [SMALL_STATE(3321)] = 151354, + [SMALL_STATE(3322)] = 151392, + [SMALL_STATE(3323)] = 151430, + [SMALL_STATE(3324)] = 151468, + [SMALL_STATE(3325)] = 151506, + [SMALL_STATE(3326)] = 151544, + [SMALL_STATE(3327)] = 151582, + [SMALL_STATE(3328)] = 151620, + [SMALL_STATE(3329)] = 151658, + [SMALL_STATE(3330)] = 151696, + [SMALL_STATE(3331)] = 151734, + [SMALL_STATE(3332)] = 151772, + [SMALL_STATE(3333)] = 151810, + [SMALL_STATE(3334)] = 151848, + [SMALL_STATE(3335)] = 151886, + [SMALL_STATE(3336)] = 151911, + [SMALL_STATE(3337)] = 151936, + [SMALL_STATE(3338)] = 151961, + [SMALL_STATE(3339)] = 151986, + [SMALL_STATE(3340)] = 152011, + [SMALL_STATE(3341)] = 152036, + [SMALL_STATE(3342)] = 152061, + [SMALL_STATE(3343)] = 152086, + [SMALL_STATE(3344)] = 152111, + [SMALL_STATE(3345)] = 152136, + [SMALL_STATE(3346)] = 152161, + [SMALL_STATE(3347)] = 152186, + [SMALL_STATE(3348)] = 152211, + [SMALL_STATE(3349)] = 152236, + [SMALL_STATE(3350)] = 152261, + [SMALL_STATE(3351)] = 152286, + [SMALL_STATE(3352)] = 152311, + [SMALL_STATE(3353)] = 152336, + [SMALL_STATE(3354)] = 152361, + [SMALL_STATE(3355)] = 152386, + [SMALL_STATE(3356)] = 152411, + [SMALL_STATE(3357)] = 152436, + [SMALL_STATE(3358)] = 152461, + [SMALL_STATE(3359)] = 152486, + [SMALL_STATE(3360)] = 152511, + [SMALL_STATE(3361)] = 152536, + [SMALL_STATE(3362)] = 152561, + [SMALL_STATE(3363)] = 152586, + [SMALL_STATE(3364)] = 152611, + [SMALL_STATE(3365)] = 152636, + [SMALL_STATE(3366)] = 152661, + [SMALL_STATE(3367)] = 152686, + [SMALL_STATE(3368)] = 152711, + [SMALL_STATE(3369)] = 152736, + [SMALL_STATE(3370)] = 152761, + [SMALL_STATE(3371)] = 152786, + [SMALL_STATE(3372)] = 152811, + [SMALL_STATE(3373)] = 152836, + [SMALL_STATE(3374)] = 152861, + [SMALL_STATE(3375)] = 152886, + [SMALL_STATE(3376)] = 152911, + [SMALL_STATE(3377)] = 152936, + [SMALL_STATE(3378)] = 152961, + [SMALL_STATE(3379)] = 152986, + [SMALL_STATE(3380)] = 153011, + [SMALL_STATE(3381)] = 153036, + [SMALL_STATE(3382)] = 153061, + [SMALL_STATE(3383)] = 153086, + [SMALL_STATE(3384)] = 153111, + [SMALL_STATE(3385)] = 153138, + [SMALL_STATE(3386)] = 153163, + [SMALL_STATE(3387)] = 153188, + [SMALL_STATE(3388)] = 153213, + [SMALL_STATE(3389)] = 153240, + [SMALL_STATE(3390)] = 153265, + [SMALL_STATE(3391)] = 153290, + [SMALL_STATE(3392)] = 153315, + [SMALL_STATE(3393)] = 153340, + [SMALL_STATE(3394)] = 153365, + [SMALL_STATE(3395)] = 153390, + [SMALL_STATE(3396)] = 153415, + [SMALL_STATE(3397)] = 153440, + [SMALL_STATE(3398)] = 153467, + [SMALL_STATE(3399)] = 153492, + [SMALL_STATE(3400)] = 153517, + [SMALL_STATE(3401)] = 153542, + [SMALL_STATE(3402)] = 153569, + [SMALL_STATE(3403)] = 153594, + [SMALL_STATE(3404)] = 153619, + [SMALL_STATE(3405)] = 153644, + [SMALL_STATE(3406)] = 153669, + [SMALL_STATE(3407)] = 153694, + [SMALL_STATE(3408)] = 153719, + [SMALL_STATE(3409)] = 153744, + [SMALL_STATE(3410)] = 153769, + [SMALL_STATE(3411)] = 153794, + [SMALL_STATE(3412)] = 153819, + [SMALL_STATE(3413)] = 153844, + [SMALL_STATE(3414)] = 153869, + [SMALL_STATE(3415)] = 153894, + [SMALL_STATE(3416)] = 153921, + [SMALL_STATE(3417)] = 153946, + [SMALL_STATE(3418)] = 153971, + [SMALL_STATE(3419)] = 153996, + [SMALL_STATE(3420)] = 154021, + [SMALL_STATE(3421)] = 154048, + [SMALL_STATE(3422)] = 154073, + [SMALL_STATE(3423)] = 154100, + [SMALL_STATE(3424)] = 154125, + [SMALL_STATE(3425)] = 154150, + [SMALL_STATE(3426)] = 154175, + [SMALL_STATE(3427)] = 154200, + [SMALL_STATE(3428)] = 154225, + [SMALL_STATE(3429)] = 154250, + [SMALL_STATE(3430)] = 154275, + [SMALL_STATE(3431)] = 154300, + [SMALL_STATE(3432)] = 154325, + [SMALL_STATE(3433)] = 154350, + [SMALL_STATE(3434)] = 154375, + [SMALL_STATE(3435)] = 154400, + [SMALL_STATE(3436)] = 154425, + [SMALL_STATE(3437)] = 154450, + [SMALL_STATE(3438)] = 154475, + [SMALL_STATE(3439)] = 154500, + [SMALL_STATE(3440)] = 154525, + [SMALL_STATE(3441)] = 154550, + [SMALL_STATE(3442)] = 154575, + [SMALL_STATE(3443)] = 154600, + [SMALL_STATE(3444)] = 154625, + [SMALL_STATE(3445)] = 154650, + [SMALL_STATE(3446)] = 154675, + [SMALL_STATE(3447)] = 154700, + [SMALL_STATE(3448)] = 154725, + [SMALL_STATE(3449)] = 154750, + [SMALL_STATE(3450)] = 154775, + [SMALL_STATE(3451)] = 154800, + [SMALL_STATE(3452)] = 154825, + [SMALL_STATE(3453)] = 154850, + [SMALL_STATE(3454)] = 154875, + [SMALL_STATE(3455)] = 154900, + [SMALL_STATE(3456)] = 154925, + [SMALL_STATE(3457)] = 154950, + [SMALL_STATE(3458)] = 154975, + [SMALL_STATE(3459)] = 155000, + [SMALL_STATE(3460)] = 155025, + [SMALL_STATE(3461)] = 155050, + [SMALL_STATE(3462)] = 155075, + [SMALL_STATE(3463)] = 155100, + [SMALL_STATE(3464)] = 155125, + [SMALL_STATE(3465)] = 155150, + [SMALL_STATE(3466)] = 155175, + [SMALL_STATE(3467)] = 155200, + [SMALL_STATE(3468)] = 155225, + [SMALL_STATE(3469)] = 155250, + [SMALL_STATE(3470)] = 155275, + [SMALL_STATE(3471)] = 155300, + [SMALL_STATE(3472)] = 155325, + [SMALL_STATE(3473)] = 155350, + [SMALL_STATE(3474)] = 155370, + [SMALL_STATE(3475)] = 155392, + [SMALL_STATE(3476)] = 155416, + [SMALL_STATE(3477)] = 155440, + [SMALL_STATE(3478)] = 155460, + [SMALL_STATE(3479)] = 155480, + [SMALL_STATE(3480)] = 155500, + [SMALL_STATE(3481)] = 155524, + [SMALL_STATE(3482)] = 155548, + [SMALL_STATE(3483)] = 155568, + [SMALL_STATE(3484)] = 155600, + [SMALL_STATE(3485)] = 155624, + [SMALL_STATE(3486)] = 155648, + [SMALL_STATE(3487)] = 155668, + [SMALL_STATE(3488)] = 155688, + [SMALL_STATE(3489)] = 155712, + [SMALL_STATE(3490)] = 155732, + [SMALL_STATE(3491)] = 155752, + [SMALL_STATE(3492)] = 155772, + [SMALL_STATE(3493)] = 155796, + [SMALL_STATE(3494)] = 155816, + [SMALL_STATE(3495)] = 155836, + [SMALL_STATE(3496)] = 155856, + [SMALL_STATE(3497)] = 155880, + [SMALL_STATE(3498)] = 155900, + [SMALL_STATE(3499)] = 155920, + [SMALL_STATE(3500)] = 155940, + [SMALL_STATE(3501)] = 155960, + [SMALL_STATE(3502)] = 155984, + [SMALL_STATE(3503)] = 156004, + [SMALL_STATE(3504)] = 156028, + [SMALL_STATE(3505)] = 156048, + [SMALL_STATE(3506)] = 156072, + [SMALL_STATE(3507)] = 156097, + [SMALL_STATE(3508)] = 156116, + [SMALL_STATE(3509)] = 156141, + [SMALL_STATE(3510)] = 156172, + [SMALL_STATE(3511)] = 156197, + [SMALL_STATE(3512)] = 156216, + [SMALL_STATE(3513)] = 156241, + [SMALL_STATE(3514)] = 156272, + [SMALL_STATE(3515)] = 156291, + [SMALL_STATE(3516)] = 156310, + [SMALL_STATE(3517)] = 156335, + [SMALL_STATE(3518)] = 156354, + [SMALL_STATE(3519)] = 156373, + [SMALL_STATE(3520)] = 156398, + [SMALL_STATE(3521)] = 156417, + [SMALL_STATE(3522)] = 156448, + [SMALL_STATE(3523)] = 156473, + [SMALL_STATE(3524)] = 156492, + [SMALL_STATE(3525)] = 156517, + [SMALL_STATE(3526)] = 156542, + [SMALL_STATE(3527)] = 156561, + [SMALL_STATE(3528)] = 156579, + [SMALL_STATE(3529)] = 156605, + [SMALL_STATE(3530)] = 156623, + [SMALL_STATE(3531)] = 156641, + [SMALL_STATE(3532)] = 156659, + [SMALL_STATE(3533)] = 156677, + [SMALL_STATE(3534)] = 156693, + [SMALL_STATE(3535)] = 156711, + [SMALL_STATE(3536)] = 156729, + [SMALL_STATE(3537)] = 156747, + [SMALL_STATE(3538)] = 156765, + [SMALL_STATE(3539)] = 156783, + [SMALL_STATE(3540)] = 156801, + [SMALL_STATE(3541)] = 156819, + [SMALL_STATE(3542)] = 156837, + [SMALL_STATE(3543)] = 156852, + [SMALL_STATE(3544)] = 156879, + [SMALL_STATE(3545)] = 156902, + [SMALL_STATE(3546)] = 156917, + [SMALL_STATE(3547)] = 156933, + [SMALL_STATE(3548)] = 156949, + [SMALL_STATE(3549)] = 156965, + [SMALL_STATE(3550)] = 156989, + [SMALL_STATE(3551)] = 157005, + [SMALL_STATE(3552)] = 157021, + [SMALL_STATE(3553)] = 157037, + [SMALL_STATE(3554)] = 157053, + [SMALL_STATE(3555)] = 157069, + [SMALL_STATE(3556)] = 157093, + [SMALL_STATE(3557)] = 157109, + [SMALL_STATE(3558)] = 157125, + [SMALL_STATE(3559)] = 157141, + [SMALL_STATE(3560)] = 157157, + [SMALL_STATE(3561)] = 157181, + [SMALL_STATE(3562)] = 157197, + [SMALL_STATE(3563)] = 157221, + [SMALL_STATE(3564)] = 157237, + [SMALL_STATE(3565)] = 157261, + [SMALL_STATE(3566)] = 157277, + [SMALL_STATE(3567)] = 157293, + [SMALL_STATE(3568)] = 157309, + [SMALL_STATE(3569)] = 157325, + [SMALL_STATE(3570)] = 157349, + [SMALL_STATE(3571)] = 157371, + [SMALL_STATE(3572)] = 157393, + [SMALL_STATE(3573)] = 157409, + [SMALL_STATE(3574)] = 157431, + [SMALL_STATE(3575)] = 157452, + [SMALL_STATE(3576)] = 157467, + [SMALL_STATE(3577)] = 157482, + [SMALL_STATE(3578)] = 157497, + [SMALL_STATE(3579)] = 157518, + [SMALL_STATE(3580)] = 157539, + [SMALL_STATE(3581)] = 157560, + [SMALL_STATE(3582)] = 157581, + [SMALL_STATE(3583)] = 157602, + [SMALL_STATE(3584)] = 157617, + [SMALL_STATE(3585)] = 157632, + [SMALL_STATE(3586)] = 157653, + [SMALL_STATE(3587)] = 157668, + [SMALL_STATE(3588)] = 157689, + [SMALL_STATE(3589)] = 157710, + [SMALL_STATE(3590)] = 157731, + [SMALL_STATE(3591)] = 157746, + [SMALL_STATE(3592)] = 157761, + [SMALL_STATE(3593)] = 157776, + [SMALL_STATE(3594)] = 157797, + [SMALL_STATE(3595)] = 157818, + [SMALL_STATE(3596)] = 157839, + [SMALL_STATE(3597)] = 157858, + [SMALL_STATE(3598)] = 157873, + [SMALL_STATE(3599)] = 157894, + [SMALL_STATE(3600)] = 157915, + [SMALL_STATE(3601)] = 157936, + [SMALL_STATE(3602)] = 157951, + [SMALL_STATE(3603)] = 157966, + [SMALL_STATE(3604)] = 157987, + [SMALL_STATE(3605)] = 158002, + [SMALL_STATE(3606)] = 158017, + [SMALL_STATE(3607)] = 158032, + [SMALL_STATE(3608)] = 158053, + [SMALL_STATE(3609)] = 158068, + [SMALL_STATE(3610)] = 158089, + [SMALL_STATE(3611)] = 158104, + [SMALL_STATE(3612)] = 158119, + [SMALL_STATE(3613)] = 158134, + [SMALL_STATE(3614)] = 158149, + [SMALL_STATE(3615)] = 158164, + [SMALL_STATE(3616)] = 158179, + [SMALL_STATE(3617)] = 158200, + [SMALL_STATE(3618)] = 158221, + [SMALL_STATE(3619)] = 158236, + [SMALL_STATE(3620)] = 158257, + [SMALL_STATE(3621)] = 158278, + [SMALL_STATE(3622)] = 158299, + [SMALL_STATE(3623)] = 158320, + [SMALL_STATE(3624)] = 158341, + [SMALL_STATE(3625)] = 158356, + [SMALL_STATE(3626)] = 158371, + [SMALL_STATE(3627)] = 158392, + [SMALL_STATE(3628)] = 158407, + [SMALL_STATE(3629)] = 158427, + [SMALL_STATE(3630)] = 158447, + [SMALL_STATE(3631)] = 158467, + [SMALL_STATE(3632)] = 158487, + [SMALL_STATE(3633)] = 158503, + [SMALL_STATE(3634)] = 158523, + [SMALL_STATE(3635)] = 158543, + [SMALL_STATE(3636)] = 158563, + [SMALL_STATE(3637)] = 158583, + [SMALL_STATE(3638)] = 158603, + [SMALL_STATE(3639)] = 158621, + [SMALL_STATE(3640)] = 158641, + [SMALL_STATE(3641)] = 158661, + [SMALL_STATE(3642)] = 158681, + [SMALL_STATE(3643)] = 158701, + [SMALL_STATE(3644)] = 158721, + [SMALL_STATE(3645)] = 158741, + [SMALL_STATE(3646)] = 158761, + [SMALL_STATE(3647)] = 158781, + [SMALL_STATE(3648)] = 158803, + [SMALL_STATE(3649)] = 158823, + [SMALL_STATE(3650)] = 158843, + [SMALL_STATE(3651)] = 158863, + [SMALL_STATE(3652)] = 158877, + [SMALL_STATE(3653)] = 158897, + [SMALL_STATE(3654)] = 158917, + [SMALL_STATE(3655)] = 158934, + [SMALL_STATE(3656)] = 158949, + [SMALL_STATE(3657)] = 158964, + [SMALL_STATE(3658)] = 158981, + [SMALL_STATE(3659)] = 158996, + [SMALL_STATE(3660)] = 159013, + [SMALL_STATE(3661)] = 159030, + [SMALL_STATE(3662)] = 159047, + [SMALL_STATE(3663)] = 159064, + [SMALL_STATE(3664)] = 159081, + [SMALL_STATE(3665)] = 159096, + [SMALL_STATE(3666)] = 159111, + [SMALL_STATE(3667)] = 159126, + [SMALL_STATE(3668)] = 159143, + [SMALL_STATE(3669)] = 159158, + [SMALL_STATE(3670)] = 159173, + [SMALL_STATE(3671)] = 159190, + [SMALL_STATE(3672)] = 159209, + [SMALL_STATE(3673)] = 159224, + [SMALL_STATE(3674)] = 159241, + [SMALL_STATE(3675)] = 159260, + [SMALL_STATE(3676)] = 159273, + [SMALL_STATE(3677)] = 159286, + [SMALL_STATE(3678)] = 159303, + [SMALL_STATE(3679)] = 159322, + [SMALL_STATE(3680)] = 159335, + [SMALL_STATE(3681)] = 159348, + [SMALL_STATE(3682)] = 159367, + [SMALL_STATE(3683)] = 159384, + [SMALL_STATE(3684)] = 159399, + [SMALL_STATE(3685)] = 159416, + [SMALL_STATE(3686)] = 159433, + [SMALL_STATE(3687)] = 159448, + [SMALL_STATE(3688)] = 159463, + [SMALL_STATE(3689)] = 159480, + [SMALL_STATE(3690)] = 159497, + [SMALL_STATE(3691)] = 159512, + [SMALL_STATE(3692)] = 159527, + [SMALL_STATE(3693)] = 159542, + [SMALL_STATE(3694)] = 159559, + [SMALL_STATE(3695)] = 159576, + [SMALL_STATE(3696)] = 159591, + [SMALL_STATE(3697)] = 159606, + [SMALL_STATE(3698)] = 159621, + [SMALL_STATE(3699)] = 159638, + [SMALL_STATE(3700)] = 159653, + [SMALL_STATE(3701)] = 159672, + [SMALL_STATE(3702)] = 159689, + [SMALL_STATE(3703)] = 159704, + [SMALL_STATE(3704)] = 159723, + [SMALL_STATE(3705)] = 159738, + [SMALL_STATE(3706)] = 159755, + [SMALL_STATE(3707)] = 159772, + [SMALL_STATE(3708)] = 159789, + [SMALL_STATE(3709)] = 159806, + [SMALL_STATE(3710)] = 159821, + [SMALL_STATE(3711)] = 159838, + [SMALL_STATE(3712)] = 159855, + [SMALL_STATE(3713)] = 159872, + [SMALL_STATE(3714)] = 159889, + [SMALL_STATE(3715)] = 159906, + [SMALL_STATE(3716)] = 159925, + [SMALL_STATE(3717)] = 159940, + [SMALL_STATE(3718)] = 159955, + [SMALL_STATE(3719)] = 159972, + [SMALL_STATE(3720)] = 159989, + [SMALL_STATE(3721)] = 160005, + [SMALL_STATE(3722)] = 160021, + [SMALL_STATE(3723)] = 160035, + [SMALL_STATE(3724)] = 160049, + [SMALL_STATE(3725)] = 160063, + [SMALL_STATE(3726)] = 160079, + [SMALL_STATE(3727)] = 160093, + [SMALL_STATE(3728)] = 160109, + [SMALL_STATE(3729)] = 160123, + [SMALL_STATE(3730)] = 160139, + [SMALL_STATE(3731)] = 160153, + [SMALL_STATE(3732)] = 160167, + [SMALL_STATE(3733)] = 160183, + [SMALL_STATE(3734)] = 160193, + [SMALL_STATE(3735)] = 160203, + [SMALL_STATE(3736)] = 160215, + [SMALL_STATE(3737)] = 160225, + [SMALL_STATE(3738)] = 160235, + [SMALL_STATE(3739)] = 160245, + [SMALL_STATE(3740)] = 160255, + [SMALL_STATE(3741)] = 160265, + [SMALL_STATE(3742)] = 160275, + [SMALL_STATE(3743)] = 160285, + [SMALL_STATE(3744)] = 160299, + [SMALL_STATE(3745)] = 160309, + [SMALL_STATE(3746)] = 160325, + [SMALL_STATE(3747)] = 160337, + [SMALL_STATE(3748)] = 160347, + [SMALL_STATE(3749)] = 160363, + [SMALL_STATE(3750)] = 160373, + [SMALL_STATE(3751)] = 160383, + [SMALL_STATE(3752)] = 160393, + [SMALL_STATE(3753)] = 160403, + [SMALL_STATE(3754)] = 160413, + [SMALL_STATE(3755)] = 160423, + [SMALL_STATE(3756)] = 160433, + [SMALL_STATE(3757)] = 160443, + [SMALL_STATE(3758)] = 160457, + [SMALL_STATE(3759)] = 160467, + [SMALL_STATE(3760)] = 160477, + [SMALL_STATE(3761)] = 160487, + [SMALL_STATE(3762)] = 160497, + [SMALL_STATE(3763)] = 160507, + [SMALL_STATE(3764)] = 160517, + [SMALL_STATE(3765)] = 160527, + [SMALL_STATE(3766)] = 160537, + [SMALL_STATE(3767)] = 160553, + [SMALL_STATE(3768)] = 160563, + [SMALL_STATE(3769)] = 160573, + [SMALL_STATE(3770)] = 160583, + [SMALL_STATE(3771)] = 160599, + [SMALL_STATE(3772)] = 160609, + [SMALL_STATE(3773)] = 160621, + [SMALL_STATE(3774)] = 160631, + [SMALL_STATE(3775)] = 160647, + [SMALL_STATE(3776)] = 160657, + [SMALL_STATE(3777)] = 160667, + [SMALL_STATE(3778)] = 160677, + [SMALL_STATE(3779)] = 160691, + [SMALL_STATE(3780)] = 160701, + [SMALL_STATE(3781)] = 160717, + [SMALL_STATE(3782)] = 160727, + [SMALL_STATE(3783)] = 160737, + [SMALL_STATE(3784)] = 160747, + [SMALL_STATE(3785)] = 160757, + [SMALL_STATE(3786)] = 160767, + [SMALL_STATE(3787)] = 160777, + [SMALL_STATE(3788)] = 160787, + [SMALL_STATE(3789)] = 160797, + [SMALL_STATE(3790)] = 160807, + [SMALL_STATE(3791)] = 160817, + [SMALL_STATE(3792)] = 160830, + [SMALL_STATE(3793)] = 160843, + [SMALL_STATE(3794)] = 160856, + [SMALL_STATE(3795)] = 160869, + [SMALL_STATE(3796)] = 160882, + [SMALL_STATE(3797)] = 160893, + [SMALL_STATE(3798)] = 160904, + [SMALL_STATE(3799)] = 160917, + [SMALL_STATE(3800)] = 160930, + [SMALL_STATE(3801)] = 160941, + [SMALL_STATE(3802)] = 160952, + [SMALL_STATE(3803)] = 160965, + [SMALL_STATE(3804)] = 160978, + [SMALL_STATE(3805)] = 160991, + [SMALL_STATE(3806)] = 161004, + [SMALL_STATE(3807)] = 161017, + [SMALL_STATE(3808)] = 161030, + [SMALL_STATE(3809)] = 161043, + [SMALL_STATE(3810)] = 161054, + [SMALL_STATE(3811)] = 161067, + [SMALL_STATE(3812)] = 161080, + [SMALL_STATE(3813)] = 161093, + [SMALL_STATE(3814)] = 161106, + [SMALL_STATE(3815)] = 161117, + [SMALL_STATE(3816)] = 161130, + [SMALL_STATE(3817)] = 161143, + [SMALL_STATE(3818)] = 161156, + [SMALL_STATE(3819)] = 161169, + [SMALL_STATE(3820)] = 161182, + [SMALL_STATE(3821)] = 161195, + [SMALL_STATE(3822)] = 161206, + [SMALL_STATE(3823)] = 161219, + [SMALL_STATE(3824)] = 161232, + [SMALL_STATE(3825)] = 161245, + [SMALL_STATE(3826)] = 161258, + [SMALL_STATE(3827)] = 161269, + [SMALL_STATE(3828)] = 161278, + [SMALL_STATE(3829)] = 161289, + [SMALL_STATE(3830)] = 161302, + [SMALL_STATE(3831)] = 161313, + [SMALL_STATE(3832)] = 161326, + [SMALL_STATE(3833)] = 161339, + [SMALL_STATE(3834)] = 161352, + [SMALL_STATE(3835)] = 161363, + [SMALL_STATE(3836)] = 161374, + [SMALL_STATE(3837)] = 161387, + [SMALL_STATE(3838)] = 161400, + [SMALL_STATE(3839)] = 161409, + [SMALL_STATE(3840)] = 161422, + [SMALL_STATE(3841)] = 161433, + [SMALL_STATE(3842)] = 161446, + [SMALL_STATE(3843)] = 161459, + [SMALL_STATE(3844)] = 161472, + [SMALL_STATE(3845)] = 161483, + [SMALL_STATE(3846)] = 161496, + [SMALL_STATE(3847)] = 161509, + [SMALL_STATE(3848)] = 161522, + [SMALL_STATE(3849)] = 161535, + [SMALL_STATE(3850)] = 161548, + [SMALL_STATE(3851)] = 161559, + [SMALL_STATE(3852)] = 161572, + [SMALL_STATE(3853)] = 161585, + [SMALL_STATE(3854)] = 161598, + [SMALL_STATE(3855)] = 161611, + [SMALL_STATE(3856)] = 161622, + [SMALL_STATE(3857)] = 161635, + [SMALL_STATE(3858)] = 161646, + [SMALL_STATE(3859)] = 161659, + [SMALL_STATE(3860)] = 161672, + [SMALL_STATE(3861)] = 161685, + [SMALL_STATE(3862)] = 161698, + [SMALL_STATE(3863)] = 161711, + [SMALL_STATE(3864)] = 161722, + [SMALL_STATE(3865)] = 161735, + [SMALL_STATE(3866)] = 161748, + [SMALL_STATE(3867)] = 161761, + [SMALL_STATE(3868)] = 161774, + [SMALL_STATE(3869)] = 161787, + [SMALL_STATE(3870)] = 161800, + [SMALL_STATE(3871)] = 161811, + [SMALL_STATE(3872)] = 161822, + [SMALL_STATE(3873)] = 161833, + [SMALL_STATE(3874)] = 161846, + [SMALL_STATE(3875)] = 161859, + [SMALL_STATE(3876)] = 161872, + [SMALL_STATE(3877)] = 161883, + [SMALL_STATE(3878)] = 161894, + [SMALL_STATE(3879)] = 161905, + [SMALL_STATE(3880)] = 161916, + [SMALL_STATE(3881)] = 161929, + [SMALL_STATE(3882)] = 161940, + [SMALL_STATE(3883)] = 161953, + [SMALL_STATE(3884)] = 161966, + [SMALL_STATE(3885)] = 161979, + [SMALL_STATE(3886)] = 161992, + [SMALL_STATE(3887)] = 162005, + [SMALL_STATE(3888)] = 162018, + [SMALL_STATE(3889)] = 162031, + [SMALL_STATE(3890)] = 162044, + [SMALL_STATE(3891)] = 162057, + [SMALL_STATE(3892)] = 162068, + [SMALL_STATE(3893)] = 162081, + [SMALL_STATE(3894)] = 162092, + [SMALL_STATE(3895)] = 162103, + [SMALL_STATE(3896)] = 162116, + [SMALL_STATE(3897)] = 162129, + [SMALL_STATE(3898)] = 162142, + [SMALL_STATE(3899)] = 162155, + [SMALL_STATE(3900)] = 162168, + [SMALL_STATE(3901)] = 162181, + [SMALL_STATE(3902)] = 162194, + [SMALL_STATE(3903)] = 162207, + [SMALL_STATE(3904)] = 162220, + [SMALL_STATE(3905)] = 162231, + [SMALL_STATE(3906)] = 162244, + [SMALL_STATE(3907)] = 162255, + [SMALL_STATE(3908)] = 162268, + [SMALL_STATE(3909)] = 162281, + [SMALL_STATE(3910)] = 162294, + [SMALL_STATE(3911)] = 162307, + [SMALL_STATE(3912)] = 162320, + [SMALL_STATE(3913)] = 162333, + [SMALL_STATE(3914)] = 162346, + [SMALL_STATE(3915)] = 162359, + [SMALL_STATE(3916)] = 162372, + [SMALL_STATE(3917)] = 162383, + [SMALL_STATE(3918)] = 162396, + [SMALL_STATE(3919)] = 162409, + [SMALL_STATE(3920)] = 162422, + [SMALL_STATE(3921)] = 162435, + [SMALL_STATE(3922)] = 162448, + [SMALL_STATE(3923)] = 162459, + [SMALL_STATE(3924)] = 162472, + [SMALL_STATE(3925)] = 162485, + [SMALL_STATE(3926)] = 162495, + [SMALL_STATE(3927)] = 162505, + [SMALL_STATE(3928)] = 162515, + [SMALL_STATE(3929)] = 162525, + [SMALL_STATE(3930)] = 162535, + [SMALL_STATE(3931)] = 162545, + [SMALL_STATE(3932)] = 162555, + [SMALL_STATE(3933)] = 162563, + [SMALL_STATE(3934)] = 162571, + [SMALL_STATE(3935)] = 162581, + [SMALL_STATE(3936)] = 162591, + [SMALL_STATE(3937)] = 162599, + [SMALL_STATE(3938)] = 162609, + [SMALL_STATE(3939)] = 162619, + [SMALL_STATE(3940)] = 162627, + [SMALL_STATE(3941)] = 162637, + [SMALL_STATE(3942)] = 162647, + [SMALL_STATE(3943)] = 162655, + [SMALL_STATE(3944)] = 162663, + [SMALL_STATE(3945)] = 162673, + [SMALL_STATE(3946)] = 162681, + [SMALL_STATE(3947)] = 162691, + [SMALL_STATE(3948)] = 162699, + [SMALL_STATE(3949)] = 162709, + [SMALL_STATE(3950)] = 162717, + [SMALL_STATE(3951)] = 162725, + [SMALL_STATE(3952)] = 162733, + [SMALL_STATE(3953)] = 162743, + [SMALL_STATE(3954)] = 162753, + [SMALL_STATE(3955)] = 162763, + [SMALL_STATE(3956)] = 162773, + [SMALL_STATE(3957)] = 162783, + [SMALL_STATE(3958)] = 162793, + [SMALL_STATE(3959)] = 162803, + [SMALL_STATE(3960)] = 162811, + [SMALL_STATE(3961)] = 162821, + [SMALL_STATE(3962)] = 162831, + [SMALL_STATE(3963)] = 162841, + [SMALL_STATE(3964)] = 162849, + [SMALL_STATE(3965)] = 162857, + [SMALL_STATE(3966)] = 162867, + [SMALL_STATE(3967)] = 162875, + [SMALL_STATE(3968)] = 162883, + [SMALL_STATE(3969)] = 162891, + [SMALL_STATE(3970)] = 162901, + [SMALL_STATE(3971)] = 162911, + [SMALL_STATE(3972)] = 162919, + [SMALL_STATE(3973)] = 162927, + [SMALL_STATE(3974)] = 162937, + [SMALL_STATE(3975)] = 162945, + [SMALL_STATE(3976)] = 162955, + [SMALL_STATE(3977)] = 162965, + [SMALL_STATE(3978)] = 162975, + [SMALL_STATE(3979)] = 162983, + [SMALL_STATE(3980)] = 162993, + [SMALL_STATE(3981)] = 163001, + [SMALL_STATE(3982)] = 163011, + [SMALL_STATE(3983)] = 163019, + [SMALL_STATE(3984)] = 163029, + [SMALL_STATE(3985)] = 163039, + [SMALL_STATE(3986)] = 163047, + [SMALL_STATE(3987)] = 163057, + [SMALL_STATE(3988)] = 163067, + [SMALL_STATE(3989)] = 163077, + [SMALL_STATE(3990)] = 163085, + [SMALL_STATE(3991)] = 163095, + [SMALL_STATE(3992)] = 163105, + [SMALL_STATE(3993)] = 163115, + [SMALL_STATE(3994)] = 163123, + [SMALL_STATE(3995)] = 163131, + [SMALL_STATE(3996)] = 163139, + [SMALL_STATE(3997)] = 163149, + [SMALL_STATE(3998)] = 163159, + [SMALL_STATE(3999)] = 163167, + [SMALL_STATE(4000)] = 163177, + [SMALL_STATE(4001)] = 163187, + [SMALL_STATE(4002)] = 163195, + [SMALL_STATE(4003)] = 163205, + [SMALL_STATE(4004)] = 163213, + [SMALL_STATE(4005)] = 163223, + [SMALL_STATE(4006)] = 163233, + [SMALL_STATE(4007)] = 163241, + [SMALL_STATE(4008)] = 163249, + [SMALL_STATE(4009)] = 163257, + [SMALL_STATE(4010)] = 163267, + [SMALL_STATE(4011)] = 163277, + [SMALL_STATE(4012)] = 163285, + [SMALL_STATE(4013)] = 163293, + [SMALL_STATE(4014)] = 163303, + [SMALL_STATE(4015)] = 163313, + [SMALL_STATE(4016)] = 163323, + [SMALL_STATE(4017)] = 163331, + [SMALL_STATE(4018)] = 163341, + [SMALL_STATE(4019)] = 163349, + [SMALL_STATE(4020)] = 163359, + [SMALL_STATE(4021)] = 163369, + [SMALL_STATE(4022)] = 163379, + [SMALL_STATE(4023)] = 163387, + [SMALL_STATE(4024)] = 163397, + [SMALL_STATE(4025)] = 163405, + [SMALL_STATE(4026)] = 163413, + [SMALL_STATE(4027)] = 163420, + [SMALL_STATE(4028)] = 163427, + [SMALL_STATE(4029)] = 163434, + [SMALL_STATE(4030)] = 163441, + [SMALL_STATE(4031)] = 163448, + [SMALL_STATE(4032)] = 163455, + [SMALL_STATE(4033)] = 163462, + [SMALL_STATE(4034)] = 163469, + [SMALL_STATE(4035)] = 163476, + [SMALL_STATE(4036)] = 163483, + [SMALL_STATE(4037)] = 163490, + [SMALL_STATE(4038)] = 163497, + [SMALL_STATE(4039)] = 163504, + [SMALL_STATE(4040)] = 163511, + [SMALL_STATE(4041)] = 163518, + [SMALL_STATE(4042)] = 163525, + [SMALL_STATE(4043)] = 163532, + [SMALL_STATE(4044)] = 163539, + [SMALL_STATE(4045)] = 163546, + [SMALL_STATE(4046)] = 163553, + [SMALL_STATE(4047)] = 163560, + [SMALL_STATE(4048)] = 163567, + [SMALL_STATE(4049)] = 163574, + [SMALL_STATE(4050)] = 163581, + [SMALL_STATE(4051)] = 163588, + [SMALL_STATE(4052)] = 163595, + [SMALL_STATE(4053)] = 163602, + [SMALL_STATE(4054)] = 163609, + [SMALL_STATE(4055)] = 163616, + [SMALL_STATE(4056)] = 163623, + [SMALL_STATE(4057)] = 163630, + [SMALL_STATE(4058)] = 163637, + [SMALL_STATE(4059)] = 163644, + [SMALL_STATE(4060)] = 163651, + [SMALL_STATE(4061)] = 163658, + [SMALL_STATE(4062)] = 163665, + [SMALL_STATE(4063)] = 163672, + [SMALL_STATE(4064)] = 163679, + [SMALL_STATE(4065)] = 163686, + [SMALL_STATE(4066)] = 163693, + [SMALL_STATE(4067)] = 163700, + [SMALL_STATE(4068)] = 163707, + [SMALL_STATE(4069)] = 163714, + [SMALL_STATE(4070)] = 163721, + [SMALL_STATE(4071)] = 163728, + [SMALL_STATE(4072)] = 163735, + [SMALL_STATE(4073)] = 163742, + [SMALL_STATE(4074)] = 163749, + [SMALL_STATE(4075)] = 163756, + [SMALL_STATE(4076)] = 163763, + [SMALL_STATE(4077)] = 163770, + [SMALL_STATE(4078)] = 163777, + [SMALL_STATE(4079)] = 163784, + [SMALL_STATE(4080)] = 163791, + [SMALL_STATE(4081)] = 163798, + [SMALL_STATE(4082)] = 163805, + [SMALL_STATE(4083)] = 163812, + [SMALL_STATE(4084)] = 163819, + [SMALL_STATE(4085)] = 163826, + [SMALL_STATE(4086)] = 163833, + [SMALL_STATE(4087)] = 163840, + [SMALL_STATE(4088)] = 163847, + [SMALL_STATE(4089)] = 163854, + [SMALL_STATE(4090)] = 163861, + [SMALL_STATE(4091)] = 163868, + [SMALL_STATE(4092)] = 163875, + [SMALL_STATE(4093)] = 163882, + [SMALL_STATE(4094)] = 163889, + [SMALL_STATE(4095)] = 163896, + [SMALL_STATE(4096)] = 163903, + [SMALL_STATE(4097)] = 163910, + [SMALL_STATE(4098)] = 163917, + [SMALL_STATE(4099)] = 163924, + [SMALL_STATE(4100)] = 163931, + [SMALL_STATE(4101)] = 163938, + [SMALL_STATE(4102)] = 163945, + [SMALL_STATE(4103)] = 163952, + [SMALL_STATE(4104)] = 163959, + [SMALL_STATE(4105)] = 163966, + [SMALL_STATE(4106)] = 163973, + [SMALL_STATE(4107)] = 163980, + [SMALL_STATE(4108)] = 163987, + [SMALL_STATE(4109)] = 163994, + [SMALL_STATE(4110)] = 164001, + [SMALL_STATE(4111)] = 164008, + [SMALL_STATE(4112)] = 164015, + [SMALL_STATE(4113)] = 164022, + [SMALL_STATE(4114)] = 164029, + [SMALL_STATE(4115)] = 164036, + [SMALL_STATE(4116)] = 164043, + [SMALL_STATE(4117)] = 164050, + [SMALL_STATE(4118)] = 164057, + [SMALL_STATE(4119)] = 164064, + [SMALL_STATE(4120)] = 164071, + [SMALL_STATE(4121)] = 164078, + [SMALL_STATE(4122)] = 164085, + [SMALL_STATE(4123)] = 164092, + [SMALL_STATE(4124)] = 164099, + [SMALL_STATE(4125)] = 164106, + [SMALL_STATE(4126)] = 164113, + [SMALL_STATE(4127)] = 164120, + [SMALL_STATE(4128)] = 164127, + [SMALL_STATE(4129)] = 164134, + [SMALL_STATE(4130)] = 164141, + [SMALL_STATE(4131)] = 164148, + [SMALL_STATE(4132)] = 164155, + [SMALL_STATE(4133)] = 164162, + [SMALL_STATE(4134)] = 164169, + [SMALL_STATE(4135)] = 164176, + [SMALL_STATE(4136)] = 164183, + [SMALL_STATE(4137)] = 164190, + [SMALL_STATE(4138)] = 164197, + [SMALL_STATE(4139)] = 164204, + [SMALL_STATE(4140)] = 164211, + [SMALL_STATE(4141)] = 164218, + [SMALL_STATE(4142)] = 164225, + [SMALL_STATE(4143)] = 164232, + [SMALL_STATE(4144)] = 164239, + [SMALL_STATE(4145)] = 164246, + [SMALL_STATE(4146)] = 164253, + [SMALL_STATE(4147)] = 164260, + [SMALL_STATE(4148)] = 164267, + [SMALL_STATE(4149)] = 164274, + [SMALL_STATE(4150)] = 164281, + [SMALL_STATE(4151)] = 164288, + [SMALL_STATE(4152)] = 164295, + [SMALL_STATE(4153)] = 164302, + [SMALL_STATE(4154)] = 164309, + [SMALL_STATE(4155)] = 164316, + [SMALL_STATE(4156)] = 164323, + [SMALL_STATE(4157)] = 164330, + [SMALL_STATE(4158)] = 164337, + [SMALL_STATE(4159)] = 164344, + [SMALL_STATE(4160)] = 164351, + [SMALL_STATE(4161)] = 164358, + [SMALL_STATE(4162)] = 164365, + [SMALL_STATE(4163)] = 164372, + [SMALL_STATE(4164)] = 164379, + [SMALL_STATE(4165)] = 164386, + [SMALL_STATE(4166)] = 164393, + [SMALL_STATE(4167)] = 164400, + [SMALL_STATE(4168)] = 164407, + [SMALL_STATE(4169)] = 164414, + [SMALL_STATE(4170)] = 164421, + [SMALL_STATE(4171)] = 164428, + [SMALL_STATE(4172)] = 164435, + [SMALL_STATE(4173)] = 164442, + [SMALL_STATE(4174)] = 164449, + [SMALL_STATE(4175)] = 164456, + [SMALL_STATE(4176)] = 164463, + [SMALL_STATE(4177)] = 164470, + [SMALL_STATE(4178)] = 164477, + [SMALL_STATE(4179)] = 164484, + [SMALL_STATE(4180)] = 164491, + [SMALL_STATE(4181)] = 164498, + [SMALL_STATE(4182)] = 164505, + [SMALL_STATE(4183)] = 164512, + [SMALL_STATE(4184)] = 164519, + [SMALL_STATE(4185)] = 164526, + [SMALL_STATE(4186)] = 164533, + [SMALL_STATE(4187)] = 164540, + [SMALL_STATE(4188)] = 164547, + [SMALL_STATE(4189)] = 164554, + [SMALL_STATE(4190)] = 164561, + [SMALL_STATE(4191)] = 164568, + [SMALL_STATE(4192)] = 164575, + [SMALL_STATE(4193)] = 164582, + [SMALL_STATE(4194)] = 164589, + [SMALL_STATE(4195)] = 164596, + [SMALL_STATE(4196)] = 164603, + [SMALL_STATE(4197)] = 164610, + [SMALL_STATE(4198)] = 164617, + [SMALL_STATE(4199)] = 164624, + [SMALL_STATE(4200)] = 164631, + [SMALL_STATE(4201)] = 164638, + [SMALL_STATE(4202)] = 164645, + [SMALL_STATE(4203)] = 164652, + [SMALL_STATE(4204)] = 164659, + [SMALL_STATE(4205)] = 164666, + [SMALL_STATE(4206)] = 164673, + [SMALL_STATE(4207)] = 164680, + [SMALL_STATE(4208)] = 164687, + [SMALL_STATE(4209)] = 164694, + [SMALL_STATE(4210)] = 164701, + [SMALL_STATE(4211)] = 164708, + [SMALL_STATE(4212)] = 164715, + [SMALL_STATE(4213)] = 164722, + [SMALL_STATE(4214)] = 164729, + [SMALL_STATE(4215)] = 164736, + [SMALL_STATE(4216)] = 164743, + [SMALL_STATE(4217)] = 164750, + [SMALL_STATE(4218)] = 164757, + [SMALL_STATE(4219)] = 164764, + [SMALL_STATE(4220)] = 164771, + [SMALL_STATE(4221)] = 164778, + [SMALL_STATE(4222)] = 164785, + [SMALL_STATE(4223)] = 164792, + [SMALL_STATE(4224)] = 164799, + [SMALL_STATE(4225)] = 164806, + [SMALL_STATE(4226)] = 164813, + [SMALL_STATE(4227)] = 164820, + [SMALL_STATE(4228)] = 164827, + [SMALL_STATE(4229)] = 164834, + [SMALL_STATE(4230)] = 164841, + [SMALL_STATE(4231)] = 164848, + [SMALL_STATE(4232)] = 164855, + [SMALL_STATE(4233)] = 164862, + [SMALL_STATE(4234)] = 164869, + [SMALL_STATE(4235)] = 164876, + [SMALL_STATE(4236)] = 164883, + [SMALL_STATE(4237)] = 164890, + [SMALL_STATE(4238)] = 164897, + [SMALL_STATE(4239)] = 164904, + [SMALL_STATE(4240)] = 164911, + [SMALL_STATE(4241)] = 164918, + [SMALL_STATE(4242)] = 164925, + [SMALL_STATE(4243)] = 164932, + [SMALL_STATE(4244)] = 164939, + [SMALL_STATE(4245)] = 164946, + [SMALL_STATE(4246)] = 164953, + [SMALL_STATE(4247)] = 164960, + [SMALL_STATE(4248)] = 164967, + [SMALL_STATE(4249)] = 164974, + [SMALL_STATE(4250)] = 164981, + [SMALL_STATE(4251)] = 164988, + [SMALL_STATE(4252)] = 164995, + [SMALL_STATE(4253)] = 165002, + [SMALL_STATE(4254)] = 165009, + [SMALL_STATE(4255)] = 165016, + [SMALL_STATE(4256)] = 165023, + [SMALL_STATE(4257)] = 165030, + [SMALL_STATE(4258)] = 165037, + [SMALL_STATE(4259)] = 165044, + [SMALL_STATE(4260)] = 165051, + [SMALL_STATE(4261)] = 165058, + [SMALL_STATE(4262)] = 165065, + [SMALL_STATE(4263)] = 165072, + [SMALL_STATE(4264)] = 165079, + [SMALL_STATE(4265)] = 165086, + [SMALL_STATE(4266)] = 165093, + [SMALL_STATE(4267)] = 165100, + [SMALL_STATE(4268)] = 165107, + [SMALL_STATE(4269)] = 165114, + [SMALL_STATE(4270)] = 165121, + [SMALL_STATE(4271)] = 165128, + [SMALL_STATE(4272)] = 165135, + [SMALL_STATE(4273)] = 165142, + [SMALL_STATE(4274)] = 165149, + [SMALL_STATE(4275)] = 165156, + [SMALL_STATE(4276)] = 165163, + [SMALL_STATE(4277)] = 165170, + [SMALL_STATE(4278)] = 165177, + [SMALL_STATE(4279)] = 165184, + [SMALL_STATE(4280)] = 165191, + [SMALL_STATE(4281)] = 165198, + [SMALL_STATE(4282)] = 165205, + [SMALL_STATE(4283)] = 165212, + [SMALL_STATE(4284)] = 165219, + [SMALL_STATE(4285)] = 165226, + [SMALL_STATE(4286)] = 165233, + [SMALL_STATE(4287)] = 165240, + [SMALL_STATE(4288)] = 165247, + [SMALL_STATE(4289)] = 165254, + [SMALL_STATE(4290)] = 165261, + [SMALL_STATE(4291)] = 165268, + [SMALL_STATE(4292)] = 165275, + [SMALL_STATE(4293)] = 165282, + [SMALL_STATE(4294)] = 165289, + [SMALL_STATE(4295)] = 165296, + [SMALL_STATE(4296)] = 165303, + [SMALL_STATE(4297)] = 165310, + [SMALL_STATE(4298)] = 165317, + [SMALL_STATE(4299)] = 165324, + [SMALL_STATE(4300)] = 165331, + [SMALL_STATE(4301)] = 165338, + [SMALL_STATE(4302)] = 165345, + [SMALL_STATE(4303)] = 165352, + [SMALL_STATE(4304)] = 165359, + [SMALL_STATE(4305)] = 165366, + [SMALL_STATE(4306)] = 165373, + [SMALL_STATE(4307)] = 165380, + [SMALL_STATE(4308)] = 165387, + [SMALL_STATE(4309)] = 165394, + [SMALL_STATE(4310)] = 165401, + [SMALL_STATE(4311)] = 165408, + [SMALL_STATE(4312)] = 165415, + [SMALL_STATE(4313)] = 165422, + [SMALL_STATE(4314)] = 165429, + [SMALL_STATE(4315)] = 165436, + [SMALL_STATE(4316)] = 165443, + [SMALL_STATE(4317)] = 165450, + [SMALL_STATE(4318)] = 165457, + [SMALL_STATE(4319)] = 165464, + [SMALL_STATE(4320)] = 165471, + [SMALL_STATE(4321)] = 165478, + [SMALL_STATE(4322)] = 165485, + [SMALL_STATE(4323)] = 165492, + [SMALL_STATE(4324)] = 165499, + [SMALL_STATE(4325)] = 165506, + [SMALL_STATE(4326)] = 165513, + [SMALL_STATE(4327)] = 165520, + [SMALL_STATE(4328)] = 165527, + [SMALL_STATE(4329)] = 165534, + [SMALL_STATE(4330)] = 165541, + [SMALL_STATE(4331)] = 165548, + [SMALL_STATE(4332)] = 165555, + [SMALL_STATE(4333)] = 165562, + [SMALL_STATE(4334)] = 165569, + [SMALL_STATE(4335)] = 165576, + [SMALL_STATE(4336)] = 165583, + [SMALL_STATE(4337)] = 165590, + [SMALL_STATE(4338)] = 165597, + [SMALL_STATE(4339)] = 165604, + [SMALL_STATE(4340)] = 165611, + [SMALL_STATE(4341)] = 165618, + [SMALL_STATE(4342)] = 165625, + [SMALL_STATE(4343)] = 165632, + [SMALL_STATE(4344)] = 165639, + [SMALL_STATE(4345)] = 165646, + [SMALL_STATE(4346)] = 165653, + [SMALL_STATE(4347)] = 165660, + [SMALL_STATE(4348)] = 165667, + [SMALL_STATE(4349)] = 165674, + [SMALL_STATE(4350)] = 165681, + [SMALL_STATE(4351)] = 165688, + [SMALL_STATE(4352)] = 165695, + [SMALL_STATE(4353)] = 165702, + [SMALL_STATE(4354)] = 165709, + [SMALL_STATE(4355)] = 165716, + [SMALL_STATE(4356)] = 165723, + [SMALL_STATE(4357)] = 165730, + [SMALL_STATE(4358)] = 165737, + [SMALL_STATE(4359)] = 165744, + [SMALL_STATE(4360)] = 165751, + [SMALL_STATE(4361)] = 165758, + [SMALL_STATE(4362)] = 165765, + [SMALL_STATE(4363)] = 165772, + [SMALL_STATE(4364)] = 165779, + [SMALL_STATE(4365)] = 165786, + [SMALL_STATE(4366)] = 165793, + [SMALL_STATE(4367)] = 165800, + [SMALL_STATE(4368)] = 165807, + [SMALL_STATE(4369)] = 165814, + [SMALL_STATE(4370)] = 165821, + [SMALL_STATE(4371)] = 165828, + [SMALL_STATE(4372)] = 165835, + [SMALL_STATE(4373)] = 165842, + [SMALL_STATE(4374)] = 165849, + [SMALL_STATE(4375)] = 165856, + [SMALL_STATE(4376)] = 165863, + [SMALL_STATE(4377)] = 165870, + [SMALL_STATE(4378)] = 165877, + [SMALL_STATE(4379)] = 165884, + [SMALL_STATE(4380)] = 165891, + [SMALL_STATE(4381)] = 165898, + [SMALL_STATE(4382)] = 165905, + [SMALL_STATE(4383)] = 165912, + [SMALL_STATE(4384)] = 165919, + [SMALL_STATE(4385)] = 165926, + [SMALL_STATE(4386)] = 165933, + [SMALL_STATE(4387)] = 165940, + [SMALL_STATE(4388)] = 165947, + [SMALL_STATE(4389)] = 165954, + [SMALL_STATE(4390)] = 165961, + [SMALL_STATE(4391)] = 165968, + [SMALL_STATE(4392)] = 165975, + [SMALL_STATE(4393)] = 165982, + [SMALL_STATE(4394)] = 165989, + [SMALL_STATE(4395)] = 165996, + [SMALL_STATE(4396)] = 166003, + [SMALL_STATE(4397)] = 166010, + [SMALL_STATE(4398)] = 166017, + [SMALL_STATE(4399)] = 166024, + [SMALL_STATE(4400)] = 166031, + [SMALL_STATE(4401)] = 166038, + [SMALL_STATE(4402)] = 166045, + [SMALL_STATE(4403)] = 166052, + [SMALL_STATE(4404)] = 166059, + [SMALL_STATE(4405)] = 166066, + [SMALL_STATE(4406)] = 166073, + [SMALL_STATE(4407)] = 166080, + [SMALL_STATE(4408)] = 166087, + [SMALL_STATE(4409)] = 166094, + [SMALL_STATE(4410)] = 166101, + [SMALL_STATE(4411)] = 166108, + [SMALL_STATE(4412)] = 166115, + [SMALL_STATE(4413)] = 166122, + [SMALL_STATE(4414)] = 166129, + [SMALL_STATE(4415)] = 166136, + [SMALL_STATE(4416)] = 166143, + [SMALL_STATE(4417)] = 166150, + [SMALL_STATE(4418)] = 166157, + [SMALL_STATE(4419)] = 166164, + [SMALL_STATE(4420)] = 166171, + [SMALL_STATE(4421)] = 166178, + [SMALL_STATE(4422)] = 166185, + [SMALL_STATE(4423)] = 166192, + [SMALL_STATE(4424)] = 166199, + [SMALL_STATE(4425)] = 166206, + [SMALL_STATE(4426)] = 166213, + [SMALL_STATE(4427)] = 166220, + [SMALL_STATE(4428)] = 166227, + [SMALL_STATE(4429)] = 166234, + [SMALL_STATE(4430)] = 166241, + [SMALL_STATE(4431)] = 166248, + [SMALL_STATE(4432)] = 166255, + [SMALL_STATE(4433)] = 166262, + [SMALL_STATE(4434)] = 166269, + [SMALL_STATE(4435)] = 166276, + [SMALL_STATE(4436)] = 166283, + [SMALL_STATE(4437)] = 166290, + [SMALL_STATE(4438)] = 166297, + [SMALL_STATE(4439)] = 166304, + [SMALL_STATE(4440)] = 166311, + [SMALL_STATE(4441)] = 166318, + [SMALL_STATE(4442)] = 166325, + [SMALL_STATE(4443)] = 166332, + [SMALL_STATE(4444)] = 166339, + [SMALL_STATE(4445)] = 166346, + [SMALL_STATE(4446)] = 166353, + [SMALL_STATE(4447)] = 166360, + [SMALL_STATE(4448)] = 166367, + [SMALL_STATE(4449)] = 166374, + [SMALL_STATE(4450)] = 166381, + [SMALL_STATE(4451)] = 166388, + [SMALL_STATE(4452)] = 166395, + [SMALL_STATE(4453)] = 166402, + [SMALL_STATE(4454)] = 166409, + [SMALL_STATE(4455)] = 166416, + [SMALL_STATE(4456)] = 166423, + [SMALL_STATE(4457)] = 166430, + [SMALL_STATE(4458)] = 166437, + [SMALL_STATE(4459)] = 166444, + [SMALL_STATE(4460)] = 166451, + [SMALL_STATE(4461)] = 166458, + [SMALL_STATE(4462)] = 166465, + [SMALL_STATE(4463)] = 166472, + [SMALL_STATE(4464)] = 166479, + [SMALL_STATE(4465)] = 166486, + [SMALL_STATE(4466)] = 166493, + [SMALL_STATE(4467)] = 166500, + [SMALL_STATE(4468)] = 166507, + [SMALL_STATE(4469)] = 166514, + [SMALL_STATE(4470)] = 166521, + [SMALL_STATE(4471)] = 166528, + [SMALL_STATE(4472)] = 166535, + [SMALL_STATE(4473)] = 166542, + [SMALL_STATE(4474)] = 166549, + [SMALL_STATE(4475)] = 166556, + [SMALL_STATE(4476)] = 166563, + [SMALL_STATE(4477)] = 166570, + [SMALL_STATE(4478)] = 166577, + [SMALL_STATE(4479)] = 166584, + [SMALL_STATE(4480)] = 166591, + [SMALL_STATE(4481)] = 166598, + [SMALL_STATE(4482)] = 166605, + [SMALL_STATE(4483)] = 166612, + [SMALL_STATE(4484)] = 166619, + [SMALL_STATE(4485)] = 166626, + [SMALL_STATE(4486)] = 166633, + [SMALL_STATE(4487)] = 166640, + [SMALL_STATE(4488)] = 166647, + [SMALL_STATE(4489)] = 166654, + [SMALL_STATE(4490)] = 166661, + [SMALL_STATE(4491)] = 166668, + [SMALL_STATE(4492)] = 166675, + [SMALL_STATE(4493)] = 166682, + [SMALL_STATE(4494)] = 166689, + [SMALL_STATE(4495)] = 166696, + [SMALL_STATE(4496)] = 166703, + [SMALL_STATE(4497)] = 166710, + [SMALL_STATE(4498)] = 166717, + [SMALL_STATE(4499)] = 166724, + [SMALL_STATE(4500)] = 166731, + [SMALL_STATE(4501)] = 166738, + [SMALL_STATE(4502)] = 166745, + [SMALL_STATE(4503)] = 166752, + [SMALL_STATE(4504)] = 166759, + [SMALL_STATE(4505)] = 166766, + [SMALL_STATE(4506)] = 166773, + [SMALL_STATE(4507)] = 166780, + [SMALL_STATE(4508)] = 166787, + [SMALL_STATE(4509)] = 166794, + [SMALL_STATE(4510)] = 166801, + [SMALL_STATE(4511)] = 166808, + [SMALL_STATE(4512)] = 166815, + [SMALL_STATE(4513)] = 166822, + [SMALL_STATE(4514)] = 166829, + [SMALL_STATE(4515)] = 166836, + [SMALL_STATE(4516)] = 166843, + [SMALL_STATE(4517)] = 166850, + [SMALL_STATE(4518)] = 166857, + [SMALL_STATE(4519)] = 166864, + [SMALL_STATE(4520)] = 166871, + [SMALL_STATE(4521)] = 166878, + [SMALL_STATE(4522)] = 166885, + [SMALL_STATE(4523)] = 166892, + [SMALL_STATE(4524)] = 166899, + [SMALL_STATE(4525)] = 166906, + [SMALL_STATE(4526)] = 166913, + [SMALL_STATE(4527)] = 166920, + [SMALL_STATE(4528)] = 166927, + [SMALL_STATE(4529)] = 166934, + [SMALL_STATE(4530)] = 166941, + [SMALL_STATE(4531)] = 166948, + [SMALL_STATE(4532)] = 166955, + [SMALL_STATE(4533)] = 166962, + [SMALL_STATE(4534)] = 166969, + [SMALL_STATE(4535)] = 166976, + [SMALL_STATE(4536)] = 166983, + [SMALL_STATE(4537)] = 166990, + [SMALL_STATE(4538)] = 166997, + [SMALL_STATE(4539)] = 167004, + [SMALL_STATE(4540)] = 167011, + [SMALL_STATE(4541)] = 167018, + [SMALL_STATE(4542)] = 167025, + [SMALL_STATE(4543)] = 167032, + [SMALL_STATE(4544)] = 167039, + [SMALL_STATE(4545)] = 167046, + [SMALL_STATE(4546)] = 167053, + [SMALL_STATE(4547)] = 167060, + [SMALL_STATE(4548)] = 167067, + [SMALL_STATE(4549)] = 167074, + [SMALL_STATE(4550)] = 167081, + [SMALL_STATE(4551)] = 167088, + [SMALL_STATE(4552)] = 167095, + [SMALL_STATE(4553)] = 167102, + [SMALL_STATE(4554)] = 167109, + [SMALL_STATE(4555)] = 167116, + [SMALL_STATE(4556)] = 167123, + [SMALL_STATE(4557)] = 167130, + [SMALL_STATE(4558)] = 167137, + [SMALL_STATE(4559)] = 167144, + [SMALL_STATE(4560)] = 167151, + [SMALL_STATE(4561)] = 167158, + [SMALL_STATE(4562)] = 167165, + [SMALL_STATE(4563)] = 167172, + [SMALL_STATE(4564)] = 167179, + [SMALL_STATE(4565)] = 167186, + [SMALL_STATE(4566)] = 167193, + [SMALL_STATE(4567)] = 167200, + [SMALL_STATE(4568)] = 167207, + [SMALL_STATE(4569)] = 167214, + [SMALL_STATE(4570)] = 167221, + [SMALL_STATE(4571)] = 167228, + [SMALL_STATE(4572)] = 167235, + [SMALL_STATE(4573)] = 167242, + [SMALL_STATE(4574)] = 167249, + [SMALL_STATE(4575)] = 167256, + [SMALL_STATE(4576)] = 167263, + [SMALL_STATE(4577)] = 167270, + [SMALL_STATE(4578)] = 167277, + [SMALL_STATE(4579)] = 167284, + [SMALL_STATE(4580)] = 167291, + [SMALL_STATE(4581)] = 167298, + [SMALL_STATE(4582)] = 167305, + [SMALL_STATE(4583)] = 167312, + [SMALL_STATE(4584)] = 167319, + [SMALL_STATE(4585)] = 167326, + [SMALL_STATE(4586)] = 167333, + [SMALL_STATE(4587)] = 167340, + [SMALL_STATE(4588)] = 167347, + [SMALL_STATE(4589)] = 167354, + [SMALL_STATE(4590)] = 167361, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -196709,4704 +198070,4725 @@ 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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), + [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 75), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 71), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 57), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 71), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 41), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 56), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 95), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 42), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(741), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4011), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4563), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2651), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2136), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2136), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(221), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(282), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(281), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2115), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4561), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(258), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(524), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(16), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1218), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(447), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(511), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3409), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(911), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3271), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(808), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(850), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3921), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2514), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(205), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(199), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(198), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(192), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(820), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3558), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3851), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4508), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 92), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 96), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 75), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 56), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 41), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(726), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4015), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4583), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2225), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2134), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2134), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(182), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(285), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(284), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2108), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4581), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(238), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(521), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(14), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1114), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(458), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(513), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3469), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(918), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3253), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(809), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(811), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3973), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(2516), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(211), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(216), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(217), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(63), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3552), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3830), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(802), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4528), + [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 42), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 99), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 57), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(741), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4011), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4563), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2651), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2136), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2136), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(221), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(282), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(281), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2115), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4561), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(258), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(524), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(16), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1218), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(447), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(511), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3409), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(911), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3271), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(808), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(850), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3921), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2514), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(205), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(199), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(198), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(192), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(820), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3558), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3851), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4508), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2257), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2257), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 26), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 26), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2226), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2226), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, .production_id = 31), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, .production_id = 31), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 9), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 9), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 27), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 27), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(374), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(382), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2267), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(408), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(604), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2685), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3338), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(605), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3231), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(720), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3931), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2547), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(127), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(132), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(137), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(195), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(414), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(613), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(726), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4015), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4583), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2225), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2134), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2134), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(182), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(285), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(284), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2108), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4581), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(238), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(521), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(14), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1114), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(458), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(513), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3469), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(918), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3253), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(809), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(811), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3973), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2516), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(211), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(216), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(217), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(63), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3552), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3830), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(802), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4528), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2278), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2278), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2227), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2227), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 27), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 27), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 9), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 9), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, .production_id = 31), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, .production_id = 31), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 22), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 22), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(385), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(392), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2379), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(415), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(660), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2305), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3832), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4550), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 35), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 35), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(589), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2658), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2070), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3407), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(571), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3298), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(630), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3984), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2586), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(212), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(213), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(214), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(171), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(584), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), - [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(904), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4546), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 15), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 15), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 16), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 16), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(715), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2638), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3431), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(672), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3288), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(822), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4009), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2531), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(267), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(264), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(263), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(150), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(424), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(723), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3858), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4556), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(762), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2743), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3384), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(801), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3292), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(928), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3942), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2461), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(87), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(88), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(90), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(72), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(426), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(763), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3818), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4528), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(797), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2708), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3396), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(769), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3232), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(941), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3988), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2478), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(193), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(208), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(225), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(241), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(428), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(759), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3909), - [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4523), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(648), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2630), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2073), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3392), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(609), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3261), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(673), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3918), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2540), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(227), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(228), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(237), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(229), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(615), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(939), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4553), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(709), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2616), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2077), - [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3439), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(742), - [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3320), - [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(813), - [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3998), - [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2455), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(223), - [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(216), - [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(211), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(209), - [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(708), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1236), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4569), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(684), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2615), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3352), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(689), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3238), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(840), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3923), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2543), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(141), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(154), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(178), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(210), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(446), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(668), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4551), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(991), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(981), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(454), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1018), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3796), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(751), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2651), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2052), - [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3409), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(680), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3271), - [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(850), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3921), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2514), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(205), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(199), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(198), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(192), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(666), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1224), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4508), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(804), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2639), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3418), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(870), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3244), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1035), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3983), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2530), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(262), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(261), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(260), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(138), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(462), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(827), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4557), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(798), - [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2087), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(911), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(860), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1037), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2719), - [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3421), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(942), - [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3260), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1120), - [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3960), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2472), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(269), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(266), - [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(265), - [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(256), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(491), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1039), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4524), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1031), - [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2722), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3349), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1000), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3316), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1169), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3963), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2473), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(92), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(93), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(94), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(80), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(492), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1030), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4529), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1328), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1310), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(506), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1325), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3819), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1222), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1185), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(513), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1221), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1282), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2069), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1263), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1283), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1435), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2709), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3442), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1484), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3259), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1435), - [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1603), - [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4005), - [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2503), - [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(110), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), - [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(112), - [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), - [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(534), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1434), - [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3780), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4533), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3369), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(664), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3262), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(706), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3970), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2608), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(147), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(151), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(153), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(138), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(422), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3870), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(657), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4570), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(587), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2306), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2088), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3458), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(604), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3312), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(637), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3984), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2555), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(202), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(203), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(220), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(109), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(596), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(876), + [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4566), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 16), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 16), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(675), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2338), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3466), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(689), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3317), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(902), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3935), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2637), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(271), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(266), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(265), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(78), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(426), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3881), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(683), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4576), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 15), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 15), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 35), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 35), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(635), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2325), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2066), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3386), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(650), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3334), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(758), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4019), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2628), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(191), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(199), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(222), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(196), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(647), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(987), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4573), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(774), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2267), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3465), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(793), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3263), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1049), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4023), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2585), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(207), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(206), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(200), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(177), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(433), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3840), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(773), + [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4548), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(771), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2254), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3441), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(783), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3333), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(938), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4004), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2645), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(246), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(247), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(248), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(245), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(436), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3922), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(772), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4543), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1034), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1026), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(450), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3828), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1035), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(759), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2225), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2092), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3469), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(748), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3253), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(811), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3973), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2516), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(211), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(216), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(217), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(63), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(752), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1087), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4528), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(681), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2312), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3344), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(695), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3292), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(845), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3986), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2612), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(168), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(171), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(173), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(149), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(453), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(682), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4571), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(700), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2399), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2091), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3346), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(721), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3305), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(885), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3955), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2624), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(210), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(209), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(208), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(205), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(701), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1127), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4589), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(890), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2340), + [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3444), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(765), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3307), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1036), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3927), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2638), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(263), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(262), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(261), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(126), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(478), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(888), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4577), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(820), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2102), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(918), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(816), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1060), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2268), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3416), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1006), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3323), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1108), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3926), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2609), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(188), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(187), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(175), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(490), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(919), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4549), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(964), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2255), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3433), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(939), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3282), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1111), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4017), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2639), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(250), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(252), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(255), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(249), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(498), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(963), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4544), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1177), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1195), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(501), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1176), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1326), + [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1310), + [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(519), + [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3797), + [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1328), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1422), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2276), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3448), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1485), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3265), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1422), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1537), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3992), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2518), + [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(212), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(136), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(185), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(197), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(529), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3821), + [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1421), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4553), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1283), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2069), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1261), + [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1282), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3840), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1317), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2701), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2048), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3395), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1289), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3297), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1317), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1483), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3935), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2539), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(122), - [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(125), - [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(131), - [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(109), - [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1318), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1692), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4535), - [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1401), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1464), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(552), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1405), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3871), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3811), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3856), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2242), - [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2242), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1575), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2704), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3424), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1554), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3278), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1575), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1671), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3965), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2529), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(117), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(105), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(583), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1576), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4534), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 14), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 14), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 13), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 13), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 33), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 33), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 32), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 32), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3786), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3785), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2274), - [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2274), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 21), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 21), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 20), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 20), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2261), - [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2261), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2253), - [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2253), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(881), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2183), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2183), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 7), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 7), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 8), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 8), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 18), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 18), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2265), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2265), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2290), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2290), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 19), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 19), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2301), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2301), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2321), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2321), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(985), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2254), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2254), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2284), - [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2284), - [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(957), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2293), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2293), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1106), - [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3825), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2222), - [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2222), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2333), - [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2333), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2178), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2178), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1104), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1223), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1237), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_pipeline, 2), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1235), - [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2206), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2206), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3784), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1281), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1258), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1248), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1244), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2292), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1331), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1365), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1320), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1344), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1607), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2251), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2061), - [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(925), - [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1175), - [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3590), - [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1571), - [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(342), - [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1125), - [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1942), - [3436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(369), - [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1209), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1609), - [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1660), - [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3756), - [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1495), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3526), - [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2590), - [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1144), - [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2927), - [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2032), - [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2628), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(971), - [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1404), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3715), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(772), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1628), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3083), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4428), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2369), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1985), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3071), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1386), - [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3475), - [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(611), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3148), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3720), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3571), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(782), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(705), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(875), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2208), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2520), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(712), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2426), - [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1041), - [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(781), - [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1007), - [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(388), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(855), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 23), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 23), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1579), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 39), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 39), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1549), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3871), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1294), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2280), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2072), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3418), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1331), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3303), + [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1294), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1464), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(3996), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(2533), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(73), + [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(74), + [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(75), + [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(123), + [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1306), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(1672), + [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 34), SHIFT_REPEAT(4555), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3894), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1472), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1462), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(565), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1474), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3877), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3835), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1559), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2277), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3455), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1577), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3284), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1559), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1678), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3931), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2514), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(195), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(64), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(65), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(169), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(584), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1558), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4554), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 14), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 14), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 33), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 33), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 32), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 32), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 13), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 13), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2416), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2416), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3826), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3809), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2329), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2329), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2224), + [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2224), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 21), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 21), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 20), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 20), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 7), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 7), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 8), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 8), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2412), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2412), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2187), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2187), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2293), + [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2293), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2382), + [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2382), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 18), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 18), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 19), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 19), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(770), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2197), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2197), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1051), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2348), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2348), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2310), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2310), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(974), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2199), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2199), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2260), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2260), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2326), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2326), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3855), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2333), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2333), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1136), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1133), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1181), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1078), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1130), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2285), + [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2285), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2196), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2196), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(3814), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1272), + [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1276), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1264), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1269), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1325), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1301), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2354), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1312), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1300), + [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2485), + [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2954), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1664), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(411), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1680), + [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2100), + [3436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1184), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3112), + [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2319), + [3445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2669), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1453), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4453), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2438), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1307), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3782), + [3463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2021), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1480), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(923), + [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3111), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1063), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1711), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3602), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2190), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(896), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1109), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1598), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1032), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(784), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1048), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(722), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2565), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(869), + [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(673), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1174), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1536), + [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(362), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2040), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(913), + [3540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3601), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(346), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3734), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3482), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(875), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3537), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3751), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1582), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3138), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1961), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1882), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2743), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(619), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1116), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 39), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 39), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1560), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1609), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2187), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2173), - [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2236), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1522), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 36), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 36), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 37), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 37), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 37), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 37), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2205), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2203), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 36), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 36), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1693), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1680), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1635), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 39), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 39), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 68), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 23), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 23), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 68), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 68), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 10), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 10), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1803), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 10), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 10), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 36), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 36), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 37), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 37), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1754), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1843), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1852), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2444), - [4180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2694), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3334), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2593), - [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3290), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2633), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3916), - [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2442), - [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(62), - [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(151), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(152), - [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(133), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2490), - [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4538), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 10), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, .production_id = 23), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, .production_id = 23), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 29), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, .production_id = 10), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, .production_id = 10), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 6), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 6), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3632), - [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2682), - [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2062), - [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3372), - [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3627), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3270), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3632), - [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3743), - [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3940), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2585), - [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(160), - [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(161), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(162), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(145), - [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3633), - [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3891), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4540), - [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 23), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 23), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 11), - [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), - [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2163), - [4905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2163), - [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(3534), - [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(3831), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2876), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2696), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [5002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3350), - [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2884), - [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3312), - [5011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2876), - [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2900), - [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3951), - [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2544), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(142), - [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(143), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(144), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119), - [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2869), - [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4537), - [5041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2322), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 46), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2343), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [6459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2278), - [6462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2278), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3840), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [6490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [6492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4416), - [6495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2101), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [6500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2154), - [6503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3502), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 12), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 12), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [6520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2223), - [6523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2223), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 26), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 26), - [6538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3871), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2463), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2104), - [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2092), - [6564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3505), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [6569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 50), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 50), - [6573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 51), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 51), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2270), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2270), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2336), - [6594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2336), - [6597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2576), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2613), - [6635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 82), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 80), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 65), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 63), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 106), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 61), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 40), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 54), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [6751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2101), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3552), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), - [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3856), - [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4358), - [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2090), - [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2111), - [6779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3512), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2099), - [6791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2162), - [6794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3497), - [6797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3811), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3785), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2744), - [6842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2248), - [6845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2248), - [6848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2155), - [6851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2160), - [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3499), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [7025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 25), - [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 25), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [7051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 49), - [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 49), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [7059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3786), - [7062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2132), - [7065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2100), - [7068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3493), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [7115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2104), - [7118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3554), - [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 58), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 58), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [7139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 42), - [7141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 42), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [7145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [7147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 76), - [7149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 76), - [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 41), - [7153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 41), - [7155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 41), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 41), - [7159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 41), - [7161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 41), - [7163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 40), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 40), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [7169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 67), - [7171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 67), - [7173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 40), - [7175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 40), - [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 40), - [7179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 40), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 59), - [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 59), - [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 60), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 60), - [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 42), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 42), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), - [7201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), - [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [7205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4), - [7209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4), - [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 41), - [7213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 41), - [7215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 42), - [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 42), - [7219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [7225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 41), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 41), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [7233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [7235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 40), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 40), - [7239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 53), - [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 53), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [7247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2090), - [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3542), - [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 78), - [7255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 78), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), - [7259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 102), - [7267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 102), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 50), - [7273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 50), - [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), - [7277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 38), - [7281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 38), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), - [7285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), - [7287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2155), - [7290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3546), - [7293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 42), - [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 42), - [7297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 42), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 42), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 50), - [7303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 50), - [7305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 43), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 43), - [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2871), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [7316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2099), - [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3543), - [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), - [7324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2132), - [7347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3544), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [7354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2308), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 90), - [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 90), - [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 41), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 69), - [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 69), - [7373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 56), - [7375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 126), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 126), - [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 95), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 109), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 109), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 71), - [7389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 88), - [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 88), - [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 71), - [7395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2158), - [7398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2142), - [7401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3510), - [7404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 86), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 86), - [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 56), - [7410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 124), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 124), - [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 92), - [7416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 111), - [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 111), - [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 41), - [7422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 93), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 93), - [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 42), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 113), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 113), - [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 92), - [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 119), - [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 119), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 75), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 73), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 73), - [7454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 57), - [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 115), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 115), - [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 42), - [7462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 98), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 98), - [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 75), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [7474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4257), - [7477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2128), - [7480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2128), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4257), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2145), - [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3511), - [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3825), - [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 117), - [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 117), - [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 95), - [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 96), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 96), - [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 57), - [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 118), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 118), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 125), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 125), - [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 97), - [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 97), - [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 120), - [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 120), - [7537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 91), - [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 91), - [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 99), - [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 99), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [7547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3784), - [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 127), - [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 127), - [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 116), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 116), - [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 89), - [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 89), - [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 114), - [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 114), - [7566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2219), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 94), - [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 94), - [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4353), - [7578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2164), - [7581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2164), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4353), - [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2110), - [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3509), - [7593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 110), - [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 110), - [7597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 112), - [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 112), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 87), - [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 87), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 74), - [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 74), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3062), - [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 70), - [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 70), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2231), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [7633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3129), - [7636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2158), - [7639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3551), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [7660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_expression, 1, .production_id = 10), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3130), - [7673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2128), - [7676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2128), - [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3545), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2247), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3167), - [7702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2164), - [7705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2164), - [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3549), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 24), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 24), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2231), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2315), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2218), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1533), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1744), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 36), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 36), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 37), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 37), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2381), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 37), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 37), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2207), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 36), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 36), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1632), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1626), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 10), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 10), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 24), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 24), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 68), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 68), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 10), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 10), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1810), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 39), + [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 39), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1796), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 36), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 36), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 37), + [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 37), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 4), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 68), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1877), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1874), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 10), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2519), + [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2289), + [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3341), + [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2605), + [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3304), + [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2692), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4014), + [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2659), + [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(96), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(97), + [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(98), + [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(184), + [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2522), + [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4558), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 6), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 6), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 29), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 24), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 24), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3649), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2294), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2076), + [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3378), + [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3632), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3285), + [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3649), + [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3771), + [4743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3981), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2642), + [4749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(106), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(107), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(108), + [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(77), + [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3629), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3817), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4560), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 11), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), + [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), + [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, .production_id = 10), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, .production_id = 10), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, .production_id = 24), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, .production_id = 24), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), + [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2171), + [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(2171), + [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(3561), + [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 17), SHIFT_REPEAT(3850), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2238), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2890), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2287), + [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3358), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2888), + [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3332), + [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2890), + [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2926), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3934), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2632), + [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(87), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(88), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(89), + [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(214), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2889), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4557), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 46), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2298), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2261), + [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2261), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [6685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4436), + [6688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2163), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [6693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2121), + [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3516), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 12), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 12), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2393), + [6718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2393), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), + [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3871), + [6728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [6740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2236), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2236), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 22), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 22), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3894), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [6765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2176), + [6768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2103), + [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3508), + [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2651), + [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 51), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 51), + [6781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 50), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 50), + [6785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [6789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2610), + [6792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2344), + [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2344), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 82), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [6864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), + [6866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 80), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 61), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 65), + [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 63), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 40), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 54), + [6894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3809), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4392), + [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2169), + [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2112), + [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3519), + [6911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2757), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2747), + [6957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2300), + [6960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2300), + [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 106), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3877), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2137), + [6977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2146), + [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3510), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2163), + [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), + [7008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3548), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [7023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2177), + [7026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2143), + [7029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3524), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3835), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [7113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2176), + [7116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3547), + [7119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 49), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 49), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [7155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 26), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 26), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [7161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2172), + [7164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2126), + [7167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3506), + [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3826), + [7173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 58), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 58), + [7177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 40), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 40), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), + [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), + [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 76), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 76), + [7193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 42), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 42), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [7201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 41), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 41), + [7205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 40), + [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 40), + [7209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 67), + [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 67), + [7213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), + [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), + [7217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 41), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 41), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 102), + [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 102), + [7225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 60), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 60), + [7229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 42), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 42), + [7233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2893), + [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 51), + [7242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 51), + [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 42), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 42), + [7248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 59), + [7250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 59), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [7256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [7258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2177), + [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3567), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 42), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 42), + [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 41), + [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 41), + [7276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), + [7280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 41), + [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 41), + [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 38), + [7286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 38), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4), + [7290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4), + [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [7294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [7302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2137), + [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3550), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2169), + [7313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3568), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 40), + [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 40), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 41), + [7322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 41), + [7324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [7330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 78), + [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 78), + [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 42), + [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 42), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 43), + [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 43), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 53), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 53), + [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 25), + [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 25), + [7350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 51), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 51), + [7354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), + [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), + [7358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), + [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2279), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [7391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2172), + [7394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3546), + [7397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 92), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 92), + [7401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 75), + [7403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4277), + [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2142), + [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2142), + [7412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4277), + [7415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2160), + [7418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3512), + [7421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 124), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 124), + [7425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 96), + [7427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 126), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 126), + [7431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 99), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 86), + [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 86), + [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 56), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 88), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 88), + [7449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 71), + [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 90), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 90), + [7455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 57), + [7457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 109), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 109), + [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 71), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 69), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 69), + [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 56), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 94), + [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 94), + [7481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 41), + [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 97), + [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 97), + [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 42), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 111), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 111), + [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 75), + [7497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3855), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 113), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 113), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 41), + [7506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 115), + [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 115), + [7510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 96), + [7512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2167), + [7515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2110), + [7518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3525), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 119), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 119), + [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 99), + [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 117), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 117), + [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 42), + [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 73), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 73), + [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 57), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 112), + [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 112), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 89), + [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 89), + [7553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 74), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 74), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 110), + [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 110), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 114), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 114), + [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 116), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 116), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3116), + [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 118), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 118), + [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 120), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 120), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [7584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4373), + [7587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2155), + [7590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2155), + [7593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(4373), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2174), + [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3522), + [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 70), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 70), + [7606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 93), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 93), + [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 98), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 98), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 95), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 95), + [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2389), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [7641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 91), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 91), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 125), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 125), + [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 87), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 87), + [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 127), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 127), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2402), + [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(3814), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [7671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2167), + [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3554), + [7677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3144), + [7680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3143), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [7695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_expression, 1, .production_id = 10), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2142), + [7710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2142), + [7713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3558), + [7716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2400), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3167), + [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2155), + [7735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2155), + [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3557), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [8125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2735), - [8128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3479), - [8131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [8133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3516), - [8136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2467), - [8139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(243), - [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(238), - [8145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(236), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [8244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2235), - [8247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2235), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [8264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2137), - [8267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3548), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3494), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 46), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [8383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3508), - [8386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2600), - [8389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(246), - [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(247), - [8395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(248), - [8398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3507), - [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [8443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [8453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 46), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [8523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2341), - [8526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2341), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [8561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3622), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 46), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [8662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 28), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [8670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 27), - [8672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 30), - [8674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3739), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 77), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2185), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [8700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2250), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 6), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 42), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 41), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 48), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 47), - [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [8733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), - [8735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2635), - [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [8756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(280), - [8759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 52), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 52), - [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 95), - [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3820), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2), - [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 56), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, .production_id = 10), - [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 10), - [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 57), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3791), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [8799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), SHIFT_REPEAT(3514), - [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), - [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 71), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 41), - [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [8824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, .production_id = 22), - [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, .production_id = 22), - [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 42), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 75), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 92), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 121), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 107), - [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 62), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 105), - [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 104), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 103), - [8932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2669), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 128), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 64), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 66), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2747), - [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 55), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 72), - [9016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 72), SHIFT_REPEAT(2053), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 123), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 85), - [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 84), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 83), - [9089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 122), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 81), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 79), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 108), - [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(2716), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 10), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 10), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, .production_id = 10), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, .production_id = 45), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, .production_id = 10), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 44), - [9398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 10), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [9446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 46), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 100), - [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 101), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9910] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [7917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2257), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3474), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [7925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(3539), + [7928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2618), + [7931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(257), + [7934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(258), + [7937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(264), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [8252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2339), + [8255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2339), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [8300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(2151), + [8303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3572), + [8306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3520), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 46), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [8429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3517), + [8432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2596), + [8435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(103), + [8438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(111), + [8441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(122), + [8444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(3521), + [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [8481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [8489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 46), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [8577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2394), + [8580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2394), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [8595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3651), + [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [8696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 27), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 28), + [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 30), + [8712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 30), SHIFT_REPEAT(3790), + [8715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2366), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 6), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 48), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 47), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [8756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2417), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [8765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), + [8767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2720), + [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), + [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [8774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(286), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 46), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 77), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 42), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 41), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 71), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 99), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 56), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 57), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [8825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), SHIFT_REPEAT(3528), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 75), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 41), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 42), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3916), + [8863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 52), + [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 52), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [8873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, .production_id = 10), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 96), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, .production_id = 23), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, .production_id = 23), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [8899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3838), + [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 10), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 66), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 72), + [8932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 72), SHIFT_REPEAT(2083), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [8941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2755), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [8974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 123), + [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 122), + [8978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 121), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [9004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 79), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 81), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 83), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 84), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 85), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 128), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 64), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 62), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [9090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(2368), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 108), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 107), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 105), + [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 104), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 103), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(2744), + [9166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 55), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 10), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 10), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, .production_id = 10), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 46), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 100), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 101), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, .production_id = 45), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, .production_id = 10), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 44), + [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex, 2, .production_id = 10), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9958] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), }; enum ts_external_scanner_symbol_identifiers { @@ -201419,21 +202801,22 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__empty_value = 6, ts_external_token__concat = 7, ts_external_token_variable_name = 8, - ts_external_token_regex = 9, - ts_external_token__regex_no_slash = 10, - ts_external_token__regex_no_space = 11, - ts_external_token_extglob_pattern = 12, - ts_external_token__bare_dollar = 13, - ts_external_token__brace_start = 14, - ts_external_token__immediate_double_hash = 15, - ts_external_token__external_expansion_sym_hash = 16, - ts_external_token__external_expansion_sym_bang = 17, - ts_external_token__external_expansion_sym_equal = 18, - ts_external_token_RBRACE = 19, - ts_external_token_RBRACK = 20, - ts_external_token_LT_LT = 21, - ts_external_token_LT_LT_DASH = 22, - ts_external_token_heredoc_redirect_token1 = 23, + ts_external_token_test_operator = 9, + ts_external_token_regex = 10, + ts_external_token__regex_no_slash = 11, + ts_external_token__regex_no_space = 12, + ts_external_token_extglob_pattern = 13, + ts_external_token__bare_dollar = 14, + ts_external_token__brace_start = 15, + ts_external_token__immediate_double_hash = 16, + ts_external_token__external_expansion_sym_hash = 17, + ts_external_token__external_expansion_sym_bang = 18, + ts_external_token__external_expansion_sym_equal = 19, + ts_external_token_RBRACE = 20, + ts_external_token_RBRACK = 21, + ts_external_token_LT_LT = 22, + ts_external_token_LT_LT_DASH = 23, + ts_external_token_heredoc_redirect_token1 = 24, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -201446,6 +202829,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__empty_value] = sym__empty_value, [ts_external_token__concat] = sym__concat, [ts_external_token_variable_name] = sym_variable_name, + [ts_external_token_test_operator] = sym_test_operator, [ts_external_token_regex] = sym_regex, [ts_external_token__regex_no_slash] = sym__regex_no_slash, [ts_external_token__regex_no_space] = sym__regex_no_space, @@ -201463,7 +202847,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = aux_sym_heredoc_redirect_token1, }; -static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[77][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token_simple_heredoc_body] = true, @@ -201474,6 +202858,7 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__empty_value] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token_regex] = true, [ts_external_token__regex_no_slash] = true, [ts_external_token__regex_no_space] = true, @@ -201492,11 +202877,13 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [2] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, [3] = { [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, @@ -201506,12 +202893,14 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [4] = { [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, }, [5] = { [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, @@ -201520,17 +202909,20 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { }, [6] = { [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, }, [7] = { [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, }, [8] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, @@ -201539,6 +202931,7 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { }, [9] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, @@ -201548,6 +202941,7 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [10] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, @@ -201555,6 +202949,7 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { }, [11] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, @@ -201563,160 +202958,180 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [12] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [13] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [14] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_test_operator] = true, [ts_external_token_LT_LT] = true, }, [15] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [16] = { - [ts_external_token_LT_LT] = true, - }, - [17] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, + [17] = { + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, [18] = { + [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [19] = { [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, }, - [19] = { - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, [20] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [21] = { + [ts_external_token_test_operator] = true, [ts_external_token__regex_no_space] = true, [ts_external_token__brace_start] = true, }, [22] = { + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, [23] = { - [ts_external_token__concat] = true, - [ts_external_token_LT_LT] = true, - }, - [24] = { [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, }, + [24] = { + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, [25] = { + [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, + }, + [26] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [26] = { + [27] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [27] = { - [ts_external_token_extglob_pattern] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_heredoc_redirect_token1] = true, - }, [28] = { + [ts_external_token_LT_LT] = true, + }, + [29] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [29] = { + [30] = { + [ts_external_token__concat] = true, + [ts_external_token_LT_LT] = true, + }, + [31] = { [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, }, - [30] = { + [32] = { [ts_external_token_file_descriptor] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [31] = { + [33] = { + [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, }, - [32] = { + [34] = { + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [33] = { + [35] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, + [36] = { [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, }, - [34] = { - [ts_external_token_LT_LT] = true, - [ts_external_token_heredoc_redirect_token1] = true, - }, - [35] = { + [37] = { [ts_external_token__empty_value] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, - [36] = { + [38] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, - [ts_external_token__brace_start] = true, - }, - [37] = { - [ts_external_token__immediate_double_hash] = true, - [ts_external_token_RBRACE] = true, - }, - [38] = { - [ts_external_token_regex] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, [39] = { - [ts_external_token__brace_start] = true, + [ts_external_token__immediate_double_hash] = true, [ts_external_token_RBRACE] = true, }, [40] = { @@ -201726,27 +203141,41 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [41] = { - [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_test_operator] = true, + [ts_external_token_regex] = true, + [ts_external_token__brace_start] = true, }, [42] = { + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, + [ts_external_token_RBRACE] = true, }, [43] = { [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, }, [44] = { - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, }, [45] = { - [ts_external_token__immediate_double_hash] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [46] = { + [ts_external_token__immediate_double_hash] = true, + }, + [47] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [48] = { + [ts_external_token_variable_name] = true, + }, + [49] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -201754,7 +203183,14 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [47] = { + [50] = { + [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, + }, + [51] = { [ts_external_token__concat] = true, [ts_external_token__immediate_double_hash] = true, [ts_external_token__external_expansion_sym_hash] = true, @@ -201762,125 +203198,117 @@ static const bool ts_external_scanner_states[75][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [48] = { - [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, - }, - [49] = { + [52] = { [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, }, - [50] = { + [53] = { [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [51] = { - [ts_external_token_variable_name] = true, - }, - [52] = { + [54] = { [ts_external_token_file_descriptor] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [53] = { + [55] = { [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, }, - [54] = { + [56] = { [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, }, - [55] = { + [57] = { [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, }, - [56] = { + [58] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [57] = { + [59] = { [ts_external_token_variable_name] = true, [ts_external_token_RBRACE] = true, }, - [58] = { + [60] = { [ts_external_token_RBRACE] = true, }, - [59] = { + [61] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [60] = { + [62] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [61] = { + [63] = { [ts_external_token__heredoc_body_middle] = true, [ts_external_token_heredoc_end] = true, }, - [62] = { + [64] = { [ts_external_token__concat] = true, }, - [63] = { + [65] = { [ts_external_token_RBRACE] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [64] = { + [66] = { [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, - [65] = { + [67] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, }, - [66] = { + [68] = { [ts_external_token_regex] = true, }, - [67] = { + [69] = { + [ts_external_token_simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + }, + [70] = { [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, }, - [68] = { - [ts_external_token_simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - }, - [69] = { + [71] = { [ts_external_token__concat] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [70] = { + [72] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, - [71] = { + [73] = { [ts_external_token_heredoc_end] = true, }, - [72] = { + [74] = { [ts_external_token_RBRACK] = true, }, - [73] = { + [75] = { [ts_external_token_heredoc_start] = true, }, - [74] = { + [76] = { [ts_external_token__regex_no_slash] = true, }, };